diff --git a/corpus/statements.txt b/corpus/statements.txt index 39d8858..075938c 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -20,9 +20,9 @@ int main() { (primitive_type) (function_declarator (identifier) (parameter_list)) (compound_statement - (if_statement (identifier) + (if_statement (parenthesized_expression (identifier)) (expression_statement (number_literal))) - (if_statement (logical_expression (identifier)) + (if_statement (parenthesized_expression (logical_expression (identifier))) (compound_statement (expression_statement (number_literal))) (compound_statement @@ -81,7 +81,7 @@ int main() { (primitive_type) (function_declarator (identifier) (parameter_list)) (compound_statement - (while_statement (identifier) + (while_statement (parenthesized_expression (identifier)) (expression_statement (call_expression (identifier) (argument_list (string_literal)))))))) @@ -108,7 +108,7 @@ recur: (expression_statement (assignment_expression (identifier) (call_expression (field_expression (identifier) (field_identifier)) (argument_list))))) - (if_statement (identifier) (goto_statement (statement_identifier)))))) + (if_statement (parenthesized_expression (identifier)) (goto_statement (statement_identifier)))))) ============================================ Comments with asterisks diff --git a/grammar.js b/grammar.js index 27b471b..a590cf3 100644 --- a/grammar.js +++ b/grammar.js @@ -88,7 +88,7 @@ module.exports = grammar({ preproc_def: $ => seq( preprocessor('define'), $.identifier, - optional(seq(/[ \t]+/, $.preproc_arg)), + optional($.preproc_arg), '\n' ), @@ -101,12 +101,12 @@ module.exports = grammar({ ), preproc_params: $ => seq( - '(', commaSep(choice($.identifier, '...')), ')' + token.immediate('('), commaSep(choice($.identifier, '...')), ')' ), preproc_call: $ => seq( $.preproc_directive, - optional(seq(/[ \t]+/, $.preproc_arg)), + optional($.preproc_arg), '\n' ), @@ -416,7 +416,7 @@ module.exports = grammar({ if_statement: $ => prec.right(seq( 'if', - '(', $._expression, ')', + $.parenthesized_expression, $._statement, optional(seq( 'else', @@ -426,7 +426,7 @@ module.exports = grammar({ switch_statement: $ => seq( 'switch', - '(', $._expression, ')', + $.parenthesized_expression, $._statement ), @@ -445,7 +445,7 @@ module.exports = grammar({ while_statement: $ => seq( 'while', - '(', $._expression, ')', + $.parenthesized_expression, $._statement ), @@ -453,7 +453,7 @@ module.exports = grammar({ 'do', $._statement, 'while', - '(', $._expression, ')' + $.parenthesized_expression ), for_statement: $ => seq( diff --git a/package.json b/package.json index e62eac0..9bf8638 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "nan": "^2.10.0" }, "devDependencies": { - "tree-sitter-cli": "^0.13.1" + "tree-sitter-cli": "^0.13.4" }, "scripts": { "build": "tree-sitter generate && node-gyp build", diff --git a/src/grammar.json b/src/grammar.json index 1c59281..650628e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -160,17 +160,8 @@ "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]+" - }, - { - "type": "SYMBOL", - "name": "preproc_arg" - } - ] + "type": "SYMBOL", + "name": "preproc_arg" }, { "type": "BLANK" @@ -225,8 +216,11 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "(" + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "(" + } }, { "type": "CHOICE", @@ -296,17 +290,8 @@ "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[ \\t]+" - }, - { - "type": "SYMBOL", - "name": "preproc_arg" - } - ] + "type": "SYMBOL", + "name": "preproc_arg" }, { "type": "BLANK" @@ -2531,17 +2516,9 @@ "type": "STRING", "value": "if" }, - { - "type": "STRING", - "value": "(" - }, { "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": ")" + "name": "parenthesized_expression" }, { "type": "SYMBOL", @@ -2578,17 +2555,9 @@ "type": "STRING", "value": "switch" }, - { - "type": "STRING", - "value": "(" - }, { "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": ")" + "name": "parenthesized_expression" }, { "type": "SYMBOL", @@ -2651,17 +2620,9 @@ "type": "STRING", "value": "while" }, - { - "type": "STRING", - "value": "(" - }, { "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": ")" + "name": "parenthesized_expression" }, { "type": "SYMBOL", @@ -2684,17 +2645,9 @@ "type": "STRING", "value": "while" }, - { - "type": "STRING", - "value": "(" - }, { "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": ")" + "name": "parenthesized_expression" } ] }, diff --git a/src/parser.c b/src/parser.c index 9b27af7..6037033 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 9 -#define STATE_COUNT 1449 +#define STATE_COUNT 1365 #define SYMBOL_COUNT 214 #define ALIAS_COUNT 18 #define TOKEN_COUNT 101 @@ -16,25 +16,25 @@ enum { aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH = 1, aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH = 2, - aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_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_SEMI = 17, - anon_sym_typedef = 18, - anon_sym_extern = 19, - anon_sym_LBRACE = 20, - anon_sym_RBRACE = 21, + 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_typedef = 17, + anon_sym_extern = 18, + anon_sym_LBRACE = 19, + anon_sym_RBRACE = 20, + anon_sym_LPAREN2 = 21, anon_sym_STAR = 22, anon_sym_LBRACK = 23, anon_sym_RBRACK = 24, @@ -251,7 +251,6 @@ static const char *ts_symbol_names[] = { [ts_builtin_sym_end] = "END", [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = "/#[ ]*include/", [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = "/#[ ]*define/", - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = "/[ \\t]+/", [anon_sym_LF] = "\n", [anon_sym_LPAREN] = "(", [anon_sym_DOT_DOT_DOT] = "...", @@ -270,6 +269,7 @@ static const char *ts_symbol_names[] = { [anon_sym_extern] = "extern", [anon_sym_LBRACE] = "{", [anon_sym_RBRACE] = "}", + [anon_sym_LPAREN2] = "(", [anon_sym_STAR] = "*", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", @@ -495,10 +495,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = { - .visible = false, - .named = false, - }, [anon_sym_LF] = { .visible = true, .named = false, @@ -571,6 +567,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LPAREN2] = { + .visible = true, + .named = false, + }, [anon_sym_STAR] = { .visible = true, .named = false, @@ -1644,12 +1644,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(0); + SKIP(113); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); case 1: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -2398,240 +2398,325 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 113: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '!') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '#') + ADVANCE(5); + if (lookahead == '%') + ADVANCE(38); + if (lookahead == '&') + ADVANCE(40); + if (lookahead == '\'') + ADVANCE(43); + if (lookahead == '(') + ADVANCE(114); + if (lookahead == ')') + ADVANCE(45); + if (lookahead == '*') + ADVANCE(46); + if (lookahead == '+') + ADVANCE(48); + if (lookahead == ',') + ADVANCE(51); + if (lookahead == '-') + ADVANCE(52); + if (lookahead == '.') + ADVANCE(56); + 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(88); + if (lookahead == ']') + ADVANCE(104); + if (lookahead == '^') + ADVANCE(105); + if (lookahead == '{') + ADVANCE(107); + if (lookahead == '|') + ADVANCE(108); + if (lookahead == '}') + ADVANCE(111); + if (lookahead == '~') + ADVANCE(112); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(113); + if (('1' <= lookahead && lookahead <= '9')) + ADVANCE(73); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(115); + END_STATE(); + case 114: + ACCEPT_TOKEN(anon_sym_LPAREN2); + END_STATE(); + case 115: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 114: + case 116: if (lookahead == 0) ADVANCE(1); if (lookahead == '#') - ADVANCE(115); + ADVANCE(117); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(114); + SKIP(116); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 115: + case 117: if (lookahead == 'd') ADVANCE(6); if (lookahead == 'i') ADVANCE(23); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(115); + ADVANCE(117); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(12); END_STATE(); - case 116: + case 118: if (lookahead == '*') ADVANCE(60); if (lookahead == '/') ADVANCE(63); END_STATE(); - case 117: + case 119: if (lookahead == '\"') ADVANCE(4); if (lookahead == '/') - ADVANCE(116); - if (lookahead == '<') ADVANCE(118); + if (lookahead == '<') + ADVANCE(120); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(117); + SKIP(119); END_STATE(); - case 118: + case 120: if (lookahead == '>') - ADVANCE(119); + ADVANCE(121); if (lookahead == '\\') - ADVANCE(120); + ADVANCE(122); if (lookahead != 0 && lookahead != '\n') - ADVANCE(118); + ADVANCE(120); END_STATE(); - case 119: + case 121: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 120: + case 122: if (lookahead == '>') - ADVANCE(121); + ADVANCE(123); if (lookahead == '\\') - ADVANCE(120); + ADVANCE(122); if (lookahead != 0 && lookahead != '\n') - ADVANCE(118); + ADVANCE(120); END_STATE(); - case 121: + case 123: ACCEPT_TOKEN(sym_system_lib_string); if (lookahead == '>') - ADVANCE(119); + ADVANCE(121); if (lookahead == '\\') - ADVANCE(120); + ADVANCE(122); if (lookahead != 0 && lookahead != '\n') - ADVANCE(118); + ADVANCE(120); END_STATE(); - case 122: + case 124: if (lookahead == '\n') - SKIP(122); + SKIP(124); if (lookahead == '/') - ADVANCE(123); + ADVANCE(125); if (lookahead == '\\') - ADVANCE(128); + ADVANCE(130); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(130); + ADVANCE(132); if (lookahead != 0) - ADVANCE(129); + ADVANCE(131); END_STATE(); - case 123: + case 125: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '*') - ADVANCE(124); + ADVANCE(126); if (lookahead == '/') - ADVANCE(127); + ADVANCE(129); if (lookahead == '\\') - ADVANCE(128); + ADVANCE(130); if (lookahead != 0 && lookahead != '\n') - ADVANCE(129); + ADVANCE(131); END_STATE(); - case 124: + case 126: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(60); if (lookahead == '*') - ADVANCE(125); + ADVANCE(127); if (lookahead == '\\') - ADVANCE(126); + ADVANCE(128); if (lookahead != 0) - ADVANCE(124); + ADVANCE(126); END_STATE(); - case 125: + case 127: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(60); if (lookahead == '*') - ADVANCE(125); + ADVANCE(127); if (lookahead == '/') ADVANCE(62); if (lookahead == '\\') - ADVANCE(126); + ADVANCE(128); if (lookahead != 0) - ADVANCE(124); + ADVANCE(126); END_STATE(); - case 126: + case 128: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(124); + ADVANCE(126); if (lookahead == '*') - ADVANCE(125); + ADVANCE(127); if (lookahead == '\\') - ADVANCE(126); + ADVANCE(128); if (lookahead != 0) - ADVANCE(124); + ADVANCE(126); END_STATE(); - case 127: + case 129: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') - ADVANCE(127); + ADVANCE(129); if (lookahead != 0 && lookahead != '\n') - ADVANCE(127); + ADVANCE(129); END_STATE(); - case 128: + case 130: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') - ADVANCE(129); + ADVANCE(131); if (lookahead == '\\') - ADVANCE(128); + ADVANCE(130); if (lookahead != 0) - ADVANCE(129); + ADVANCE(131); END_STATE(); - case 129: + case 131: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\\') - ADVANCE(128); + ADVANCE(130); if (lookahead != 0 && lookahead != '\n') - ADVANCE(129); + ADVANCE(131); END_STATE(); - case 130: + case 132: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '/') - ADVANCE(123); + ADVANCE(125); if (lookahead == '\\') - ADVANCE(128); + ADVANCE(130); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(130); + ADVANCE(132); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(129); + ADVANCE(131); END_STATE(); - case 131: + case 133: if (lookahead == '\n') - ADVANCE(132); - if (lookahead == '\r') - SKIP(131); - if (lookahead == '(') - ADVANCE(44); + ADVANCE(134); if (lookahead == '/') - ADVANCE(116); + ADVANCE(125); + if (lookahead == '\\') + ADVANCE(130); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') - ADVANCE(133); + ADVANCE(135); + if (lookahead != 0) + ADVANCE(131); END_STATE(); - case 132: + case 134: ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 133: - ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH); + case 135: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '/') + ADVANCE(125); + if (lookahead == '\\') + ADVANCE(130); if (lookahead == '\t' || + lookahead == '\r' || lookahead == ' ') - ADVANCE(133); + ADVANCE(135); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(131); END_STATE(); - case 134: + case 136: if (lookahead == '!') - ADVANCE(135); + ADVANCE(137); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(136); + ADVANCE(138); if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == ')') ADVANCE(45); if (lookahead == '*') - ADVANCE(137); + ADVANCE(139); if (lookahead == '+') - ADVANCE(138); + ADVANCE(140); if (lookahead == ',') ADVANCE(51); if (lookahead == '-') - ADVANCE(139); + ADVANCE(141); if (lookahead == '.') - ADVANCE(140); + ADVANCE(142); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == '0') ADVANCE(65); if (lookahead == ':') @@ -2639,7 +2724,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(75); if (lookahead == '=') - ADVANCE(141); + ADVANCE(143); if (lookahead == '[') ADVANCE(87); if (lookahead == ']') @@ -2652,73 +2737,73 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(134); + SKIP(136); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 135: + case 137: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 136: + case 138: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 137: + case 139: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 138: + case 140: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') ADVANCE(49); END_STATE(); - case 139: + case 141: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(53); END_STATE(); - case 140: + case 142: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 141: + case 143: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 142: + case 144: if (lookahead == 0) ADVANCE(1); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(142); + SKIP(144); END_STATE(); - case 143: + case 145: if (lookahead == 0) ADVANCE(1); if (lookahead == '!') - ADVANCE(135); + ADVANCE(137); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(115); + ADVANCE(117); if (lookahead == '&') - ADVANCE(136); + ADVANCE(138); if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == '*') - ADVANCE(137); + ADVANCE(139); if (lookahead == '+') - ADVANCE(138); + ADVANCE(140); if (lookahead == '-') - ADVANCE(139); + ADVANCE(141); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == '0') ADVANCE(65); if (lookahead == ';') @@ -2733,54 +2818,70 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(143); + SKIP(145); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 144: + case 146: if (lookahead == '\n') - SKIP(144); + SKIP(146); if (lookahead == '\"') ADVANCE(4); if (lookahead == '/') - ADVANCE(145); + ADVANCE(147); if (lookahead == '\\') ADVANCE(88); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(145); + ADVANCE(147); if (lookahead != 0) - ADVANCE(145); + ADVANCE(147); END_STATE(); - case 145: + case 147: ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH); END_STATE(); - case 146: - if (lookahead == '!') + case 148: + if (lookahead == '\n') + ADVANCE(134); + if (lookahead == '(') + ADVANCE(44); + if (lookahead == '/') + ADVANCE(125); + if (lookahead == '\\') + ADVANCE(130); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(135); + if (lookahead != 0) + ADVANCE(131); + END_STATE(); + case 149: + if (lookahead == '!') + ADVANCE(137); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') ADVANCE(5); if (lookahead == '&') - ADVANCE(136); + ADVANCE(138); if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == '*') - ADVANCE(137); + ADVANCE(139); if (lookahead == '+') - ADVANCE(138); + ADVANCE(140); if (lookahead == '-') - ADVANCE(139); + ADVANCE(141); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == '0') ADVANCE(65); if (lookahead == ';') @@ -2793,15 +2894,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(146); + SKIP(149); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 147: + case 150: + if (lookahead == '\n') + ADVANCE(134); + if (lookahead == '/') + ADVANCE(118); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(150); + END_STATE(); + case 151: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -2813,7 +2924,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == '*') ADVANCE(46); if (lookahead == '+') @@ -2823,7 +2934,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(52); if (lookahead == '.') - ADVANCE(140); + ADVANCE(142); if (lookahead == '/') ADVANCE(59); if (lookahead == '0') @@ -2854,90 +2965,90 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(147); + SKIP(151); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 148: + case 152: if (lookahead == '#') - ADVANCE(149); + ADVANCE(153); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == '}') ADVANCE(111); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(148); + SKIP(152); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 149: + case 153: if (lookahead == 'i') - ADVANCE(150); + ADVANCE(154); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(149); + ADVANCE(153); END_STATE(); - case 150: + case 154: if (lookahead == 'f') - ADVANCE(151); + ADVANCE(155); END_STATE(); - case 151: + case 155: ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH); if (lookahead == 'd') - ADVANCE(152); + ADVANCE(156); if (lookahead == 'n') - ADVANCE(155); + ADVANCE(159); END_STATE(); - case 152: + case 156: if (lookahead == 'e') - ADVANCE(153); + ADVANCE(157); END_STATE(); - case 153: + case 157: if (lookahead == 'f') - ADVANCE(154); + ADVANCE(158); END_STATE(); - case 154: + case 158: ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH); END_STATE(); - case 155: + case 159: if (lookahead == 'd') - ADVANCE(156); + ADVANCE(160); END_STATE(); - case 156: + case 160: if (lookahead == 'e') - ADVANCE(157); + ADVANCE(161); END_STATE(); - case 157: + case 161: if (lookahead == 'f') - ADVANCE(158); + ADVANCE(162); END_STATE(); - case 158: + case 162: ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH); END_STATE(); - case 159: + case 163: if (lookahead == 0) ADVANCE(1); if (lookahead == '!') - ADVANCE(160); + ADVANCE(164); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(115); + ADVANCE(117); if (lookahead == '%') ADVANCE(38); if (lookahead == '&') ADVANCE(40); if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == ')') ADVANCE(45); if (lookahead == '*') @@ -2949,7 +3060,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(52); if (lookahead == '.') - ADVANCE(140); + ADVANCE(142); if (lookahead == '/') ADVANCE(59); if (lookahead == ':') @@ -2980,112 +3091,83 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(159); + SKIP(163); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 160: + case 164: if (lookahead == '=') ADVANCE(3); END_STATE(); - case 161: + case 165: if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == ')') ADVANCE(45); if (lookahead == '*') - ADVANCE(137); + ADVANCE(139); if (lookahead == '.') - ADVANCE(162); + ADVANCE(166); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == '[') ADVANCE(87); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(161); + SKIP(165); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 162: + case 166: if (lookahead == '.') ADVANCE(57); END_STATE(); - case 163: - if (lookahead == '\n') - ADVANCE(132); - if (lookahead == '/') - ADVANCE(123); - if (lookahead == '\\') - ADVANCE(128); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(164); - if (lookahead != 0) - ADVANCE(129); - END_STATE(); - case 164: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') - ADVANCE(123); - if (lookahead == '\\') - ADVANCE(128); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(164); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(129); - END_STATE(); - case 165: + case 167: if (lookahead == 0) ADVANCE(1); if (lookahead == '#') - ADVANCE(115); + ADVANCE(117); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == '}') ADVANCE(111); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(165); + SKIP(167); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 166: + case 168: if (lookahead == '!') - ADVANCE(135); + ADVANCE(137); if (lookahead == '\"') ADVANCE(4); if (lookahead == '#') - ADVANCE(167); + ADVANCE(169); if (lookahead == '&') - ADVANCE(136); + ADVANCE(138); if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == '*') - ADVANCE(137); + ADVANCE(139); if (lookahead == '+') - ADVANCE(138); + ADVANCE(140); if (lookahead == '-') - ADVANCE(139); + ADVANCE(141); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == '0') ADVANCE(65); if (lookahead == ';') @@ -3098,29 +3180,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(166); + SKIP(168); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 167: + case 169: if (lookahead == 'd') ADVANCE(6); if (lookahead == 'e') - ADVANCE(168); + ADVANCE(170); if (lookahead == 'i') ADVANCE(23); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(167); + ADVANCE(169); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(12); END_STATE(); - case 168: + case 170: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'n') ADVANCE(19); @@ -3130,94 +3212,84 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(12); END_STATE(); - case 169: + case 171: if (lookahead == '#') - ADVANCE(170); + ADVANCE(172); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(169); + SKIP(171); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 170: + case 172: if (lookahead == 'e') - ADVANCE(171); + ADVANCE(173); if (lookahead == 'i') - ADVANCE(150); + ADVANCE(154); if (lookahead == '\t' || lookahead == ' ') - ADVANCE(170); - END_STATE(); - case 171: - if (lookahead == 'l') ADVANCE(172); - if (lookahead == 'n') - ADVANCE(177); - END_STATE(); - case 172: - if (lookahead == 'i') - ADVANCE(173); - if (lookahead == 's') - ADVANCE(175); END_STATE(); case 173: - if (lookahead == 'f') + if (lookahead == 'l') ADVANCE(174); + if (lookahead == 'n') + ADVANCE(179); END_STATE(); case 174: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH); + if (lookahead == 'i') + ADVANCE(175); + if (lookahead == 's') + ADVANCE(177); END_STATE(); case 175: - if (lookahead == 'e') + if (lookahead == 'f') ADVANCE(176); END_STATE(); case 176: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH); + ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH); END_STATE(); case 177: - if (lookahead == 'd') + if (lookahead == 'e') ADVANCE(178); END_STATE(); case 178: - if (lookahead == 'i') - ADVANCE(179); + ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH); END_STATE(); case 179: - if (lookahead == 'f') + if (lookahead == 'd') ADVANCE(180); END_STATE(); case 180: - ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH); + if (lookahead == 'i') + ADVANCE(181); END_STATE(); case 181: - if (lookahead == '\n') - ADVANCE(132); - if (lookahead == '/') - ADVANCE(116); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(181); + if (lookahead == 'f') + ADVANCE(182); END_STATE(); case 182: + ACCEPT_TOKEN(aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH); + END_STATE(); + case 183: if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == ')') ADVANCE(45); if (lookahead == ',') ADVANCE(51); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == ';') ADVANCE(75); if (lookahead == '=') - ADVANCE(141); + ADVANCE(143); if (lookahead == '[') ADVANCE(87); if (lookahead == '{') @@ -3226,26 +3298,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(182); + SKIP(183); END_STATE(); - case 183: + case 184: if (lookahead == '#') - ADVANCE(170); + ADVANCE(172); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == '}') ADVANCE(111); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(183); + SKIP(184); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 184: + case 185: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -3257,7 +3329,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == '*') ADVANCE(46); if (lookahead == '+') @@ -3267,7 +3339,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(52); if (lookahead == '.') - ADVANCE(140); + ADVANCE(142); if (lookahead == '/') ADVANCE(59); if (lookahead == '0') @@ -3298,33 +3370,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(184); + SKIP(185); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 185: + case 186: if (lookahead == '!') - ADVANCE(135); + ADVANCE(137); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(136); + ADVANCE(138); if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == '*') - ADVANCE(137); + ADVANCE(139); if (lookahead == '+') - ADVANCE(138); + ADVANCE(140); if (lookahead == '-') - ADVANCE(139); + ADVANCE(141); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == '0') ADVANCE(65); if (lookahead == ']') @@ -3335,15 +3407,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(185); + SKIP(186); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 186: + case 187: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -3355,7 +3427,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == ')') ADVANCE(45); if (lookahead == '*') @@ -3367,7 +3439,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(52); if (lookahead == '.') - ADVANCE(140); + ADVANCE(142); if (lookahead == '/') ADVANCE(59); if (lookahead == '0') @@ -3394,29 +3466,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(186); + SKIP(187); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 187: + case 188: if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == ')') ADVANCE(45); if (lookahead == ',') ADVANCE(51); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == ':') ADVANCE(74); if (lookahead == ';') ADVANCE(75); if (lookahead == '=') - ADVANCE(141); + ADVANCE(143); if (lookahead == '[') ADVANCE(87); if (lookahead == '{') @@ -3425,31 +3497,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(187); + SKIP(188); END_STATE(); - case 188: + case 189: if (lookahead == '\n') - SKIP(188); + SKIP(189); if (lookahead == '/') - ADVANCE(189); - if (lookahead == '\\') ADVANCE(190); + if (lookahead == '\\') + ADVANCE(191); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(191); + ADVANCE(192); if (lookahead != 0 && lookahead != '\'') - ADVANCE(191); + ADVANCE(192); END_STATE(); - case 189: + case 190: ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); if (lookahead == '*') ADVANCE(60); if (lookahead == '/') ADVANCE(63); END_STATE(); - case 190: + case 191: ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); if (lookahead == 'U') ADVANCE(89); @@ -3462,10 +3534,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(97); END_STATE(); - case 191: + case 192: ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); END_STATE(); - case 192: + case 193: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -3477,7 +3549,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == '*') ADVANCE(46); if (lookahead == '+') @@ -3485,7 +3557,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(52); if (lookahead == '.') - ADVANCE(140); + ADVANCE(142); if (lookahead == '/') ADVANCE(59); if (lookahead == '0') @@ -3514,37 +3586,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(192); + SKIP(193); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 193: + case 194: if (lookahead == '!') - ADVANCE(135); + ADVANCE(137); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(136); + ADVANCE(138); if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == '*') - ADVANCE(137); + ADVANCE(139); if (lookahead == '+') - ADVANCE(138); + ADVANCE(140); if (lookahead == ',') ADVANCE(51); if (lookahead == '-') - ADVANCE(139); + ADVANCE(141); if (lookahead == '.') - ADVANCE(140); + ADVANCE(142); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == '0') ADVANCE(65); if (lookahead == '[') @@ -3559,23 +3631,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(193); + SKIP(194); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); - case 194: + case 195: if (lookahead == '!') - ADVANCE(160); + ADVANCE(164); if (lookahead == '%') ADVANCE(38); if (lookahead == '&') ADVANCE(40); if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == ')') ADVANCE(45); if (lookahead == '*') @@ -3587,7 +3659,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(52); if (lookahead == '.') - ADVANCE(140); + ADVANCE(142); if (lookahead == '/') ADVANCE(59); if (lookahead == ':') @@ -3616,29 +3688,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(194); + SKIP(195); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(115); END_STATE(); - case 195: + case 196: if (lookahead == '!') - ADVANCE(135); + ADVANCE(137); if (lookahead == '\"') ADVANCE(4); if (lookahead == '&') - ADVANCE(136); + ADVANCE(138); if (lookahead == '\'') ADVANCE(43); if (lookahead == '(') - ADVANCE(44); + ADVANCE(114); if (lookahead == ')') ADVANCE(45); if (lookahead == '*') - ADVANCE(137); + ADVANCE(139); if (lookahead == '+') - ADVANCE(138); + ADVANCE(140); if (lookahead == '-') - ADVANCE(139); + ADVANCE(141); if (lookahead == '/') - ADVANCE(116); + ADVANCE(118); if (lookahead == '0') ADVANCE(65); if (lookahead == '~') @@ -3647,13 +3723,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(195); + SKIP(196); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(113); + ADVANCE(115); END_STATE(); default: return false; @@ -4474,1454 +4550,1370 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 114}, - [2] = {.lex_state = 117}, - [3] = {.lex_state = 114}, - [4] = {.lex_state = 122}, - [5] = {.lex_state = 114}, - [6] = {.lex_state = 114}, - [7] = {.lex_state = 131}, - [8] = {.lex_state = 114}, - [9] = {.lex_state = 134}, - [10] = {.lex_state = 134}, - [11] = {.lex_state = 134}, - [12] = {.lex_state = 134}, - [13] = {.lex_state = 134}, - [14] = {.lex_state = 134}, - [15] = {.lex_state = 134}, - [16] = {.lex_state = 142}, - [17] = {.lex_state = 143}, - [18] = {.lex_state = 143}, - [19] = {.lex_state = 114}, - [20] = {.lex_state = 114}, - [21] = {.lex_state = 143}, - [22] = {.lex_state = 144}, - [23] = {.lex_state = 143}, - [24] = {.lex_state = 131}, - [25] = {.lex_state = 146}, - [26] = {.lex_state = 146}, - [27] = {.lex_state = 146}, - [28] = {.lex_state = 122}, - [29] = {.lex_state = 143}, - [30] = {.lex_state = 134}, - [31] = {.lex_state = 114}, - [32] = {.lex_state = 134}, - [33] = {.lex_state = 134}, - [34] = {.lex_state = 147}, - [35] = {.lex_state = 134}, - [36] = {.lex_state = 134}, - [37] = {.lex_state = 148}, - [38] = {.lex_state = 134}, - [39] = {.lex_state = 134}, - [40] = {.lex_state = 134}, - [41] = {.lex_state = 134}, - [42] = {.lex_state = 114}, - [43] = {.lex_state = 134}, - [44] = {.lex_state = 143}, - [45] = {.lex_state = 134}, - [46] = {.lex_state = 147}, - [47] = {.lex_state = 147}, - [48] = {.lex_state = 143}, - [49] = {.lex_state = 114}, - [50] = {.lex_state = 143}, - [51] = {.lex_state = 114}, - [52] = {.lex_state = 134}, - [53] = {.lex_state = 134}, - [54] = {.lex_state = 143}, - [55] = {.lex_state = 159}, - [56] = {.lex_state = 144}, - [57] = {.lex_state = 122}, - [58] = {.lex_state = 143}, - [59] = {.lex_state = 161}, - [60] = {.lex_state = 163}, - [61] = {.lex_state = 117}, - [62] = {.lex_state = 114}, - [63] = {.lex_state = 122}, - [64] = {.lex_state = 165}, - [65] = {.lex_state = 114}, - [66] = {.lex_state = 114}, - [67] = {.lex_state = 166}, - [68] = {.lex_state = 122}, - [69] = {.lex_state = 131}, - [70] = {.lex_state = 114}, - [71] = {.lex_state = 134}, - [72] = {.lex_state = 169}, - [73] = {.lex_state = 143}, - [74] = {.lex_state = 146}, - [75] = {.lex_state = 165}, - [76] = {.lex_state = 169}, - [77] = {.lex_state = 146}, - [78] = {.lex_state = 165}, - [79] = {.lex_state = 169}, - [80] = {.lex_state = 146}, - [81] = {.lex_state = 181}, - [82] = {.lex_state = 134}, - [83] = {.lex_state = 134}, - [84] = {.lex_state = 182}, - [85] = {.lex_state = 147}, - [86] = {.lex_state = 182}, - [87] = {.lex_state = 182}, - [88] = {.lex_state = 182}, - [89] = {.lex_state = 134}, - [90] = {.lex_state = 114}, - [91] = {.lex_state = 134}, - [92] = {.lex_state = 143}, - [93] = {.lex_state = 165}, - [94] = {.lex_state = 134}, - [95] = {.lex_state = 134}, - [96] = {.lex_state = 114}, - [97] = {.lex_state = 134}, - [98] = {.lex_state = 143}, - [99] = {.lex_state = 134}, - [100] = {.lex_state = 147}, - [101] = {.lex_state = 147}, - [102] = {.lex_state = 134}, - [103] = {.lex_state = 122}, - [104] = {.lex_state = 114}, - [105] = {.lex_state = 114}, - [106] = {.lex_state = 134}, - [107] = {.lex_state = 183}, - [108] = {.lex_state = 183}, - [109] = {.lex_state = 184}, - [110] = {.lex_state = 184}, - [111] = {.lex_state = 148}, - [112] = {.lex_state = 114}, - [113] = {.lex_state = 184}, - [114] = {.lex_state = 134}, - [115] = {.lex_state = 134}, - [116] = {.lex_state = 161}, - [117] = {.lex_state = 161}, - [118] = {.lex_state = 114}, - [119] = {.lex_state = 161}, - [120] = {.lex_state = 134}, - [121] = {.lex_state = 161}, - [122] = {.lex_state = 182}, - [123] = {.lex_state = 134}, - [124] = {.lex_state = 161}, - [125] = {.lex_state = 134}, - [126] = {.lex_state = 143}, - [127] = {.lex_state = 143}, - [128] = {.lex_state = 185}, - [129] = {.lex_state = 134}, - [130] = {.lex_state = 165}, - [131] = {.lex_state = 182}, - [132] = {.lex_state = 147}, - [133] = {.lex_state = 143}, - [134] = {.lex_state = 143}, - [135] = {.lex_state = 159}, - [136] = {.lex_state = 144}, - [137] = {.lex_state = 181}, - [138] = {.lex_state = 186}, - [139] = {.lex_state = 163}, - [140] = {.lex_state = 143}, - [141] = {.lex_state = 181}, - [142] = {.lex_state = 144}, - [143] = {.lex_state = 146}, - [144] = {.lex_state = 131}, - [145] = {.lex_state = 146}, - [146] = {.lex_state = 146}, - [147] = {.lex_state = 146}, - [148] = {.lex_state = 117}, - [149] = {.lex_state = 114}, - [150] = {.lex_state = 122}, - [151] = {.lex_state = 114}, - [152] = {.lex_state = 114}, - [153] = {.lex_state = 131}, - [154] = {.lex_state = 114}, - [155] = {.lex_state = 134}, - [156] = {.lex_state = 143}, - [157] = {.lex_state = 166}, - [158] = {.lex_state = 146}, - [159] = {.lex_state = 122}, - [160] = {.lex_state = 146}, - [161] = {.lex_state = 134}, - [162] = {.lex_state = 114}, - [163] = {.lex_state = 134}, - [164] = {.lex_state = 165}, - [165] = {.lex_state = 146}, - [166] = {.lex_state = 147}, - [167] = {.lex_state = 147}, - [168] = {.lex_state = 169}, - [169] = {.lex_state = 146}, - [170] = {.lex_state = 165}, - [171] = {.lex_state = 169}, - [172] = {.lex_state = 165}, - [173] = {.lex_state = 169}, - [174] = {.lex_state = 143}, - [175] = {.lex_state = 134}, - [176] = {.lex_state = 161}, - [177] = {.lex_state = 182}, - [178] = {.lex_state = 134}, - [179] = {.lex_state = 143}, - [180] = {.lex_state = 185}, - [181] = {.lex_state = 182}, - [182] = {.lex_state = 147}, - [183] = {.lex_state = 165}, - [184] = {.lex_state = 143}, - [185] = {.lex_state = 134}, - [186] = {.lex_state = 134}, - [187] = {.lex_state = 134}, - [188] = {.lex_state = 134}, - [189] = {.lex_state = 134}, - [190] = {.lex_state = 143}, - [191] = {.lex_state = 147}, - [192] = {.lex_state = 169}, - [193] = {.lex_state = 169}, - [194] = {.lex_state = 169}, - [195] = {.lex_state = 134}, - [196] = {.lex_state = 183}, - [197] = {.lex_state = 134}, - [198] = {.lex_state = 134}, - [199] = {.lex_state = 187}, - [200] = {.lex_state = 184}, - [201] = {.lex_state = 187}, - [202] = {.lex_state = 187}, - [203] = {.lex_state = 187}, - [204] = {.lex_state = 184}, - [205] = {.lex_state = 134}, - [206] = {.lex_state = 148}, - [207] = {.lex_state = 184}, - [208] = {.lex_state = 184}, - [209] = {.lex_state = 161}, - [210] = {.lex_state = 161}, - [211] = {.lex_state = 185}, - [212] = {.lex_state = 161}, - [213] = {.lex_state = 186}, - [214] = {.lex_state = 134}, - [215] = {.lex_state = 161}, - [216] = {.lex_state = 161}, - [217] = {.lex_state = 134}, - [218] = {.lex_state = 182}, - [219] = {.lex_state = 182}, - [220] = {.lex_state = 134}, - [221] = {.lex_state = 186}, - [222] = {.lex_state = 187}, - [223] = {.lex_state = 186}, - [224] = {.lex_state = 186}, - [225] = {.lex_state = 114}, - [226] = {.lex_state = 186}, - [227] = {.lex_state = 134}, - [228] = {.lex_state = 147}, - [229] = {.lex_state = 147}, - [230] = {.lex_state = 117}, - [231] = {.lex_state = 134}, - [232] = {.lex_state = 122}, - [233] = {.lex_state = 114}, - [234] = {.lex_state = 114}, - [235] = {.lex_state = 143}, - [236] = {.lex_state = 143}, - [237] = {.lex_state = 134}, - [238] = {.lex_state = 134}, - [239] = {.lex_state = 134}, - [240] = {.lex_state = 134}, - [241] = {.lex_state = 184}, - [242] = {.lex_state = 134}, - [243] = {.lex_state = 143}, - [244] = {.lex_state = 134}, - [245] = {.lex_state = 143}, - [246] = {.lex_state = 143}, - [247] = {.lex_state = 143}, - [248] = {.lex_state = 114}, - [249] = {.lex_state = 134}, - [250] = {.lex_state = 134}, - [251] = {.lex_state = 134}, - [252] = {.lex_state = 134}, - [253] = {.lex_state = 188}, - [254] = {.lex_state = 184}, - [255] = {.lex_state = 143}, - [256] = {.lex_state = 143}, - [257] = {.lex_state = 143}, - [258] = {.lex_state = 147}, - [259] = {.lex_state = 143}, - [260] = {.lex_state = 147}, - [261] = {.lex_state = 143}, - [262] = {.lex_state = 134}, - [263] = {.lex_state = 134}, - [264] = {.lex_state = 182}, - [265] = {.lex_state = 134}, - [266] = {.lex_state = 134}, - [267] = {.lex_state = 134}, - [268] = {.lex_state = 134}, - [269] = {.lex_state = 192}, - [270] = {.lex_state = 185}, - [271] = {.lex_state = 185}, - [272] = {.lex_state = 192}, - [273] = {.lex_state = 192}, - [274] = {.lex_state = 114}, - [275] = {.lex_state = 185}, - [276] = {.lex_state = 193}, - [277] = {.lex_state = 147}, - [278] = {.lex_state = 147}, - [279] = {.lex_state = 143}, - [280] = {.lex_state = 147}, - [281] = {.lex_state = 143}, - [282] = {.lex_state = 161}, - [283] = {.lex_state = 163}, - [284] = {.lex_state = 186}, - [285] = {.lex_state = 143}, - [286] = {.lex_state = 146}, - [287] = {.lex_state = 144}, - [288] = {.lex_state = 122}, - [289] = {.lex_state = 146}, - [290] = {.lex_state = 163}, - [291] = {.lex_state = 146}, - [292] = {.lex_state = 169}, - [293] = {.lex_state = 146}, - [294] = {.lex_state = 146}, - [295] = {.lex_state = 169}, - [296] = {.lex_state = 146}, - [297] = {.lex_state = 146}, - [298] = {.lex_state = 169}, - [299] = {.lex_state = 146}, - [300] = {.lex_state = 144}, - [301] = {.lex_state = 166}, - [302] = {.lex_state = 131}, - [303] = {.lex_state = 146}, - [304] = {.lex_state = 146}, - [305] = {.lex_state = 146}, - [306] = {.lex_state = 122}, - [307] = {.lex_state = 166}, - [308] = {.lex_state = 134}, - [309] = {.lex_state = 114}, - [310] = {.lex_state = 134}, - [311] = {.lex_state = 166}, - [312] = {.lex_state = 147}, - [313] = {.lex_state = 147}, - [314] = {.lex_state = 166}, - [315] = {.lex_state = 169}, - [316] = {.lex_state = 146}, - [317] = {.lex_state = 181}, - [318] = {.lex_state = 147}, - [319] = {.lex_state = 134}, - [320] = {.lex_state = 143}, - [321] = {.lex_state = 146}, - [322] = {.lex_state = 134}, - [323] = {.lex_state = 146}, - [324] = {.lex_state = 143}, - [325] = {.lex_state = 146}, - [326] = {.lex_state = 147}, - [327] = {.lex_state = 165}, - [328] = {.lex_state = 165}, - [329] = {.lex_state = 165}, - [330] = {.lex_state = 134}, - [331] = {.lex_state = 182}, - [332] = {.lex_state = 182}, - [333] = {.lex_state = 182}, - [334] = {.lex_state = 185}, - [335] = {.lex_state = 192}, - [336] = {.lex_state = 143}, - [337] = {.lex_state = 165}, - [338] = {.lex_state = 143}, - [339] = {.lex_state = 134}, - [340] = {.lex_state = 134}, - [341] = {.lex_state = 134}, - [342] = {.lex_state = 134}, - [343] = {.lex_state = 134}, - [344] = {.lex_state = 134}, - [345] = {.lex_state = 134}, - [346] = {.lex_state = 134}, - [347] = {.lex_state = 147}, - [348] = {.lex_state = 147}, - [349] = {.lex_state = 134}, - [350] = {.lex_state = 147}, - [351] = {.lex_state = 143}, - [352] = {.lex_state = 147}, - [353] = {.lex_state = 183}, - [354] = {.lex_state = 169}, - [355] = {.lex_state = 122}, - [356] = {.lex_state = 169}, - [357] = {.lex_state = 169}, - [358] = {.lex_state = 169}, - [359] = {.lex_state = 183}, - [360] = {.lex_state = 169}, - [361] = {.lex_state = 169}, - [362] = {.lex_state = 169}, - [363] = {.lex_state = 183}, - [364] = {.lex_state = 169}, - [365] = {.lex_state = 169}, - [366] = {.lex_state = 169}, - [367] = {.lex_state = 134}, - [368] = {.lex_state = 161}, - [369] = {.lex_state = 187}, - [370] = {.lex_state = 134}, - [371] = {.lex_state = 134}, - [372] = {.lex_state = 134}, - [373] = {.lex_state = 134}, - [374] = {.lex_state = 134}, - [375] = {.lex_state = 134}, - [376] = {.lex_state = 134}, - [377] = {.lex_state = 147}, - [378] = {.lex_state = 147}, - [379] = {.lex_state = 134}, - [380] = {.lex_state = 183}, - [381] = {.lex_state = 185}, - [382] = {.lex_state = 134}, - [383] = {.lex_state = 187}, - [384] = {.lex_state = 184}, - [385] = {.lex_state = 184}, - [386] = {.lex_state = 184}, - [387] = {.lex_state = 161}, - [388] = {.lex_state = 186}, - [389] = {.lex_state = 161}, - [390] = {.lex_state = 186}, - [391] = {.lex_state = 185}, - [392] = {.lex_state = 192}, - [393] = {.lex_state = 185}, - [394] = {.lex_state = 186}, - [395] = {.lex_state = 161}, - [396] = {.lex_state = 161}, - [397] = {.lex_state = 187}, - [398] = {.lex_state = 186}, - [399] = {.lex_state = 161}, - [400] = {.lex_state = 186}, - [401] = {.lex_state = 186}, - [402] = {.lex_state = 186}, - [403] = {.lex_state = 186}, - [404] = {.lex_state = 186}, - [405] = {.lex_state = 186}, - [406] = {.lex_state = 134}, - [407] = {.lex_state = 144}, - [408] = {.lex_state = 134}, - [409] = {.lex_state = 134}, - [410] = {.lex_state = 134}, - [411] = {.lex_state = 134}, - [412] = {.lex_state = 134}, - [413] = {.lex_state = 134}, - [414] = {.lex_state = 186}, - [415] = {.lex_state = 186}, - [416] = {.lex_state = 161}, - [417] = {.lex_state = 161}, - [418] = {.lex_state = 186}, - [419] = {.lex_state = 146}, - [420] = {.lex_state = 146}, - [421] = {.lex_state = 146}, - [422] = {.lex_state = 194}, - [423] = {.lex_state = 134}, - [424] = {.lex_state = 134}, - [425] = {.lex_state = 134}, - [426] = {.lex_state = 134}, - [427] = {.lex_state = 134}, - [428] = {.lex_state = 134}, - [429] = {.lex_state = 134}, - [430] = {.lex_state = 134}, - [431] = {.lex_state = 184}, - [432] = {.lex_state = 184}, - [433] = {.lex_state = 143}, - [434] = {.lex_state = 134}, - [435] = {.lex_state = 134}, - [436] = {.lex_state = 134}, - [437] = {.lex_state = 134}, - [438] = {.lex_state = 184}, - [439] = {.lex_state = 134}, - [440] = {.lex_state = 134}, - [441] = {.lex_state = 184}, - [442] = {.lex_state = 114}, - [443] = {.lex_state = 143}, - [444] = {.lex_state = 143}, - [445] = {.lex_state = 147}, - [446] = {.lex_state = 143}, - [447] = {.lex_state = 143}, - [448] = {.lex_state = 143}, - [449] = {.lex_state = 194}, - [450] = {.lex_state = 194}, - [451] = {.lex_state = 194}, - [452] = {.lex_state = 134}, - [453] = {.lex_state = 147}, - [454] = {.lex_state = 134}, - [455] = {.lex_state = 143}, - [456] = {.lex_state = 147}, - [457] = {.lex_state = 195}, - [458] = {.lex_state = 134}, - [459] = {.lex_state = 143}, - [460] = {.lex_state = 134}, - [461] = {.lex_state = 134}, - [462] = {.lex_state = 134}, - [463] = {.lex_state = 134}, - [464] = {.lex_state = 134}, - [465] = {.lex_state = 134}, - [466] = {.lex_state = 134}, - [467] = {.lex_state = 134}, - [468] = {.lex_state = 134}, - [469] = {.lex_state = 134}, - [470] = {.lex_state = 134}, - [471] = {.lex_state = 134}, - [472] = {.lex_state = 134}, - [473] = {.lex_state = 194}, - [474] = {.lex_state = 114}, - [475] = {.lex_state = 194}, - [476] = {.lex_state = 147}, - [477] = {.lex_state = 143}, - [478] = {.lex_state = 143}, - [479] = {.lex_state = 161}, - [480] = {.lex_state = 134}, - [481] = {.lex_state = 192}, - [482] = {.lex_state = 182}, - [483] = {.lex_state = 192}, - [484] = {.lex_state = 185}, - [485] = {.lex_state = 134}, - [486] = {.lex_state = 134}, - [487] = {.lex_state = 134}, - [488] = {.lex_state = 134}, - [489] = {.lex_state = 134}, - [490] = {.lex_state = 134}, - [491] = {.lex_state = 134}, - [492] = {.lex_state = 134}, - [493] = {.lex_state = 134}, - [494] = {.lex_state = 134}, - [495] = {.lex_state = 134}, - [496] = {.lex_state = 134}, - [497] = {.lex_state = 192}, - [498] = {.lex_state = 185}, - [499] = {.lex_state = 185}, - [500] = {.lex_state = 143}, - [501] = {.lex_state = 194}, - [502] = {.lex_state = 134}, - [503] = {.lex_state = 114}, - [504] = {.lex_state = 147}, - [505] = {.lex_state = 147}, - [506] = {.lex_state = 134}, - [507] = {.lex_state = 186}, - [508] = {.lex_state = 163}, - [509] = {.lex_state = 186}, - [510] = {.lex_state = 146}, - [511] = {.lex_state = 181}, - [512] = {.lex_state = 146}, - [513] = {.lex_state = 181}, - [514] = {.lex_state = 146}, - [515] = {.lex_state = 169}, - [516] = {.lex_state = 146}, - [517] = {.lex_state = 169}, - [518] = {.lex_state = 146}, - [519] = {.lex_state = 169}, - [520] = {.lex_state = 166}, - [521] = {.lex_state = 144}, - [522] = {.lex_state = 122}, - [523] = {.lex_state = 166}, - [524] = {.lex_state = 163}, - [525] = {.lex_state = 166}, - [526] = {.lex_state = 169}, - [527] = {.lex_state = 146}, - [528] = {.lex_state = 166}, - [529] = {.lex_state = 169}, - [530] = {.lex_state = 146}, - [531] = {.lex_state = 166}, - [532] = {.lex_state = 169}, - [533] = {.lex_state = 146}, - [534] = {.lex_state = 181}, - [535] = {.lex_state = 147}, - [536] = {.lex_state = 134}, - [537] = {.lex_state = 143}, - [538] = {.lex_state = 166}, - [539] = {.lex_state = 134}, - [540] = {.lex_state = 166}, - [541] = {.lex_state = 143}, - [542] = {.lex_state = 166}, - [543] = {.lex_state = 147}, - [544] = {.lex_state = 169}, - [545] = {.lex_state = 146}, - [546] = {.lex_state = 146}, - [547] = {.lex_state = 147}, - [548] = {.lex_state = 146}, - [549] = {.lex_state = 143}, - [550] = {.lex_state = 146}, - [551] = {.lex_state = 143}, - [552] = {.lex_state = 146}, - [553] = {.lex_state = 182}, - [554] = {.lex_state = 192}, - [555] = {.lex_state = 161}, - [556] = {.lex_state = 134}, - [557] = {.lex_state = 147}, - [558] = {.lex_state = 134}, - [559] = {.lex_state = 134}, - [560] = {.lex_state = 134}, - [561] = {.lex_state = 134}, - [562] = {.lex_state = 134}, - [563] = {.lex_state = 134}, - [564] = {.lex_state = 134}, - [565] = {.lex_state = 134}, - [566] = {.lex_state = 134}, - [567] = {.lex_state = 134}, - [568] = {.lex_state = 134}, - [569] = {.lex_state = 134}, - [570] = {.lex_state = 147}, - [571] = {.lex_state = 134}, - [572] = {.lex_state = 114}, - [573] = {.lex_state = 169}, - [574] = {.lex_state = 169}, - [575] = {.lex_state = 183}, - [576] = {.lex_state = 183}, - [577] = {.lex_state = 183}, - [578] = {.lex_state = 169}, - [579] = {.lex_state = 169}, - [580] = {.lex_state = 169}, - [581] = {.lex_state = 183}, - [582] = {.lex_state = 183}, - [583] = {.lex_state = 183}, - [584] = {.lex_state = 169}, - [585] = {.lex_state = 169}, - [586] = {.lex_state = 183}, - [587] = {.lex_state = 183}, - [588] = {.lex_state = 183}, - [589] = {.lex_state = 169}, - [590] = {.lex_state = 169}, - [591] = {.lex_state = 134}, - [592] = {.lex_state = 187}, - [593] = {.lex_state = 187}, - [594] = {.lex_state = 161}, - [595] = {.lex_state = 134}, - [596] = {.lex_state = 147}, - [597] = {.lex_state = 183}, - [598] = {.lex_state = 134}, - [599] = {.lex_state = 134}, - [600] = {.lex_state = 134}, - [601] = {.lex_state = 134}, - [602] = {.lex_state = 134}, - [603] = {.lex_state = 134}, - [604] = {.lex_state = 134}, - [605] = {.lex_state = 134}, - [606] = {.lex_state = 134}, - [607] = {.lex_state = 134}, - [608] = {.lex_state = 134}, - [609] = {.lex_state = 134}, - [610] = {.lex_state = 147}, - [611] = {.lex_state = 184}, - [612] = {.lex_state = 187}, - [613] = {.lex_state = 185}, - [614] = {.lex_state = 192}, - [615] = {.lex_state = 147}, - [616] = {.lex_state = 134}, - [617] = {.lex_state = 184}, - [618] = {.lex_state = 186}, - [619] = {.lex_state = 186}, - [620] = {.lex_state = 161}, - [621] = {.lex_state = 186}, - [622] = {.lex_state = 192}, - [623] = {.lex_state = 185}, - [624] = {.lex_state = 186}, - [625] = {.lex_state = 187}, - [626] = {.lex_state = 186}, - [627] = {.lex_state = 161}, - [628] = {.lex_state = 186}, - [629] = {.lex_state = 186}, - [630] = {.lex_state = 186}, - [631] = {.lex_state = 186}, - [632] = {.lex_state = 143}, - [633] = {.lex_state = 144}, - [634] = {.lex_state = 161}, - [635] = {.lex_state = 134}, - [636] = {.lex_state = 186}, - [637] = {.lex_state = 134}, - [638] = {.lex_state = 194}, - [639] = {.lex_state = 134}, - [640] = {.lex_state = 134}, - [641] = {.lex_state = 134}, - [642] = {.lex_state = 134}, - [643] = {.lex_state = 134}, - [644] = {.lex_state = 134}, - [645] = {.lex_state = 134}, - [646] = {.lex_state = 134}, - [647] = {.lex_state = 134}, - [648] = {.lex_state = 134}, - [649] = {.lex_state = 134}, - [650] = {.lex_state = 134}, - [651] = {.lex_state = 134}, - [652] = {.lex_state = 186}, - [653] = {.lex_state = 122}, - [654] = {.lex_state = 143}, - [655] = {.lex_state = 114}, - [656] = {.lex_state = 114}, - [657] = {.lex_state = 166}, - [658] = {.lex_state = 122}, - [659] = {.lex_state = 146}, - [660] = {.lex_state = 134}, - [661] = {.lex_state = 134}, - [662] = {.lex_state = 134}, - [663] = {.lex_state = 184}, - [664] = {.lex_state = 134}, - [665] = {.lex_state = 143}, - [666] = {.lex_state = 134}, - [667] = {.lex_state = 143}, - [668] = {.lex_state = 143}, - [669] = {.lex_state = 143}, - [670] = {.lex_state = 114}, - [671] = {.lex_state = 184}, - [672] = {.lex_state = 146}, - [673] = {.lex_state = 146}, - [674] = {.lex_state = 169}, - [675] = {.lex_state = 169}, - [676] = {.lex_state = 143}, - [677] = {.lex_state = 147}, - [678] = {.lex_state = 143}, - [679] = {.lex_state = 146}, - [680] = {.lex_state = 143}, - [681] = {.lex_state = 169}, - [682] = {.lex_state = 169}, - [683] = {.lex_state = 146}, - [684] = {.lex_state = 143}, - [685] = {.lex_state = 169}, - [686] = {.lex_state = 169}, - [687] = {.lex_state = 146}, - [688] = {.lex_state = 134}, - [689] = {.lex_state = 134}, - [690] = {.lex_state = 134}, - [691] = {.lex_state = 134}, - [692] = {.lex_state = 134}, - [693] = {.lex_state = 134}, - [694] = {.lex_state = 186}, - [695] = {.lex_state = 186}, - [696] = {.lex_state = 186}, - [697] = {.lex_state = 161}, - [698] = {.lex_state = 134}, - [699] = {.lex_state = 184}, - [700] = {.lex_state = 134}, - [701] = {.lex_state = 134}, - [702] = {.lex_state = 143}, - [703] = {.lex_state = 134}, - [704] = {.lex_state = 134}, - [705] = {.lex_state = 134}, - [706] = {.lex_state = 134}, - [707] = {.lex_state = 134}, - [708] = {.lex_state = 134}, - [709] = {.lex_state = 134}, - [710] = {.lex_state = 134}, - [711] = {.lex_state = 134}, - [712] = {.lex_state = 134}, - [713] = {.lex_state = 184}, - [714] = {.lex_state = 184}, - [715] = {.lex_state = 143}, - [716] = {.lex_state = 134}, - [717] = {.lex_state = 186}, - [718] = {.lex_state = 134}, - [719] = {.lex_state = 134}, - [720] = {.lex_state = 184}, - [721] = {.lex_state = 143}, - [722] = {.lex_state = 134}, - [723] = {.lex_state = 143}, - [724] = {.lex_state = 143}, - [725] = {.lex_state = 134}, - [726] = {.lex_state = 143}, - [727] = {.lex_state = 147}, - [728] = {.lex_state = 147}, - [729] = {.lex_state = 143}, - [730] = {.lex_state = 143}, - [731] = {.lex_state = 161}, - [732] = {.lex_state = 194}, - [733] = {.lex_state = 184}, - [734] = {.lex_state = 143}, - [735] = {.lex_state = 194}, - [736] = {.lex_state = 186}, - [737] = {.lex_state = 147}, - [738] = {.lex_state = 182}, - [739] = {.lex_state = 194}, - [740] = {.lex_state = 192}, - [741] = {.lex_state = 147}, - [742] = {.lex_state = 184}, - [743] = {.lex_state = 147}, - [744] = {.lex_state = 147}, - [745] = {.lex_state = 147}, - [746] = {.lex_state = 147}, - [747] = {.lex_state = 147}, - [748] = {.lex_state = 147}, - [749] = {.lex_state = 147}, - [750] = {.lex_state = 147}, - [751] = {.lex_state = 147}, - [752] = {.lex_state = 194}, - [753] = {.lex_state = 147}, - [754] = {.lex_state = 134}, - [755] = {.lex_state = 161}, - [756] = {.lex_state = 182}, - [757] = {.lex_state = 185}, - [758] = {.lex_state = 192}, - [759] = {.lex_state = 184}, - [760] = {.lex_state = 192}, - [761] = {.lex_state = 192}, - [762] = {.lex_state = 192}, - [763] = {.lex_state = 192}, - [764] = {.lex_state = 192}, - [765] = {.lex_state = 192}, - [766] = {.lex_state = 192}, - [767] = {.lex_state = 192}, - [768] = {.lex_state = 192}, - [769] = {.lex_state = 192}, - [770] = {.lex_state = 185}, - [771] = {.lex_state = 194}, - [772] = {.lex_state = 192}, - [773] = {.lex_state = 134}, + [1] = {.lex_state = 116}, + [2] = {.lex_state = 119}, + [3] = {.lex_state = 116}, + [4] = {.lex_state = 124}, + [5] = {.lex_state = 116}, + [6] = {.lex_state = 116}, + [7] = {.lex_state = 133}, + [8] = {.lex_state = 116}, + [9] = {.lex_state = 136}, + [10] = {.lex_state = 136}, + [11] = {.lex_state = 136}, + [12] = {.lex_state = 136}, + [13] = {.lex_state = 136}, + [14] = {.lex_state = 136}, + [15] = {.lex_state = 136}, + [16] = {.lex_state = 144}, + [17] = {.lex_state = 145}, + [18] = {.lex_state = 145}, + [19] = {.lex_state = 116}, + [20] = {.lex_state = 116}, + [21] = {.lex_state = 145}, + [22] = {.lex_state = 146}, + [23] = {.lex_state = 145}, + [24] = {.lex_state = 148}, + [25] = {.lex_state = 149}, + [26] = {.lex_state = 149}, + [27] = {.lex_state = 149}, + [28] = {.lex_state = 145}, + [29] = {.lex_state = 150}, + [30] = {.lex_state = 136}, + [31] = {.lex_state = 116}, + [32] = {.lex_state = 136}, + [33] = {.lex_state = 136}, + [34] = {.lex_state = 151}, + [35] = {.lex_state = 136}, + [36] = {.lex_state = 136}, + [37] = {.lex_state = 152}, + [38] = {.lex_state = 136}, + [39] = {.lex_state = 136}, + [40] = {.lex_state = 136}, + [41] = {.lex_state = 136}, + [42] = {.lex_state = 116}, + [43] = {.lex_state = 145}, + [44] = {.lex_state = 136}, + [45] = {.lex_state = 136}, + [46] = {.lex_state = 151}, + [47] = {.lex_state = 151}, + [48] = {.lex_state = 145}, + [49] = {.lex_state = 116}, + [50] = {.lex_state = 145}, + [51] = {.lex_state = 116}, + [52] = {.lex_state = 136}, + [53] = {.lex_state = 136}, + [54] = {.lex_state = 145}, + [55] = {.lex_state = 163}, + [56] = {.lex_state = 146}, + [57] = {.lex_state = 145}, + [58] = {.lex_state = 165}, + [59] = {.lex_state = 150}, + [60] = {.lex_state = 133}, + [61] = {.lex_state = 119}, + [62] = {.lex_state = 116}, + [63] = {.lex_state = 124}, + [64] = {.lex_state = 167}, + [65] = {.lex_state = 116}, + [66] = {.lex_state = 116}, + [67] = {.lex_state = 168}, + [68] = {.lex_state = 124}, + [69] = {.lex_state = 133}, + [70] = {.lex_state = 116}, + [71] = {.lex_state = 136}, + [72] = {.lex_state = 171}, + [73] = {.lex_state = 145}, + [74] = {.lex_state = 149}, + [75] = {.lex_state = 167}, + [76] = {.lex_state = 171}, + [77] = {.lex_state = 149}, + [78] = {.lex_state = 167}, + [79] = {.lex_state = 171}, + [80] = {.lex_state = 149}, + [81] = {.lex_state = 145}, + [82] = {.lex_state = 136}, + [83] = {.lex_state = 136}, + [84] = {.lex_state = 183}, + [85] = {.lex_state = 151}, + [86] = {.lex_state = 183}, + [87] = {.lex_state = 183}, + [88] = {.lex_state = 183}, + [89] = {.lex_state = 136}, + [90] = {.lex_state = 116}, + [91] = {.lex_state = 136}, + [92] = {.lex_state = 145}, + [93] = {.lex_state = 167}, + [94] = {.lex_state = 136}, + [95] = {.lex_state = 136}, + [96] = {.lex_state = 116}, + [97] = {.lex_state = 136}, + [98] = {.lex_state = 145}, + [99] = {.lex_state = 136}, + [100] = {.lex_state = 151}, + [101] = {.lex_state = 151}, + [102] = {.lex_state = 136}, + [103] = {.lex_state = 124}, + [104] = {.lex_state = 116}, + [105] = {.lex_state = 116}, + [106] = {.lex_state = 136}, + [107] = {.lex_state = 184}, + [108] = {.lex_state = 184}, + [109] = {.lex_state = 185}, + [110] = {.lex_state = 185}, + [111] = {.lex_state = 152}, + [112] = {.lex_state = 116}, + [113] = {.lex_state = 185}, + [114] = {.lex_state = 136}, + [115] = {.lex_state = 136}, + [116] = {.lex_state = 165}, + [117] = {.lex_state = 165}, + [118] = {.lex_state = 116}, + [119] = {.lex_state = 165}, + [120] = {.lex_state = 136}, + [121] = {.lex_state = 165}, + [122] = {.lex_state = 183}, + [123] = {.lex_state = 136}, + [124] = {.lex_state = 136}, + [125] = {.lex_state = 145}, + [126] = {.lex_state = 145}, + [127] = {.lex_state = 165}, + [128] = {.lex_state = 186}, + [129] = {.lex_state = 136}, + [130] = {.lex_state = 167}, + [131] = {.lex_state = 183}, + [132] = {.lex_state = 151}, + [133] = {.lex_state = 145}, + [134] = {.lex_state = 145}, + [135] = {.lex_state = 163}, + [136] = {.lex_state = 146}, + [137] = {.lex_state = 187}, + [138] = {.lex_state = 133}, + [139] = {.lex_state = 145}, + [140] = {.lex_state = 145}, + [141] = {.lex_state = 150}, + [142] = {.lex_state = 146}, + [143] = {.lex_state = 149}, + [144] = {.lex_state = 148}, + [145] = {.lex_state = 149}, + [146] = {.lex_state = 149}, + [147] = {.lex_state = 149}, + [148] = {.lex_state = 119}, + [149] = {.lex_state = 116}, + [150] = {.lex_state = 124}, + [151] = {.lex_state = 116}, + [152] = {.lex_state = 116}, + [153] = {.lex_state = 133}, + [154] = {.lex_state = 116}, + [155] = {.lex_state = 136}, + [156] = {.lex_state = 145}, + [157] = {.lex_state = 168}, + [158] = {.lex_state = 149}, + [159] = {.lex_state = 149}, + [160] = {.lex_state = 150}, + [161] = {.lex_state = 136}, + [162] = {.lex_state = 116}, + [163] = {.lex_state = 136}, + [164] = {.lex_state = 167}, + [165] = {.lex_state = 149}, + [166] = {.lex_state = 151}, + [167] = {.lex_state = 151}, + [168] = {.lex_state = 171}, + [169] = {.lex_state = 149}, + [170] = {.lex_state = 167}, + [171] = {.lex_state = 171}, + [172] = {.lex_state = 167}, + [173] = {.lex_state = 171}, + [174] = {.lex_state = 136}, + [175] = {.lex_state = 165}, + [176] = {.lex_state = 183}, + [177] = {.lex_state = 136}, + [178] = {.lex_state = 145}, + [179] = {.lex_state = 186}, + [180] = {.lex_state = 183}, + [181] = {.lex_state = 151}, + [182] = {.lex_state = 167}, + [183] = {.lex_state = 145}, + [184] = {.lex_state = 136}, + [185] = {.lex_state = 136}, + [186] = {.lex_state = 136}, + [187] = {.lex_state = 136}, + [188] = {.lex_state = 136}, + [189] = {.lex_state = 145}, + [190] = {.lex_state = 151}, + [191] = {.lex_state = 171}, + [192] = {.lex_state = 171}, + [193] = {.lex_state = 171}, + [194] = {.lex_state = 184}, + [195] = {.lex_state = 136}, + [196] = {.lex_state = 136}, + [197] = {.lex_state = 136}, + [198] = {.lex_state = 188}, + [199] = {.lex_state = 185}, + [200] = {.lex_state = 188}, + [201] = {.lex_state = 188}, + [202] = {.lex_state = 188}, + [203] = {.lex_state = 185}, + [204] = {.lex_state = 136}, + [205] = {.lex_state = 152}, + [206] = {.lex_state = 185}, + [207] = {.lex_state = 185}, + [208] = {.lex_state = 165}, + [209] = {.lex_state = 165}, + [210] = {.lex_state = 186}, + [211] = {.lex_state = 165}, + [212] = {.lex_state = 187}, + [213] = {.lex_state = 136}, + [214] = {.lex_state = 165}, + [215] = {.lex_state = 165}, + [216] = {.lex_state = 136}, + [217] = {.lex_state = 183}, + [218] = {.lex_state = 183}, + [219] = {.lex_state = 136}, + [220] = {.lex_state = 136}, + [221] = {.lex_state = 151}, + [222] = {.lex_state = 151}, + [223] = {.lex_state = 119}, + [224] = {.lex_state = 124}, + [225] = {.lex_state = 116}, + [226] = {.lex_state = 116}, + [227] = {.lex_state = 145}, + [228] = {.lex_state = 145}, + [229] = {.lex_state = 136}, + [230] = {.lex_state = 136}, + [231] = {.lex_state = 136}, + [232] = {.lex_state = 136}, + [233] = {.lex_state = 136}, + [234] = {.lex_state = 185}, + [235] = {.lex_state = 136}, + [236] = {.lex_state = 145}, + [237] = {.lex_state = 136}, + [238] = {.lex_state = 145}, + [239] = {.lex_state = 145}, + [240] = {.lex_state = 145}, + [241] = {.lex_state = 116}, + [242] = {.lex_state = 136}, + [243] = {.lex_state = 136}, + [244] = {.lex_state = 136}, + [245] = {.lex_state = 136}, + [246] = {.lex_state = 189}, + [247] = {.lex_state = 185}, + [248] = {.lex_state = 145}, + [249] = {.lex_state = 145}, + [250] = {.lex_state = 145}, + [251] = {.lex_state = 151}, + [252] = {.lex_state = 145}, + [253] = {.lex_state = 151}, + [254] = {.lex_state = 145}, + [255] = {.lex_state = 187}, + [256] = {.lex_state = 188}, + [257] = {.lex_state = 187}, + [258] = {.lex_state = 187}, + [259] = {.lex_state = 116}, + [260] = {.lex_state = 187}, + [261] = {.lex_state = 136}, + [262] = {.lex_state = 136}, + [263] = {.lex_state = 183}, + [264] = {.lex_state = 136}, + [265] = {.lex_state = 136}, + [266] = {.lex_state = 136}, + [267] = {.lex_state = 136}, + [268] = {.lex_state = 193}, + [269] = {.lex_state = 186}, + [270] = {.lex_state = 186}, + [271] = {.lex_state = 193}, + [272] = {.lex_state = 193}, + [273] = {.lex_state = 116}, + [274] = {.lex_state = 186}, + [275] = {.lex_state = 194}, + [276] = {.lex_state = 151}, + [277] = {.lex_state = 151}, + [278] = {.lex_state = 145}, + [279] = {.lex_state = 151}, + [280] = {.lex_state = 165}, + [281] = {.lex_state = 133}, + [282] = {.lex_state = 187}, + [283] = {.lex_state = 145}, + [284] = {.lex_state = 149}, + [285] = {.lex_state = 146}, + [286] = {.lex_state = 149}, + [287] = {.lex_state = 150}, + [288] = {.lex_state = 133}, + [289] = {.lex_state = 149}, + [290] = {.lex_state = 171}, + [291] = {.lex_state = 149}, + [292] = {.lex_state = 149}, + [293] = {.lex_state = 171}, + [294] = {.lex_state = 149}, + [295] = {.lex_state = 149}, + [296] = {.lex_state = 171}, + [297] = {.lex_state = 149}, + [298] = {.lex_state = 146}, + [299] = {.lex_state = 168}, + [300] = {.lex_state = 148}, + [301] = {.lex_state = 149}, + [302] = {.lex_state = 149}, + [303] = {.lex_state = 149}, + [304] = {.lex_state = 168}, + [305] = {.lex_state = 150}, + [306] = {.lex_state = 136}, + [307] = {.lex_state = 116}, + [308] = {.lex_state = 136}, + [309] = {.lex_state = 168}, + [310] = {.lex_state = 151}, + [311] = {.lex_state = 151}, + [312] = {.lex_state = 168}, + [313] = {.lex_state = 171}, + [314] = {.lex_state = 149}, + [315] = {.lex_state = 149}, + [316] = {.lex_state = 151}, + [317] = {.lex_state = 136}, + [318] = {.lex_state = 145}, + [319] = {.lex_state = 149}, + [320] = {.lex_state = 136}, + [321] = {.lex_state = 149}, + [322] = {.lex_state = 145}, + [323] = {.lex_state = 149}, + [324] = {.lex_state = 151}, + [325] = {.lex_state = 167}, + [326] = {.lex_state = 167}, + [327] = {.lex_state = 167}, + [328] = {.lex_state = 136}, + [329] = {.lex_state = 183}, + [330] = {.lex_state = 183}, + [331] = {.lex_state = 183}, + [332] = {.lex_state = 186}, + [333] = {.lex_state = 193}, + [334] = {.lex_state = 145}, + [335] = {.lex_state = 167}, + [336] = {.lex_state = 145}, + [337] = {.lex_state = 136}, + [338] = {.lex_state = 136}, + [339] = {.lex_state = 136}, + [340] = {.lex_state = 136}, + [341] = {.lex_state = 136}, + [342] = {.lex_state = 136}, + [343] = {.lex_state = 136}, + [344] = {.lex_state = 136}, + [345] = {.lex_state = 151}, + [346] = {.lex_state = 151}, + [347] = {.lex_state = 136}, + [348] = {.lex_state = 151}, + [349] = {.lex_state = 145}, + [350] = {.lex_state = 151}, + [351] = {.lex_state = 184}, + [352] = {.lex_state = 171}, + [353] = {.lex_state = 124}, + [354] = {.lex_state = 171}, + [355] = {.lex_state = 171}, + [356] = {.lex_state = 171}, + [357] = {.lex_state = 184}, + [358] = {.lex_state = 171}, + [359] = {.lex_state = 171}, + [360] = {.lex_state = 171}, + [361] = {.lex_state = 184}, + [362] = {.lex_state = 171}, + [363] = {.lex_state = 171}, + [364] = {.lex_state = 171}, + [365] = {.lex_state = 136}, + [366] = {.lex_state = 165}, + [367] = {.lex_state = 188}, + [368] = {.lex_state = 136}, + [369] = {.lex_state = 136}, + [370] = {.lex_state = 136}, + [371] = {.lex_state = 136}, + [372] = {.lex_state = 136}, + [373] = {.lex_state = 136}, + [374] = {.lex_state = 136}, + [375] = {.lex_state = 151}, + [376] = {.lex_state = 151}, + [377] = {.lex_state = 136}, + [378] = {.lex_state = 184}, + [379] = {.lex_state = 186}, + [380] = {.lex_state = 136}, + [381] = {.lex_state = 188}, + [382] = {.lex_state = 185}, + [383] = {.lex_state = 185}, + [384] = {.lex_state = 185}, + [385] = {.lex_state = 165}, + [386] = {.lex_state = 187}, + [387] = {.lex_state = 165}, + [388] = {.lex_state = 187}, + [389] = {.lex_state = 186}, + [390] = {.lex_state = 193}, + [391] = {.lex_state = 186}, + [392] = {.lex_state = 187}, + [393] = {.lex_state = 165}, + [394] = {.lex_state = 136}, + [395] = {.lex_state = 146}, + [396] = {.lex_state = 149}, + [397] = {.lex_state = 149}, + [398] = {.lex_state = 149}, + [399] = {.lex_state = 136}, + [400] = {.lex_state = 136}, + [401] = {.lex_state = 136}, + [402] = {.lex_state = 136}, + [403] = {.lex_state = 136}, + [404] = {.lex_state = 136}, + [405] = {.lex_state = 187}, + [406] = {.lex_state = 187}, + [407] = {.lex_state = 165}, + [408] = {.lex_state = 165}, + [409] = {.lex_state = 187}, + [410] = {.lex_state = 195}, + [411] = {.lex_state = 136}, + [412] = {.lex_state = 145}, + [413] = {.lex_state = 145}, + [414] = {.lex_state = 136}, + [415] = {.lex_state = 136}, + [416] = {.lex_state = 136}, + [417] = {.lex_state = 136}, + [418] = {.lex_state = 136}, + [419] = {.lex_state = 136}, + [420] = {.lex_state = 185}, + [421] = {.lex_state = 185}, + [422] = {.lex_state = 145}, + [423] = {.lex_state = 145}, + [424] = {.lex_state = 136}, + [425] = {.lex_state = 136}, + [426] = {.lex_state = 136}, + [427] = {.lex_state = 185}, + [428] = {.lex_state = 136}, + [429] = {.lex_state = 145}, + [430] = {.lex_state = 136}, + [431] = {.lex_state = 185}, + [432] = {.lex_state = 116}, + [433] = {.lex_state = 145}, + [434] = {.lex_state = 145}, + [435] = {.lex_state = 151}, + [436] = {.lex_state = 145}, + [437] = {.lex_state = 145}, + [438] = {.lex_state = 145}, + [439] = {.lex_state = 195}, + [440] = {.lex_state = 195}, + [441] = {.lex_state = 195}, + [442] = {.lex_state = 136}, + [443] = {.lex_state = 151}, + [444] = {.lex_state = 136}, + [445] = {.lex_state = 145}, + [446] = {.lex_state = 151}, + [447] = {.lex_state = 136}, + [448] = {.lex_state = 145}, + [449] = {.lex_state = 196}, + [450] = {.lex_state = 136}, + [451] = {.lex_state = 136}, + [452] = {.lex_state = 136}, + [453] = {.lex_state = 136}, + [454] = {.lex_state = 136}, + [455] = {.lex_state = 136}, + [456] = {.lex_state = 136}, + [457] = {.lex_state = 136}, + [458] = {.lex_state = 136}, + [459] = {.lex_state = 136}, + [460] = {.lex_state = 136}, + [461] = {.lex_state = 136}, + [462] = {.lex_state = 136}, + [463] = {.lex_state = 195}, + [464] = {.lex_state = 116}, + [465] = {.lex_state = 195}, + [466] = {.lex_state = 151}, + [467] = {.lex_state = 145}, + [468] = {.lex_state = 145}, + [469] = {.lex_state = 165}, + [470] = {.lex_state = 188}, + [471] = {.lex_state = 187}, + [472] = {.lex_state = 165}, + [473] = {.lex_state = 187}, + [474] = {.lex_state = 187}, + [475] = {.lex_state = 187}, + [476] = {.lex_state = 187}, + [477] = {.lex_state = 187}, + [478] = {.lex_state = 187}, + [479] = {.lex_state = 165}, + [480] = {.lex_state = 136}, + [481] = {.lex_state = 193}, + [482] = {.lex_state = 183}, + [483] = {.lex_state = 193}, + [484] = {.lex_state = 186}, + [485] = {.lex_state = 136}, + [486] = {.lex_state = 136}, + [487] = {.lex_state = 136}, + [488] = {.lex_state = 136}, + [489] = {.lex_state = 136}, + [490] = {.lex_state = 136}, + [491] = {.lex_state = 136}, + [492] = {.lex_state = 136}, + [493] = {.lex_state = 136}, + [494] = {.lex_state = 136}, + [495] = {.lex_state = 136}, + [496] = {.lex_state = 136}, + [497] = {.lex_state = 193}, + [498] = {.lex_state = 186}, + [499] = {.lex_state = 186}, + [500] = {.lex_state = 145}, + [501] = {.lex_state = 195}, + [502] = {.lex_state = 136}, + [503] = {.lex_state = 116}, + [504] = {.lex_state = 151}, + [505] = {.lex_state = 151}, + [506] = {.lex_state = 136}, + [507] = {.lex_state = 187}, + [508] = {.lex_state = 133}, + [509] = {.lex_state = 187}, + [510] = {.lex_state = 149}, + [511] = {.lex_state = 149}, + [512] = {.lex_state = 149}, + [513] = {.lex_state = 150}, + [514] = {.lex_state = 149}, + [515] = {.lex_state = 171}, + [516] = {.lex_state = 149}, + [517] = {.lex_state = 171}, + [518] = {.lex_state = 149}, + [519] = {.lex_state = 171}, + [520] = {.lex_state = 168}, + [521] = {.lex_state = 146}, + [522] = {.lex_state = 168}, + [523] = {.lex_state = 150}, + [524] = {.lex_state = 133}, + [525] = {.lex_state = 168}, + [526] = {.lex_state = 171}, + [527] = {.lex_state = 149}, + [528] = {.lex_state = 168}, + [529] = {.lex_state = 171}, + [530] = {.lex_state = 149}, + [531] = {.lex_state = 168}, + [532] = {.lex_state = 171}, + [533] = {.lex_state = 149}, + [534] = {.lex_state = 168}, + [535] = {.lex_state = 151}, + [536] = {.lex_state = 136}, + [537] = {.lex_state = 145}, + [538] = {.lex_state = 168}, + [539] = {.lex_state = 136}, + [540] = {.lex_state = 168}, + [541] = {.lex_state = 145}, + [542] = {.lex_state = 168}, + [543] = {.lex_state = 151}, + [544] = {.lex_state = 171}, + [545] = {.lex_state = 149}, + [546] = {.lex_state = 151}, + [547] = {.lex_state = 149}, + [548] = {.lex_state = 145}, + [549] = {.lex_state = 149}, + [550] = {.lex_state = 145}, + [551] = {.lex_state = 149}, + [552] = {.lex_state = 183}, + [553] = {.lex_state = 193}, + [554] = {.lex_state = 165}, + [555] = {.lex_state = 136}, + [556] = {.lex_state = 151}, + [557] = {.lex_state = 136}, + [558] = {.lex_state = 136}, + [559] = {.lex_state = 136}, + [560] = {.lex_state = 136}, + [561] = {.lex_state = 136}, + [562] = {.lex_state = 136}, + [563] = {.lex_state = 136}, + [564] = {.lex_state = 136}, + [565] = {.lex_state = 136}, + [566] = {.lex_state = 136}, + [567] = {.lex_state = 136}, + [568] = {.lex_state = 136}, + [569] = {.lex_state = 151}, + [570] = {.lex_state = 136}, + [571] = {.lex_state = 116}, + [572] = {.lex_state = 171}, + [573] = {.lex_state = 171}, + [574] = {.lex_state = 184}, + [575] = {.lex_state = 184}, + [576] = {.lex_state = 184}, + [577] = {.lex_state = 171}, + [578] = {.lex_state = 171}, + [579] = {.lex_state = 171}, + [580] = {.lex_state = 184}, + [581] = {.lex_state = 184}, + [582] = {.lex_state = 184}, + [583] = {.lex_state = 171}, + [584] = {.lex_state = 171}, + [585] = {.lex_state = 184}, + [586] = {.lex_state = 184}, + [587] = {.lex_state = 184}, + [588] = {.lex_state = 171}, + [589] = {.lex_state = 171}, + [590] = {.lex_state = 136}, + [591] = {.lex_state = 188}, + [592] = {.lex_state = 188}, + [593] = {.lex_state = 165}, + [594] = {.lex_state = 136}, + [595] = {.lex_state = 151}, + [596] = {.lex_state = 184}, + [597] = {.lex_state = 136}, + [598] = {.lex_state = 136}, + [599] = {.lex_state = 136}, + [600] = {.lex_state = 136}, + [601] = {.lex_state = 136}, + [602] = {.lex_state = 136}, + [603] = {.lex_state = 136}, + [604] = {.lex_state = 136}, + [605] = {.lex_state = 136}, + [606] = {.lex_state = 136}, + [607] = {.lex_state = 136}, + [608] = {.lex_state = 136}, + [609] = {.lex_state = 151}, + [610] = {.lex_state = 185}, + [611] = {.lex_state = 188}, + [612] = {.lex_state = 186}, + [613] = {.lex_state = 193}, + [614] = {.lex_state = 151}, + [615] = {.lex_state = 136}, + [616] = {.lex_state = 185}, + [617] = {.lex_state = 187}, + [618] = {.lex_state = 187}, + [619] = {.lex_state = 165}, + [620] = {.lex_state = 187}, + [621] = {.lex_state = 193}, + [622] = {.lex_state = 186}, + [623] = {.lex_state = 145}, + [624] = {.lex_state = 146}, + [625] = {.lex_state = 124}, + [626] = {.lex_state = 145}, + [627] = {.lex_state = 116}, + [628] = {.lex_state = 116}, + [629] = {.lex_state = 168}, + [630] = {.lex_state = 124}, + [631] = {.lex_state = 149}, + [632] = {.lex_state = 136}, + [633] = {.lex_state = 136}, + [634] = {.lex_state = 136}, + [635] = {.lex_state = 185}, + [636] = {.lex_state = 136}, + [637] = {.lex_state = 145}, + [638] = {.lex_state = 136}, + [639] = {.lex_state = 145}, + [640] = {.lex_state = 145}, + [641] = {.lex_state = 145}, + [642] = {.lex_state = 116}, + [643] = {.lex_state = 185}, + [644] = {.lex_state = 149}, + [645] = {.lex_state = 149}, + [646] = {.lex_state = 171}, + [647] = {.lex_state = 171}, + [648] = {.lex_state = 145}, + [649] = {.lex_state = 151}, + [650] = {.lex_state = 145}, + [651] = {.lex_state = 149}, + [652] = {.lex_state = 145}, + [653] = {.lex_state = 171}, + [654] = {.lex_state = 171}, + [655] = {.lex_state = 149}, + [656] = {.lex_state = 145}, + [657] = {.lex_state = 171}, + [658] = {.lex_state = 171}, + [659] = {.lex_state = 149}, + [660] = {.lex_state = 165}, + [661] = {.lex_state = 136}, + [662] = {.lex_state = 187}, + [663] = {.lex_state = 136}, + [664] = {.lex_state = 195}, + [665] = {.lex_state = 136}, + [666] = {.lex_state = 136}, + [667] = {.lex_state = 136}, + [668] = {.lex_state = 136}, + [669] = {.lex_state = 136}, + [670] = {.lex_state = 136}, + [671] = {.lex_state = 136}, + [672] = {.lex_state = 136}, + [673] = {.lex_state = 136}, + [674] = {.lex_state = 136}, + [675] = {.lex_state = 136}, + [676] = {.lex_state = 136}, + [677] = {.lex_state = 136}, + [678] = {.lex_state = 187}, + [679] = {.lex_state = 187}, + [680] = {.lex_state = 165}, + [681] = {.lex_state = 136}, + [682] = {.lex_state = 136}, + [683] = {.lex_state = 136}, + [684] = {.lex_state = 185}, + [685] = {.lex_state = 136}, + [686] = {.lex_state = 136}, + [687] = {.lex_state = 185}, + [688] = {.lex_state = 145}, + [689] = {.lex_state = 185}, + [690] = {.lex_state = 145}, + [691] = {.lex_state = 165}, + [692] = {.lex_state = 136}, + [693] = {.lex_state = 185}, + [694] = {.lex_state = 136}, + [695] = {.lex_state = 136}, + [696] = {.lex_state = 145}, + [697] = {.lex_state = 136}, + [698] = {.lex_state = 136}, + [699] = {.lex_state = 136}, + [700] = {.lex_state = 136}, + [701] = {.lex_state = 136}, + [702] = {.lex_state = 136}, + [703] = {.lex_state = 136}, + [704] = {.lex_state = 136}, + [705] = {.lex_state = 136}, + [706] = {.lex_state = 136}, + [707] = {.lex_state = 185}, + [708] = {.lex_state = 185}, + [709] = {.lex_state = 145}, + [710] = {.lex_state = 136}, + [711] = {.lex_state = 145}, + [712] = {.lex_state = 145}, + [713] = {.lex_state = 145}, + [714] = {.lex_state = 185}, + [715] = {.lex_state = 145}, + [716] = {.lex_state = 145}, + [717] = {.lex_state = 116}, + [718] = {.lex_state = 145}, + [719] = {.lex_state = 145}, + [720] = {.lex_state = 136}, + [721] = {.lex_state = 145}, + [722] = {.lex_state = 151}, + [723] = {.lex_state = 151}, + [724] = {.lex_state = 145}, + [725] = {.lex_state = 145}, + [726] = {.lex_state = 165}, + [727] = {.lex_state = 195}, + [728] = {.lex_state = 145}, + [729] = {.lex_state = 151}, + [730] = {.lex_state = 183}, + [731] = {.lex_state = 195}, + [732] = {.lex_state = 187}, + [733] = {.lex_state = 195}, + [734] = {.lex_state = 193}, + [735] = {.lex_state = 151}, + [736] = {.lex_state = 185}, + [737] = {.lex_state = 151}, + [738] = {.lex_state = 151}, + [739] = {.lex_state = 151}, + [740] = {.lex_state = 151}, + [741] = {.lex_state = 151}, + [742] = {.lex_state = 151}, + [743] = {.lex_state = 151}, + [744] = {.lex_state = 151}, + [745] = {.lex_state = 151}, + [746] = {.lex_state = 195}, + [747] = {.lex_state = 151}, + [748] = {.lex_state = 187}, + [749] = {.lex_state = 188}, + [750] = {.lex_state = 187}, + [751] = {.lex_state = 165}, + [752] = {.lex_state = 187}, + [753] = {.lex_state = 187}, + [754] = {.lex_state = 187}, + [755] = {.lex_state = 187}, + [756] = {.lex_state = 136}, + [757] = {.lex_state = 165}, + [758] = {.lex_state = 183}, + [759] = {.lex_state = 186}, + [760] = {.lex_state = 193}, + [761] = {.lex_state = 185}, + [762] = {.lex_state = 193}, + [763] = {.lex_state = 193}, + [764] = {.lex_state = 193}, + [765] = {.lex_state = 193}, + [766] = {.lex_state = 193}, + [767] = {.lex_state = 193}, + [768] = {.lex_state = 193}, + [769] = {.lex_state = 193}, + [770] = {.lex_state = 193}, + [771] = {.lex_state = 193}, + [772] = {.lex_state = 186}, + [773] = {.lex_state = 195}, [774] = {.lex_state = 193}, - [775] = {.lex_state = 147}, - [776] = {.lex_state = 134}, - [777] = {.lex_state = 134}, - [778] = {.lex_state = 146}, - [779] = {.lex_state = 146}, - [780] = {.lex_state = 146}, - [781] = {.lex_state = 146}, - [782] = {.lex_state = 146}, - [783] = {.lex_state = 166}, - [784] = {.lex_state = 181}, - [785] = {.lex_state = 166}, - [786] = {.lex_state = 181}, - [787] = {.lex_state = 166}, - [788] = {.lex_state = 169}, - [789] = {.lex_state = 166}, - [790] = {.lex_state = 169}, - [791] = {.lex_state = 166}, - [792] = {.lex_state = 169}, - [793] = {.lex_state = 166}, - [794] = {.lex_state = 166}, - [795] = {.lex_state = 147}, - [796] = {.lex_state = 166}, - [797] = {.lex_state = 143}, - [798] = {.lex_state = 166}, - [799] = {.lex_state = 143}, - [800] = {.lex_state = 166}, - [801] = {.lex_state = 146}, - [802] = {.lex_state = 146}, - [803] = {.lex_state = 146}, - [804] = {.lex_state = 182}, - [805] = {.lex_state = 134}, - [806] = {.lex_state = 161}, - [807] = {.lex_state = 147}, - [808] = {.lex_state = 184}, - [809] = {.lex_state = 147}, - [810] = {.lex_state = 147}, - [811] = {.lex_state = 147}, - [812] = {.lex_state = 147}, - [813] = {.lex_state = 147}, - [814] = {.lex_state = 147}, - [815] = {.lex_state = 147}, - [816] = {.lex_state = 147}, - [817] = {.lex_state = 147}, - [818] = {.lex_state = 147}, - [819] = {.lex_state = 169}, - [820] = {.lex_state = 169}, - [821] = {.lex_state = 169}, - [822] = {.lex_state = 169}, - [823] = {.lex_state = 183}, - [824] = {.lex_state = 183}, - [825] = {.lex_state = 183}, - [826] = {.lex_state = 183}, - [827] = {.lex_state = 183}, - [828] = {.lex_state = 183}, - [829] = {.lex_state = 134}, - [830] = {.lex_state = 161}, - [831] = {.lex_state = 147}, - [832] = {.lex_state = 184}, - [833] = {.lex_state = 147}, - [834] = {.lex_state = 147}, - [835] = {.lex_state = 147}, - [836] = {.lex_state = 147}, - [837] = {.lex_state = 147}, - [838] = {.lex_state = 147}, - [839] = {.lex_state = 147}, - [840] = {.lex_state = 147}, - [841] = {.lex_state = 147}, - [842] = {.lex_state = 147}, - [843] = {.lex_state = 187}, - [844] = {.lex_state = 192}, - [845] = {.lex_state = 183}, - [846] = {.lex_state = 147}, - [847] = {.lex_state = 186}, - [848] = {.lex_state = 192}, - [849] = {.lex_state = 161}, - [850] = {.lex_state = 186}, - [851] = {.lex_state = 143}, - [852] = {.lex_state = 134}, - [853] = {.lex_state = 161}, - [854] = {.lex_state = 186}, - [855] = {.lex_state = 186}, - [856] = {.lex_state = 184}, - [857] = {.lex_state = 186}, - [858] = {.lex_state = 186}, - [859] = {.lex_state = 186}, - [860] = {.lex_state = 186}, - [861] = {.lex_state = 186}, - [862] = {.lex_state = 186}, - [863] = {.lex_state = 186}, - [864] = {.lex_state = 186}, - [865] = {.lex_state = 186}, - [866] = {.lex_state = 194}, - [867] = {.lex_state = 194}, - [868] = {.lex_state = 186}, - [869] = {.lex_state = 146}, - [870] = {.lex_state = 146}, - [871] = {.lex_state = 146}, - [872] = {.lex_state = 122}, - [873] = {.lex_state = 114}, - [874] = {.lex_state = 114}, - [875] = {.lex_state = 166}, - [876] = {.lex_state = 134}, - [877] = {.lex_state = 134}, - [878] = {.lex_state = 134}, - [879] = {.lex_state = 184}, - [880] = {.lex_state = 134}, - [881] = {.lex_state = 143}, - [882] = {.lex_state = 134}, - [883] = {.lex_state = 143}, - [884] = {.lex_state = 143}, - [885] = {.lex_state = 143}, - [886] = {.lex_state = 114}, - [887] = {.lex_state = 184}, - [888] = {.lex_state = 166}, - [889] = {.lex_state = 166}, - [890] = {.lex_state = 143}, - [891] = {.lex_state = 147}, - [892] = {.lex_state = 143}, - [893] = {.lex_state = 166}, - [894] = {.lex_state = 146}, - [895] = {.lex_state = 134}, - [896] = {.lex_state = 134}, - [897] = {.lex_state = 184}, - [898] = {.lex_state = 143}, - [899] = {.lex_state = 134}, - [900] = {.lex_state = 114}, - [901] = {.lex_state = 143}, - [902] = {.lex_state = 146}, - [903] = {.lex_state = 147}, - [904] = {.lex_state = 146}, - [905] = {.lex_state = 146}, - [906] = {.lex_state = 143}, - [907] = {.lex_state = 143}, - [908] = {.lex_state = 143}, - [909] = {.lex_state = 143}, - [910] = {.lex_state = 147}, - [911] = {.lex_state = 146}, - [912] = {.lex_state = 143}, - [913] = {.lex_state = 169}, - [914] = {.lex_state = 169}, - [915] = {.lex_state = 146}, - [916] = {.lex_state = 143}, - [917] = {.lex_state = 143}, - [918] = {.lex_state = 143}, - [919] = {.lex_state = 169}, - [920] = {.lex_state = 169}, - [921] = {.lex_state = 143}, - [922] = {.lex_state = 143}, - [923] = {.lex_state = 143}, - [924] = {.lex_state = 169}, - [925] = {.lex_state = 169}, - [926] = {.lex_state = 161}, - [927] = {.lex_state = 134}, - [928] = {.lex_state = 186}, - [929] = {.lex_state = 143}, - [930] = {.lex_state = 134}, - [931] = {.lex_state = 134}, - [932] = {.lex_state = 134}, - [933] = {.lex_state = 134}, - [934] = {.lex_state = 134}, - [935] = {.lex_state = 134}, - [936] = {.lex_state = 134}, - [937] = {.lex_state = 134}, - [938] = {.lex_state = 134}, - [939] = {.lex_state = 134}, - [940] = {.lex_state = 134}, - [941] = {.lex_state = 134}, - [942] = {.lex_state = 186}, - [943] = {.lex_state = 143}, - [944] = {.lex_state = 134}, - [945] = {.lex_state = 161}, - [946] = {.lex_state = 184}, - [947] = {.lex_state = 143}, - [948] = {.lex_state = 184}, - [949] = {.lex_state = 184}, - [950] = {.lex_state = 184}, - [951] = {.lex_state = 184}, - [952] = {.lex_state = 184}, - [953] = {.lex_state = 184}, - [954] = {.lex_state = 184}, - [955] = {.lex_state = 184}, - [956] = {.lex_state = 184}, - [957] = {.lex_state = 184}, - [958] = {.lex_state = 184}, - [959] = {.lex_state = 143}, - [960] = {.lex_state = 186}, - [961] = {.lex_state = 186}, - [962] = {.lex_state = 143}, - [963] = {.lex_state = 184}, - [964] = {.lex_state = 186}, - [965] = {.lex_state = 143}, - [966] = {.lex_state = 147}, - [967] = {.lex_state = 134}, - [968] = {.lex_state = 195}, - [969] = {.lex_state = 147}, - [970] = {.lex_state = 143}, - [971] = {.lex_state = 147}, - [972] = {.lex_state = 134}, - [973] = {.lex_state = 194}, - [974] = {.lex_state = 186}, - [975] = {.lex_state = 194}, - [976] = {.lex_state = 134}, - [977] = {.lex_state = 192}, - [978] = {.lex_state = 134}, - [979] = {.lex_state = 134}, - [980] = {.lex_state = 194}, - [981] = {.lex_state = 147}, - [982] = {.lex_state = 147}, - [983] = {.lex_state = 193}, - [984] = {.lex_state = 147}, - [985] = {.lex_state = 147}, - [986] = {.lex_state = 147}, - [987] = {.lex_state = 166}, - [988] = {.lex_state = 166}, - [989] = {.lex_state = 166}, - [990] = {.lex_state = 166}, - [991] = {.lex_state = 166}, - [992] = {.lex_state = 166}, - [993] = {.lex_state = 166}, - [994] = {.lex_state = 166}, - [995] = {.lex_state = 147}, - [996] = {.lex_state = 134}, - [997] = {.lex_state = 169}, - [998] = {.lex_state = 169}, - [999] = {.lex_state = 147}, - [1000] = {.lex_state = 134}, - [1001] = {.lex_state = 187}, - [1002] = {.lex_state = 183}, - [1003] = {.lex_state = 186}, - [1004] = {.lex_state = 161}, - [1005] = {.lex_state = 186}, - [1006] = {.lex_state = 134}, - [1007] = {.lex_state = 146}, - [1008] = {.lex_state = 169}, - [1009] = {.lex_state = 169}, - [1010] = {.lex_state = 146}, - [1011] = {.lex_state = 146}, - [1012] = {.lex_state = 169}, - [1013] = {.lex_state = 169}, - [1014] = {.lex_state = 146}, - [1015] = {.lex_state = 146}, - [1016] = {.lex_state = 169}, - [1017] = {.lex_state = 169}, - [1018] = {.lex_state = 146}, - [1019] = {.lex_state = 146}, - [1020] = {.lex_state = 146}, - [1021] = {.lex_state = 146}, - [1022] = {.lex_state = 134}, - [1023] = {.lex_state = 134}, - [1024] = {.lex_state = 184}, - [1025] = {.lex_state = 143}, - [1026] = {.lex_state = 134}, - [1027] = {.lex_state = 114}, - [1028] = {.lex_state = 143}, - [1029] = {.lex_state = 166}, - [1030] = {.lex_state = 147}, - [1031] = {.lex_state = 166}, - [1032] = {.lex_state = 166}, - [1033] = {.lex_state = 143}, - [1034] = {.lex_state = 143}, - [1035] = {.lex_state = 147}, - [1036] = {.lex_state = 166}, - [1037] = {.lex_state = 166}, - [1038] = {.lex_state = 169}, - [1039] = {.lex_state = 169}, - [1040] = {.lex_state = 146}, - [1041] = {.lex_state = 186}, - [1042] = {.lex_state = 186}, - [1043] = {.lex_state = 143}, - [1044] = {.lex_state = 184}, - [1045] = {.lex_state = 146}, - [1046] = {.lex_state = 134}, - [1047] = {.lex_state = 186}, - [1048] = {.lex_state = 134}, - [1049] = {.lex_state = 143}, - [1050] = {.lex_state = 147}, - [1051] = {.lex_state = 146}, - [1052] = {.lex_state = 146}, - [1053] = {.lex_state = 184}, - [1054] = {.lex_state = 146}, - [1055] = {.lex_state = 143}, - [1056] = {.lex_state = 143}, - [1057] = {.lex_state = 143}, - [1058] = {.lex_state = 143}, - [1059] = {.lex_state = 143}, - [1060] = {.lex_state = 143}, - [1061] = {.lex_state = 134}, - [1062] = {.lex_state = 161}, - [1063] = {.lex_state = 134}, - [1064] = {.lex_state = 134}, - [1065] = {.lex_state = 134}, - [1066] = {.lex_state = 184}, - [1067] = {.lex_state = 134}, - [1068] = {.lex_state = 134}, - [1069] = {.lex_state = 184}, - [1070] = {.lex_state = 143}, - [1071] = {.lex_state = 186}, - [1072] = {.lex_state = 184}, - [1073] = {.lex_state = 186}, - [1074] = {.lex_state = 186}, - [1075] = {.lex_state = 186}, - [1076] = {.lex_state = 186}, - [1077] = {.lex_state = 186}, - [1078] = {.lex_state = 186}, - [1079] = {.lex_state = 186}, - [1080] = {.lex_state = 186}, - [1081] = {.lex_state = 186}, - [1082] = {.lex_state = 186}, - [1083] = {.lex_state = 143}, - [1084] = {.lex_state = 184}, - [1085] = {.lex_state = 134}, - [1086] = {.lex_state = 143}, - [1087] = {.lex_state = 143}, - [1088] = {.lex_state = 143}, - [1089] = {.lex_state = 143}, - [1090] = {.lex_state = 195}, - [1091] = {.lex_state = 147}, - [1092] = {.lex_state = 143}, - [1093] = {.lex_state = 186}, - [1094] = {.lex_state = 143}, - [1095] = {.lex_state = 186}, - [1096] = {.lex_state = 195}, - [1097] = {.lex_state = 147}, - [1098] = {.lex_state = 186}, - [1099] = {.lex_state = 194}, - [1100] = {.lex_state = 186}, - [1101] = {.lex_state = 147}, - [1102] = {.lex_state = 192}, - [1103] = {.lex_state = 194}, - [1104] = {.lex_state = 134}, - [1105] = {.lex_state = 147}, - [1106] = {.lex_state = 147}, - [1107] = {.lex_state = 186}, - [1108] = {.lex_state = 146}, - [1109] = {.lex_state = 146}, - [1110] = {.lex_state = 146}, - [1111] = {.lex_state = 169}, - [1112] = {.lex_state = 169}, - [1113] = {.lex_state = 146}, - [1114] = {.lex_state = 146}, - [1115] = {.lex_state = 146}, - [1116] = {.lex_state = 169}, - [1117] = {.lex_state = 169}, - [1118] = {.lex_state = 146}, - [1119] = {.lex_state = 146}, - [1120] = {.lex_state = 146}, - [1121] = {.lex_state = 169}, - [1122] = {.lex_state = 169}, - [1123] = {.lex_state = 166}, - [1124] = {.lex_state = 169}, - [1125] = {.lex_state = 169}, - [1126] = {.lex_state = 146}, - [1127] = {.lex_state = 166}, - [1128] = {.lex_state = 169}, - [1129] = {.lex_state = 169}, - [1130] = {.lex_state = 146}, - [1131] = {.lex_state = 166}, - [1132] = {.lex_state = 169}, - [1133] = {.lex_state = 169}, - [1134] = {.lex_state = 146}, - [1135] = {.lex_state = 186}, - [1136] = {.lex_state = 186}, - [1137] = {.lex_state = 143}, - [1138] = {.lex_state = 184}, - [1139] = {.lex_state = 166}, - [1140] = {.lex_state = 134}, - [1141] = {.lex_state = 186}, - [1142] = {.lex_state = 134}, - [1143] = {.lex_state = 143}, - [1144] = {.lex_state = 147}, - [1145] = {.lex_state = 166}, - [1146] = {.lex_state = 166}, - [1147] = {.lex_state = 184}, - [1148] = {.lex_state = 166}, - [1149] = {.lex_state = 169}, - [1150] = {.lex_state = 169}, - [1151] = {.lex_state = 143}, - [1152] = {.lex_state = 143}, - [1153] = {.lex_state = 146}, - [1154] = {.lex_state = 143}, - [1155] = {.lex_state = 134}, - [1156] = {.lex_state = 195}, - [1157] = {.lex_state = 147}, - [1158] = {.lex_state = 143}, - [1159] = {.lex_state = 186}, - [1160] = {.lex_state = 134}, - [1161] = {.lex_state = 134}, - [1162] = {.lex_state = 184}, - [1163] = {.lex_state = 143}, - [1164] = {.lex_state = 134}, - [1165] = {.lex_state = 143}, - [1166] = {.lex_state = 143}, - [1167] = {.lex_state = 143}, - [1168] = {.lex_state = 134}, - [1169] = {.lex_state = 184}, - [1170] = {.lex_state = 134}, - [1171] = {.lex_state = 134}, - [1172] = {.lex_state = 134}, - [1173] = {.lex_state = 184}, - [1174] = {.lex_state = 134}, - [1175] = {.lex_state = 134}, - [1176] = {.lex_state = 184}, - [1177] = {.lex_state = 114}, - [1178] = {.lex_state = 143}, - [1179] = {.lex_state = 186}, - [1180] = {.lex_state = 195}, - [1181] = {.lex_state = 147}, - [1182] = {.lex_state = 143}, - [1183] = {.lex_state = 143}, - [1184] = {.lex_state = 143}, - [1185] = {.lex_state = 186}, - [1186] = {.lex_state = 186}, - [1187] = {.lex_state = 195}, - [1188] = {.lex_state = 146}, - [1189] = {.lex_state = 146}, - [1190] = {.lex_state = 146}, - [1191] = {.lex_state = 146}, - [1192] = {.lex_state = 146}, - [1193] = {.lex_state = 146}, - [1194] = {.lex_state = 166}, - [1195] = {.lex_state = 166}, - [1196] = {.lex_state = 166}, - [1197] = {.lex_state = 169}, - [1198] = {.lex_state = 169}, - [1199] = {.lex_state = 166}, - [1200] = {.lex_state = 166}, - [1201] = {.lex_state = 166}, - [1202] = {.lex_state = 169}, - [1203] = {.lex_state = 169}, - [1204] = {.lex_state = 166}, - [1205] = {.lex_state = 166}, - [1206] = {.lex_state = 166}, - [1207] = {.lex_state = 169}, - [1208] = {.lex_state = 169}, - [1209] = {.lex_state = 143}, - [1210] = {.lex_state = 143}, - [1211] = {.lex_state = 166}, - [1212] = {.lex_state = 143}, - [1213] = {.lex_state = 134}, - [1214] = {.lex_state = 195}, - [1215] = {.lex_state = 147}, - [1216] = {.lex_state = 143}, - [1217] = {.lex_state = 134}, - [1218] = {.lex_state = 134}, - [1219] = {.lex_state = 134}, - [1220] = {.lex_state = 184}, - [1221] = {.lex_state = 134}, - [1222] = {.lex_state = 134}, - [1223] = {.lex_state = 184}, - [1224] = {.lex_state = 146}, - [1225] = {.lex_state = 146}, - [1226] = {.lex_state = 146}, - [1227] = {.lex_state = 186}, - [1228] = {.lex_state = 143}, - [1229] = {.lex_state = 186}, - [1230] = {.lex_state = 195}, - [1231] = {.lex_state = 147}, - [1232] = {.lex_state = 186}, - [1233] = {.lex_state = 186}, - [1234] = {.lex_state = 143}, - [1235] = {.lex_state = 184}, - [1236] = {.lex_state = 186}, - [1237] = {.lex_state = 143}, - [1238] = {.lex_state = 147}, - [1239] = {.lex_state = 143}, - [1240] = {.lex_state = 186}, - [1241] = {.lex_state = 134}, - [1242] = {.lex_state = 134}, - [1243] = {.lex_state = 184}, - [1244] = {.lex_state = 143}, - [1245] = {.lex_state = 134}, - [1246] = {.lex_state = 143}, - [1247] = {.lex_state = 143}, - [1248] = {.lex_state = 143}, - [1249] = {.lex_state = 143}, - [1250] = {.lex_state = 186}, - [1251] = {.lex_state = 186}, - [1252] = {.lex_state = 195}, - [1253] = {.lex_state = 143}, - [1254] = {.lex_state = 143}, - [1255] = {.lex_state = 186}, - [1256] = {.lex_state = 186}, - [1257] = {.lex_state = 166}, - [1258] = {.lex_state = 166}, - [1259] = {.lex_state = 166}, - [1260] = {.lex_state = 166}, - [1261] = {.lex_state = 166}, - [1262] = {.lex_state = 166}, - [1263] = {.lex_state = 134}, - [1264] = {.lex_state = 134}, - [1265] = {.lex_state = 134}, - [1266] = {.lex_state = 184}, - [1267] = {.lex_state = 134}, - [1268] = {.lex_state = 134}, - [1269] = {.lex_state = 184}, - [1270] = {.lex_state = 166}, - [1271] = {.lex_state = 166}, - [1272] = {.lex_state = 166}, - [1273] = {.lex_state = 186}, - [1274] = {.lex_state = 143}, - [1275] = {.lex_state = 186}, - [1276] = {.lex_state = 195}, - [1277] = {.lex_state = 147}, - [1278] = {.lex_state = 134}, - [1279] = {.lex_state = 134}, - [1280] = {.lex_state = 184}, - [1281] = {.lex_state = 143}, - [1282] = {.lex_state = 134}, - [1283] = {.lex_state = 143}, - [1284] = {.lex_state = 143}, - [1285] = {.lex_state = 143}, - [1286] = {.lex_state = 146}, - [1287] = {.lex_state = 146}, - [1288] = {.lex_state = 143}, - [1289] = {.lex_state = 186}, - [1290] = {.lex_state = 186}, - [1291] = {.lex_state = 195}, - [1292] = {.lex_state = 143}, - [1293] = {.lex_state = 143}, - [1294] = {.lex_state = 143}, - [1295] = {.lex_state = 195}, - [1296] = {.lex_state = 147}, - [1297] = {.lex_state = 143}, - [1298] = {.lex_state = 186}, - [1299] = {.lex_state = 186}, - [1300] = {.lex_state = 143}, - [1301] = {.lex_state = 184}, - [1302] = {.lex_state = 186}, - [1303] = {.lex_state = 143}, - [1304] = {.lex_state = 147}, - [1305] = {.lex_state = 143}, - [1306] = {.lex_state = 186}, - [1307] = {.lex_state = 186}, - [1308] = {.lex_state = 143}, - [1309] = {.lex_state = 143}, - [1310] = {.lex_state = 186}, - [1311] = {.lex_state = 134}, - [1312] = {.lex_state = 134}, - [1313] = {.lex_state = 184}, - [1314] = {.lex_state = 143}, - [1315] = {.lex_state = 134}, - [1316] = {.lex_state = 143}, - [1317] = {.lex_state = 143}, - [1318] = {.lex_state = 143}, - [1319] = {.lex_state = 166}, - [1320] = {.lex_state = 166}, - [1321] = {.lex_state = 143}, - [1322] = {.lex_state = 186}, - [1323] = {.lex_state = 186}, - [1324] = {.lex_state = 195}, - [1325] = {.lex_state = 186}, - [1326] = {.lex_state = 186}, - [1327] = {.lex_state = 143}, - [1328] = {.lex_state = 184}, - [1329] = {.lex_state = 186}, - [1330] = {.lex_state = 143}, - [1331] = {.lex_state = 147}, - [1332] = {.lex_state = 146}, - [1333] = {.lex_state = 146}, - [1334] = {.lex_state = 143}, - [1335] = {.lex_state = 186}, - [1336] = {.lex_state = 186}, - [1337] = {.lex_state = 143}, - [1338] = {.lex_state = 143}, - [1339] = {.lex_state = 186}, - [1340] = {.lex_state = 195}, - [1341] = {.lex_state = 147}, - [1342] = {.lex_state = 143}, - [1343] = {.lex_state = 143}, - [1344] = {.lex_state = 143}, - [1345] = {.lex_state = 195}, - [1346] = {.lex_state = 147}, - [1347] = {.lex_state = 143}, - [1348] = {.lex_state = 143}, - [1349] = {.lex_state = 186}, - [1350] = {.lex_state = 143}, - [1351] = {.lex_state = 143}, - [1352] = {.lex_state = 186}, - [1353] = {.lex_state = 186}, - [1354] = {.lex_state = 143}, - [1355] = {.lex_state = 184}, - [1356] = {.lex_state = 186}, - [1357] = {.lex_state = 143}, - [1358] = {.lex_state = 147}, - [1359] = {.lex_state = 166}, - [1360] = {.lex_state = 166}, - [1361] = {.lex_state = 143}, - [1362] = {.lex_state = 186}, - [1363] = {.lex_state = 186}, - [1364] = {.lex_state = 143}, - [1365] = {.lex_state = 143}, - [1366] = {.lex_state = 143}, - [1367] = {.lex_state = 195}, - [1368] = {.lex_state = 147}, - [1369] = {.lex_state = 143}, - [1370] = {.lex_state = 146}, - [1371] = {.lex_state = 143}, - [1372] = {.lex_state = 186}, - [1373] = {.lex_state = 143}, - [1374] = {.lex_state = 143}, - [1375] = {.lex_state = 186}, - [1376] = {.lex_state = 186}, - [1377] = {.lex_state = 195}, - [1378] = {.lex_state = 114}, - [1379] = {.lex_state = 143}, - [1380] = {.lex_state = 186}, - [1381] = {.lex_state = 195}, - [1382] = {.lex_state = 147}, - [1383] = {.lex_state = 143}, - [1384] = {.lex_state = 143}, - [1385] = {.lex_state = 143}, - [1386] = {.lex_state = 143}, - [1387] = {.lex_state = 143}, - [1388] = {.lex_state = 195}, - [1389] = {.lex_state = 147}, - [1390] = {.lex_state = 143}, - [1391] = {.lex_state = 166}, - [1392] = {.lex_state = 143}, - [1393] = {.lex_state = 186}, - [1394] = {.lex_state = 146}, - [1395] = {.lex_state = 143}, - [1396] = {.lex_state = 186}, - [1397] = {.lex_state = 195}, - [1398] = {.lex_state = 147}, - [1399] = {.lex_state = 146}, - [1400] = {.lex_state = 143}, - [1401] = {.lex_state = 143}, - [1402] = {.lex_state = 186}, - [1403] = {.lex_state = 186}, - [1404] = {.lex_state = 143}, - [1405] = {.lex_state = 143}, - [1406] = {.lex_state = 186}, - [1407] = {.lex_state = 186}, - [1408] = {.lex_state = 195}, - [1409] = {.lex_state = 166}, - [1410] = {.lex_state = 143}, - [1411] = {.lex_state = 186}, - [1412] = {.lex_state = 195}, - [1413] = {.lex_state = 147}, - [1414] = {.lex_state = 166}, - [1415] = {.lex_state = 143}, - [1416] = {.lex_state = 143}, - [1417] = {.lex_state = 143}, - [1418] = {.lex_state = 186}, - [1419] = {.lex_state = 186}, - [1420] = {.lex_state = 195}, - [1421] = {.lex_state = 146}, - [1422] = {.lex_state = 143}, - [1423] = {.lex_state = 186}, - [1424] = {.lex_state = 143}, - [1425] = {.lex_state = 186}, - [1426] = {.lex_state = 186}, - [1427] = {.lex_state = 143}, - [1428] = {.lex_state = 143}, - [1429] = {.lex_state = 186}, - [1430] = {.lex_state = 186}, - [1431] = {.lex_state = 195}, - [1432] = {.lex_state = 166}, - [1433] = {.lex_state = 143}, - [1434] = {.lex_state = 186}, - [1435] = {.lex_state = 186}, - [1436] = {.lex_state = 143}, - [1437] = {.lex_state = 143}, - [1438] = {.lex_state = 186}, - [1439] = {.lex_state = 143}, - [1440] = {.lex_state = 186}, - [1441] = {.lex_state = 186}, - [1442] = {.lex_state = 143}, - [1443] = {.lex_state = 186}, - [1444] = {.lex_state = 143}, - [1445] = {.lex_state = 143}, - [1446] = {.lex_state = 186}, - [1447] = {.lex_state = 143}, - [1448] = {.lex_state = 143}, + [775] = {.lex_state = 136}, + [776] = {.lex_state = 194}, + [777] = {.lex_state = 151}, + [778] = {.lex_state = 136}, + [779] = {.lex_state = 136}, + [780] = {.lex_state = 149}, + [781] = {.lex_state = 149}, + [782] = {.lex_state = 149}, + [783] = {.lex_state = 149}, + [784] = {.lex_state = 168}, + [785] = {.lex_state = 168}, + [786] = {.lex_state = 168}, + [787] = {.lex_state = 150}, + [788] = {.lex_state = 168}, + [789] = {.lex_state = 171}, + [790] = {.lex_state = 168}, + [791] = {.lex_state = 171}, + [792] = {.lex_state = 168}, + [793] = {.lex_state = 171}, + [794] = {.lex_state = 168}, + [795] = {.lex_state = 151}, + [796] = {.lex_state = 168}, + [797] = {.lex_state = 145}, + [798] = {.lex_state = 168}, + [799] = {.lex_state = 145}, + [800] = {.lex_state = 168}, + [801] = {.lex_state = 149}, + [802] = {.lex_state = 149}, + [803] = {.lex_state = 149}, + [804] = {.lex_state = 183}, + [805] = {.lex_state = 136}, + [806] = {.lex_state = 165}, + [807] = {.lex_state = 151}, + [808] = {.lex_state = 185}, + [809] = {.lex_state = 151}, + [810] = {.lex_state = 151}, + [811] = {.lex_state = 151}, + [812] = {.lex_state = 151}, + [813] = {.lex_state = 151}, + [814] = {.lex_state = 151}, + [815] = {.lex_state = 151}, + [816] = {.lex_state = 151}, + [817] = {.lex_state = 151}, + [818] = {.lex_state = 151}, + [819] = {.lex_state = 171}, + [820] = {.lex_state = 171}, + [821] = {.lex_state = 171}, + [822] = {.lex_state = 171}, + [823] = {.lex_state = 184}, + [824] = {.lex_state = 184}, + [825] = {.lex_state = 184}, + [826] = {.lex_state = 184}, + [827] = {.lex_state = 184}, + [828] = {.lex_state = 184}, + [829] = {.lex_state = 136}, + [830] = {.lex_state = 165}, + [831] = {.lex_state = 151}, + [832] = {.lex_state = 185}, + [833] = {.lex_state = 151}, + [834] = {.lex_state = 151}, + [835] = {.lex_state = 151}, + [836] = {.lex_state = 151}, + [837] = {.lex_state = 151}, + [838] = {.lex_state = 151}, + [839] = {.lex_state = 151}, + [840] = {.lex_state = 151}, + [841] = {.lex_state = 151}, + [842] = {.lex_state = 151}, + [843] = {.lex_state = 188}, + [844] = {.lex_state = 193}, + [845] = {.lex_state = 184}, + [846] = {.lex_state = 151}, + [847] = {.lex_state = 187}, + [848] = {.lex_state = 193}, + [849] = {.lex_state = 145}, + [850] = {.lex_state = 149}, + [851] = {.lex_state = 149}, + [852] = {.lex_state = 149}, + [853] = {.lex_state = 124}, + [854] = {.lex_state = 116}, + [855] = {.lex_state = 116}, + [856] = {.lex_state = 168}, + [857] = {.lex_state = 136}, + [858] = {.lex_state = 136}, + [859] = {.lex_state = 136}, + [860] = {.lex_state = 185}, + [861] = {.lex_state = 136}, + [862] = {.lex_state = 145}, + [863] = {.lex_state = 136}, + [864] = {.lex_state = 145}, + [865] = {.lex_state = 145}, + [866] = {.lex_state = 145}, + [867] = {.lex_state = 116}, + [868] = {.lex_state = 185}, + [869] = {.lex_state = 168}, + [870] = {.lex_state = 168}, + [871] = {.lex_state = 145}, + [872] = {.lex_state = 151}, + [873] = {.lex_state = 145}, + [874] = {.lex_state = 168}, + [875] = {.lex_state = 149}, + [876] = {.lex_state = 145}, + [877] = {.lex_state = 145}, + [878] = {.lex_state = 185}, + [879] = {.lex_state = 145}, + [880] = {.lex_state = 145}, + [881] = {.lex_state = 116}, + [882] = {.lex_state = 145}, + [883] = {.lex_state = 149}, + [884] = {.lex_state = 151}, + [885] = {.lex_state = 149}, + [886] = {.lex_state = 149}, + [887] = {.lex_state = 145}, + [888] = {.lex_state = 145}, + [889] = {.lex_state = 145}, + [890] = {.lex_state = 145}, + [891] = {.lex_state = 151}, + [892] = {.lex_state = 149}, + [893] = {.lex_state = 145}, + [894] = {.lex_state = 171}, + [895] = {.lex_state = 171}, + [896] = {.lex_state = 149}, + [897] = {.lex_state = 145}, + [898] = {.lex_state = 145}, + [899] = {.lex_state = 145}, + [900] = {.lex_state = 171}, + [901] = {.lex_state = 171}, + [902] = {.lex_state = 145}, + [903] = {.lex_state = 145}, + [904] = {.lex_state = 145}, + [905] = {.lex_state = 171}, + [906] = {.lex_state = 171}, + [907] = {.lex_state = 136}, + [908] = {.lex_state = 165}, + [909] = {.lex_state = 187}, + [910] = {.lex_state = 187}, + [911] = {.lex_state = 185}, + [912] = {.lex_state = 187}, + [913] = {.lex_state = 187}, + [914] = {.lex_state = 187}, + [915] = {.lex_state = 187}, + [916] = {.lex_state = 187}, + [917] = {.lex_state = 187}, + [918] = {.lex_state = 187}, + [919] = {.lex_state = 187}, + [920] = {.lex_state = 187}, + [921] = {.lex_state = 195}, + [922] = {.lex_state = 195}, + [923] = {.lex_state = 187}, + [924] = {.lex_state = 145}, + [925] = {.lex_state = 145}, + [926] = {.lex_state = 145}, + [927] = {.lex_state = 185}, + [928] = {.lex_state = 145}, + [929] = {.lex_state = 145}, + [930] = {.lex_state = 145}, + [931] = {.lex_state = 145}, + [932] = {.lex_state = 145}, + [933] = {.lex_state = 136}, + [934] = {.lex_state = 165}, + [935] = {.lex_state = 185}, + [936] = {.lex_state = 145}, + [937] = {.lex_state = 185}, + [938] = {.lex_state = 185}, + [939] = {.lex_state = 185}, + [940] = {.lex_state = 185}, + [941] = {.lex_state = 185}, + [942] = {.lex_state = 185}, + [943] = {.lex_state = 185}, + [944] = {.lex_state = 185}, + [945] = {.lex_state = 185}, + [946] = {.lex_state = 185}, + [947] = {.lex_state = 185}, + [948] = {.lex_state = 136}, + [949] = {.lex_state = 136}, + [950] = {.lex_state = 136}, + [951] = {.lex_state = 185}, + [952] = {.lex_state = 136}, + [953] = {.lex_state = 136}, + [954] = {.lex_state = 185}, + [955] = {.lex_state = 116}, + [956] = {.lex_state = 145}, + [957] = {.lex_state = 185}, + [958] = {.lex_state = 136}, + [959] = {.lex_state = 145}, + [960] = {.lex_state = 151}, + [961] = {.lex_state = 145}, + [962] = {.lex_state = 196}, + [963] = {.lex_state = 151}, + [964] = {.lex_state = 145}, + [965] = {.lex_state = 151}, + [966] = {.lex_state = 136}, + [967] = {.lex_state = 195}, + [968] = {.lex_state = 187}, + [969] = {.lex_state = 195}, + [970] = {.lex_state = 136}, + [971] = {.lex_state = 165}, + [972] = {.lex_state = 187}, + [973] = {.lex_state = 193}, + [974] = {.lex_state = 136}, + [975] = {.lex_state = 136}, + [976] = {.lex_state = 195}, + [977] = {.lex_state = 151}, + [978] = {.lex_state = 151}, + [979] = {.lex_state = 194}, + [980] = {.lex_state = 151}, + [981] = {.lex_state = 151}, + [982] = {.lex_state = 151}, + [983] = {.lex_state = 168}, + [984] = {.lex_state = 168}, + [985] = {.lex_state = 168}, + [986] = {.lex_state = 168}, + [987] = {.lex_state = 168}, + [988] = {.lex_state = 168}, + [989] = {.lex_state = 168}, + [990] = {.lex_state = 151}, + [991] = {.lex_state = 136}, + [992] = {.lex_state = 171}, + [993] = {.lex_state = 171}, + [994] = {.lex_state = 151}, + [995] = {.lex_state = 136}, + [996] = {.lex_state = 188}, + [997] = {.lex_state = 184}, + [998] = {.lex_state = 187}, + [999] = {.lex_state = 149}, + [1000] = {.lex_state = 171}, + [1001] = {.lex_state = 171}, + [1002] = {.lex_state = 149}, + [1003] = {.lex_state = 149}, + [1004] = {.lex_state = 171}, + [1005] = {.lex_state = 171}, + [1006] = {.lex_state = 149}, + [1007] = {.lex_state = 149}, + [1008] = {.lex_state = 171}, + [1009] = {.lex_state = 171}, + [1010] = {.lex_state = 149}, + [1011] = {.lex_state = 149}, + [1012] = {.lex_state = 149}, + [1013] = {.lex_state = 149}, + [1014] = {.lex_state = 145}, + [1015] = {.lex_state = 145}, + [1016] = {.lex_state = 185}, + [1017] = {.lex_state = 145}, + [1018] = {.lex_state = 145}, + [1019] = {.lex_state = 116}, + [1020] = {.lex_state = 145}, + [1021] = {.lex_state = 168}, + [1022] = {.lex_state = 151}, + [1023] = {.lex_state = 168}, + [1024] = {.lex_state = 168}, + [1025] = {.lex_state = 145}, + [1026] = {.lex_state = 145}, + [1027] = {.lex_state = 151}, + [1028] = {.lex_state = 168}, + [1029] = {.lex_state = 168}, + [1030] = {.lex_state = 171}, + [1031] = {.lex_state = 171}, + [1032] = {.lex_state = 149}, + [1033] = {.lex_state = 136}, + [1034] = {.lex_state = 136}, + [1035] = {.lex_state = 136}, + [1036] = {.lex_state = 185}, + [1037] = {.lex_state = 136}, + [1038] = {.lex_state = 136}, + [1039] = {.lex_state = 185}, + [1040] = {.lex_state = 149}, + [1041] = {.lex_state = 185}, + [1042] = {.lex_state = 149}, + [1043] = {.lex_state = 145}, + [1044] = {.lex_state = 185}, + [1045] = {.lex_state = 149}, + [1046] = {.lex_state = 136}, + [1047] = {.lex_state = 149}, + [1048] = {.lex_state = 136}, + [1049] = {.lex_state = 145}, + [1050] = {.lex_state = 151}, + [1051] = {.lex_state = 149}, + [1052] = {.lex_state = 149}, + [1053] = {.lex_state = 149}, + [1054] = {.lex_state = 145}, + [1055] = {.lex_state = 145}, + [1056] = {.lex_state = 145}, + [1057] = {.lex_state = 145}, + [1058] = {.lex_state = 145}, + [1059] = {.lex_state = 145}, + [1060] = {.lex_state = 187}, + [1061] = {.lex_state = 136}, + [1062] = {.lex_state = 145}, + [1063] = {.lex_state = 145}, + [1064] = {.lex_state = 185}, + [1065] = {.lex_state = 145}, + [1066] = {.lex_state = 151}, + [1067] = {.lex_state = 145}, + [1068] = {.lex_state = 185}, + [1069] = {.lex_state = 136}, + [1070] = {.lex_state = 145}, + [1071] = {.lex_state = 145}, + [1072] = {.lex_state = 185}, + [1073] = {.lex_state = 145}, + [1074] = {.lex_state = 145}, + [1075] = {.lex_state = 145}, + [1076] = {.lex_state = 145}, + [1077] = {.lex_state = 145}, + [1078] = {.lex_state = 136}, + [1079] = {.lex_state = 196}, + [1080] = {.lex_state = 151}, + [1081] = {.lex_state = 145}, + [1082] = {.lex_state = 145}, + [1083] = {.lex_state = 187}, + [1084] = {.lex_state = 196}, + [1085] = {.lex_state = 151}, + [1086] = {.lex_state = 187}, + [1087] = {.lex_state = 195}, + [1088] = {.lex_state = 187}, + [1089] = {.lex_state = 151}, + [1090] = {.lex_state = 165}, + [1091] = {.lex_state = 193}, + [1092] = {.lex_state = 195}, + [1093] = {.lex_state = 136}, + [1094] = {.lex_state = 151}, + [1095] = {.lex_state = 151}, + [1096] = {.lex_state = 149}, + [1097] = {.lex_state = 149}, + [1098] = {.lex_state = 149}, + [1099] = {.lex_state = 171}, + [1100] = {.lex_state = 171}, + [1101] = {.lex_state = 149}, + [1102] = {.lex_state = 149}, + [1103] = {.lex_state = 149}, + [1104] = {.lex_state = 171}, + [1105] = {.lex_state = 171}, + [1106] = {.lex_state = 149}, + [1107] = {.lex_state = 149}, + [1108] = {.lex_state = 149}, + [1109] = {.lex_state = 171}, + [1110] = {.lex_state = 171}, + [1111] = {.lex_state = 168}, + [1112] = {.lex_state = 171}, + [1113] = {.lex_state = 171}, + [1114] = {.lex_state = 149}, + [1115] = {.lex_state = 168}, + [1116] = {.lex_state = 171}, + [1117] = {.lex_state = 171}, + [1118] = {.lex_state = 149}, + [1119] = {.lex_state = 168}, + [1120] = {.lex_state = 171}, + [1121] = {.lex_state = 171}, + [1122] = {.lex_state = 149}, + [1123] = {.lex_state = 136}, + [1124] = {.lex_state = 136}, + [1125] = {.lex_state = 136}, + [1126] = {.lex_state = 185}, + [1127] = {.lex_state = 136}, + [1128] = {.lex_state = 136}, + [1129] = {.lex_state = 185}, + [1130] = {.lex_state = 168}, + [1131] = {.lex_state = 185}, + [1132] = {.lex_state = 168}, + [1133] = {.lex_state = 145}, + [1134] = {.lex_state = 185}, + [1135] = {.lex_state = 168}, + [1136] = {.lex_state = 136}, + [1137] = {.lex_state = 168}, + [1138] = {.lex_state = 136}, + [1139] = {.lex_state = 145}, + [1140] = {.lex_state = 151}, + [1141] = {.lex_state = 168}, + [1142] = {.lex_state = 168}, + [1143] = {.lex_state = 168}, + [1144] = {.lex_state = 171}, + [1145] = {.lex_state = 171}, + [1146] = {.lex_state = 145}, + [1147] = {.lex_state = 145}, + [1148] = {.lex_state = 185}, + [1149] = {.lex_state = 145}, + [1150] = {.lex_state = 145}, + [1151] = {.lex_state = 145}, + [1152] = {.lex_state = 145}, + [1153] = {.lex_state = 145}, + [1154] = {.lex_state = 149}, + [1155] = {.lex_state = 136}, + [1156] = {.lex_state = 149}, + [1157] = {.lex_state = 196}, + [1158] = {.lex_state = 151}, + [1159] = {.lex_state = 145}, + [1160] = {.lex_state = 187}, + [1161] = {.lex_state = 145}, + [1162] = {.lex_state = 196}, + [1163] = {.lex_state = 151}, + [1164] = {.lex_state = 145}, + [1165] = {.lex_state = 185}, + [1166] = {.lex_state = 116}, + [1167] = {.lex_state = 145}, + [1168] = {.lex_state = 185}, + [1169] = {.lex_state = 145}, + [1170] = {.lex_state = 151}, + [1171] = {.lex_state = 145}, + [1172] = {.lex_state = 187}, + [1173] = {.lex_state = 196}, + [1174] = {.lex_state = 151}, + [1175] = {.lex_state = 145}, + [1176] = {.lex_state = 145}, + [1177] = {.lex_state = 187}, + [1178] = {.lex_state = 187}, + [1179] = {.lex_state = 196}, + [1180] = {.lex_state = 149}, + [1181] = {.lex_state = 149}, + [1182] = {.lex_state = 149}, + [1183] = {.lex_state = 149}, + [1184] = {.lex_state = 149}, + [1185] = {.lex_state = 149}, + [1186] = {.lex_state = 168}, + [1187] = {.lex_state = 168}, + [1188] = {.lex_state = 168}, + [1189] = {.lex_state = 171}, + [1190] = {.lex_state = 171}, + [1191] = {.lex_state = 168}, + [1192] = {.lex_state = 168}, + [1193] = {.lex_state = 168}, + [1194] = {.lex_state = 171}, + [1195] = {.lex_state = 171}, + [1196] = {.lex_state = 168}, + [1197] = {.lex_state = 168}, + [1198] = {.lex_state = 168}, + [1199] = {.lex_state = 171}, + [1200] = {.lex_state = 171}, + [1201] = {.lex_state = 145}, + [1202] = {.lex_state = 145}, + [1203] = {.lex_state = 185}, + [1204] = {.lex_state = 145}, + [1205] = {.lex_state = 145}, + [1206] = {.lex_state = 145}, + [1207] = {.lex_state = 145}, + [1208] = {.lex_state = 145}, + [1209] = {.lex_state = 168}, + [1210] = {.lex_state = 136}, + [1211] = {.lex_state = 168}, + [1212] = {.lex_state = 196}, + [1213] = {.lex_state = 151}, + [1214] = {.lex_state = 145}, + [1215] = {.lex_state = 149}, + [1216] = {.lex_state = 145}, + [1217] = {.lex_state = 185}, + [1218] = {.lex_state = 145}, + [1219] = {.lex_state = 151}, + [1220] = {.lex_state = 149}, + [1221] = {.lex_state = 187}, + [1222] = {.lex_state = 165}, + [1223] = {.lex_state = 145}, + [1224] = {.lex_state = 187}, + [1225] = {.lex_state = 196}, + [1226] = {.lex_state = 151}, + [1227] = {.lex_state = 145}, + [1228] = {.lex_state = 187}, + [1229] = {.lex_state = 196}, + [1230] = {.lex_state = 151}, + [1231] = {.lex_state = 145}, + [1232] = {.lex_state = 196}, + [1233] = {.lex_state = 151}, + [1234] = {.lex_state = 145}, + [1235] = {.lex_state = 145}, + [1236] = {.lex_state = 187}, + [1237] = {.lex_state = 187}, + [1238] = {.lex_state = 196}, + [1239] = {.lex_state = 145}, + [1240] = {.lex_state = 145}, + [1241] = {.lex_state = 187}, + [1242] = {.lex_state = 187}, + [1243] = {.lex_state = 168}, + [1244] = {.lex_state = 168}, + [1245] = {.lex_state = 168}, + [1246] = {.lex_state = 168}, + [1247] = {.lex_state = 168}, + [1248] = {.lex_state = 168}, + [1249] = {.lex_state = 168}, + [1250] = {.lex_state = 145}, + [1251] = {.lex_state = 185}, + [1252] = {.lex_state = 145}, + [1253] = {.lex_state = 151}, + [1254] = {.lex_state = 168}, + [1255] = {.lex_state = 187}, + [1256] = {.lex_state = 165}, + [1257] = {.lex_state = 145}, + [1258] = {.lex_state = 187}, + [1259] = {.lex_state = 196}, + [1260] = {.lex_state = 151}, + [1261] = {.lex_state = 145}, + [1262] = {.lex_state = 196}, + [1263] = {.lex_state = 151}, + [1264] = {.lex_state = 145}, + [1265] = {.lex_state = 149}, + [1266] = {.lex_state = 149}, + [1267] = {.lex_state = 145}, + [1268] = {.lex_state = 187}, + [1269] = {.lex_state = 187}, + [1270] = {.lex_state = 196}, + [1271] = {.lex_state = 145}, + [1272] = {.lex_state = 187}, + [1273] = {.lex_state = 187}, + [1274] = {.lex_state = 196}, + [1275] = {.lex_state = 145}, + [1276] = {.lex_state = 187}, + [1277] = {.lex_state = 196}, + [1278] = {.lex_state = 151}, + [1279] = {.lex_state = 145}, + [1280] = {.lex_state = 187}, + [1281] = {.lex_state = 187}, + [1282] = {.lex_state = 145}, + [1283] = {.lex_state = 145}, + [1284] = {.lex_state = 187}, + [1285] = {.lex_state = 145}, + [1286] = {.lex_state = 196}, + [1287] = {.lex_state = 151}, + [1288] = {.lex_state = 145}, + [1289] = {.lex_state = 168}, + [1290] = {.lex_state = 168}, + [1291] = {.lex_state = 145}, + [1292] = {.lex_state = 187}, + [1293] = {.lex_state = 187}, + [1294] = {.lex_state = 196}, + [1295] = {.lex_state = 145}, + [1296] = {.lex_state = 187}, + [1297] = {.lex_state = 196}, + [1298] = {.lex_state = 151}, + [1299] = {.lex_state = 149}, + [1300] = {.lex_state = 145}, + [1301] = {.lex_state = 187}, + [1302] = {.lex_state = 187}, + [1303] = {.lex_state = 145}, + [1304] = {.lex_state = 187}, + [1305] = {.lex_state = 187}, + [1306] = {.lex_state = 145}, + [1307] = {.lex_state = 187}, + [1308] = {.lex_state = 187}, + [1309] = {.lex_state = 196}, + [1310] = {.lex_state = 145}, + [1311] = {.lex_state = 187}, + [1312] = {.lex_state = 145}, + [1313] = {.lex_state = 145}, + [1314] = {.lex_state = 145}, + [1315] = {.lex_state = 187}, + [1316] = {.lex_state = 196}, + [1317] = {.lex_state = 151}, + [1318] = {.lex_state = 168}, + [1319] = {.lex_state = 145}, + [1320] = {.lex_state = 187}, + [1321] = {.lex_state = 187}, + [1322] = {.lex_state = 145}, + [1323] = {.lex_state = 187}, + [1324] = {.lex_state = 187}, + [1325] = {.lex_state = 196}, + [1326] = {.lex_state = 149}, + [1327] = {.lex_state = 145}, + [1328] = {.lex_state = 187}, + [1329] = {.lex_state = 145}, + [1330] = {.lex_state = 187}, + [1331] = {.lex_state = 145}, + [1332] = {.lex_state = 187}, + [1333] = {.lex_state = 187}, + [1334] = {.lex_state = 145}, + [1335] = {.lex_state = 145}, + [1336] = {.lex_state = 145}, + [1337] = {.lex_state = 187}, + [1338] = {.lex_state = 187}, + [1339] = {.lex_state = 196}, + [1340] = {.lex_state = 168}, + [1341] = {.lex_state = 145}, + [1342] = {.lex_state = 187}, + [1343] = {.lex_state = 145}, + [1344] = {.lex_state = 187}, + [1345] = {.lex_state = 187}, + [1346] = {.lex_state = 149}, + [1347] = {.lex_state = 145}, + [1348] = {.lex_state = 145}, + [1349] = {.lex_state = 145}, + [1350] = {.lex_state = 187}, + [1351] = {.lex_state = 145}, + [1352] = {.lex_state = 187}, + [1353] = {.lex_state = 187}, + [1354] = {.lex_state = 168}, + [1355] = {.lex_state = 145}, + [1356] = {.lex_state = 145}, + [1357] = {.lex_state = 187}, + [1358] = {.lex_state = 149}, + [1359] = {.lex_state = 145}, + [1360] = {.lex_state = 145}, + [1361] = {.lex_state = 187}, + [1362] = {.lex_state = 168}, + [1363] = {.lex_state = 145}, + [1364] = {.lex_state = 145}, }; static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { @@ -5945,6 +5937,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(3), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(3), [anon_sym_STAR] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), @@ -6097,8 +6090,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [7] = { - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(55), + [sym_preproc_arg] = ACTIONS(57), [sym_comment] = ACTIONS(49), }, [8] = { @@ -6148,11 +6141,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [10] = { - [anon_sym_LPAREN] = ACTIONS(65), [anon_sym_COMMA] = ACTIONS(65), [anon_sym_RPAREN] = ACTIONS(65), [anon_sym_SEMI] = ACTIONS(65), [anon_sym_extern] = ACTIONS(63), + [anon_sym_LPAREN2] = ACTIONS(65), [anon_sym_STAR] = ACTIONS(65), [anon_sym_LBRACK] = ACTIONS(65), [anon_sym_RBRACK] = ACTIONS(65), @@ -6190,11 +6183,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [11] = { - [anon_sym_LPAREN] = ACTIONS(67), [anon_sym_COMMA] = ACTIONS(67), [anon_sym_RPAREN] = ACTIONS(67), [anon_sym_SEMI] = ACTIONS(67), [anon_sym_extern] = ACTIONS(69), + [anon_sym_LPAREN2] = ACTIONS(67), [anon_sym_STAR] = ACTIONS(67), [anon_sym_LBRACK] = ACTIONS(67), [anon_sym_RBRACK] = ACTIONS(67), @@ -6250,38 +6243,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [15] = { - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_COMMA] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(84), - [anon_sym_SEMI] = ACTIONS(84), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(84), - [anon_sym_LBRACK] = ACTIONS(84), - [anon_sym_RBRACK] = ACTIONS(84), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(84), - [anon_sym_AMP] = ACTIONS(84), - [anon_sym_BANG] = ACTIONS(84), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_PLUS] = ACTIONS(86), - [anon_sym_DASH] = ACTIONS(86), - [anon_sym_DASH_DASH] = ACTIONS(84), - [anon_sym_PLUS_PLUS] = ACTIONS(84), - [anon_sym_sizeof] = ACTIONS(86), - [sym_number_literal] = ACTIONS(84), - [anon_sym_SQUOTE] = ACTIONS(84), - [anon_sym_DQUOTE] = ACTIONS(84), - [sym_true] = ACTIONS(86), - [sym_false] = ACTIONS(86), - [sym_null] = ACTIONS(86), - [sym_identifier] = ACTIONS(86), + [anon_sym_COMMA] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(81), + [anon_sym_SEMI] = ACTIONS(81), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_RBRACK] = ACTIONS(81), + [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_COLON] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_BANG] = ACTIONS(81), + [anon_sym_TILDE] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(83), + [anon_sym_DASH_DASH] = ACTIONS(81), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_sizeof] = ACTIONS(83), + [sym_number_literal] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, [16] = { @@ -6294,8 +6287,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(46), [sym_array_declarator] = STATE(46), [sym_init_declarator] = STATE(47), - [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_SEMI] = ACTIONS(92), + [anon_sym_SEMI] = ACTIONS(90), + [anon_sym_LPAREN2] = ACTIONS(92), [anon_sym_STAR] = ACTIONS(94), [sym_identifier] = ACTIONS(96), [sym_comment] = ACTIONS(39), @@ -6304,9 +6297,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_storage_class_specifier] = STATE(48), [sym_type_qualifier] = STATE(48), [aux_sym__declaration_specifiers_repeat1] = STATE(48), - [anon_sym_LPAREN] = ACTIONS(98), [anon_sym_SEMI] = ACTIONS(98), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(98), [anon_sym_STAR] = ACTIONS(98), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -6402,9 +6395,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [21] = { [aux_sym_sized_type_specifier_repeat1] = STATE(54), - [anon_sym_LPAREN] = ACTIONS(106), [anon_sym_SEMI] = ACTIONS(106), [anon_sym_extern] = ACTIONS(108), + [anon_sym_LPAREN2] = ACTIONS(106), [anon_sym_STAR] = ACTIONS(106), [anon_sym_static] = ACTIONS(108), [anon_sym_auto] = ACTIONS(108), @@ -6432,7 +6425,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(123), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(125), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(125), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(125), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(125), @@ -6442,6 +6434,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_RBRACE] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), [anon_sym_STAR] = ACTIONS(123), [anon_sym_static] = ACTIONS(125), [anon_sym_auto] = ACTIONS(125), @@ -6488,9 +6481,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [24] = { [sym_preproc_params] = STATE(60), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(127), - [anon_sym_LF] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_LF] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(129), + [sym_preproc_arg] = ACTIONS(131), [sym_comment] = ACTIONS(49), }, [25] = { @@ -6659,73 +6652,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [28] = { - [sym_preproc_arg] = ACTIONS(159), - [sym_comment] = ACTIONS(49), + [ts_builtin_sym_end] = ACTIONS(159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(161), + [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(161), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_RBRACE] = ACTIONS(159), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_static] = ACTIONS(161), + [anon_sym_auto] = ACTIONS(161), + [anon_sym_register] = ACTIONS(161), + [anon_sym_inline] = ACTIONS(161), + [anon_sym_const] = ACTIONS(161), + [anon_sym_restrict] = ACTIONS(161), + [anon_sym_volatile] = ACTIONS(161), + [anon_sym__Atomic] = ACTIONS(161), + [anon_sym_unsigned] = ACTIONS(161), + [anon_sym_long] = ACTIONS(161), + [anon_sym_short] = ACTIONS(161), + [sym_primitive_type] = ACTIONS(161), + [anon_sym_enum] = ACTIONS(161), + [anon_sym_struct] = ACTIONS(161), + [anon_sym_union] = ACTIONS(161), + [anon_sym_if] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(161), + [anon_sym_case] = ACTIONS(161), + [anon_sym_default] = ACTIONS(161), + [anon_sym_while] = ACTIONS(161), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(161), + [anon_sym_return] = ACTIONS(161), + [anon_sym_break] = ACTIONS(161), + [anon_sym_continue] = ACTIONS(161), + [anon_sym_goto] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_sizeof] = ACTIONS(161), + [sym_number_literal] = ACTIONS(159), + [anon_sym_SQUOTE] = ACTIONS(159), + [anon_sym_DQUOTE] = ACTIONS(159), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [sym_null] = ACTIONS(161), + [sym_identifier] = ACTIONS(161), + [sym_comment] = ACTIONS(39), }, [29] = { - [ts_builtin_sym_end] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(163), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(163), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(163), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(163), - [sym_preproc_directive] = ACTIONS(163), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(161), - [anon_sym_RBRACE] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(161), - [anon_sym_static] = ACTIONS(163), - [anon_sym_auto] = ACTIONS(163), - [anon_sym_register] = ACTIONS(163), - [anon_sym_inline] = ACTIONS(163), - [anon_sym_const] = ACTIONS(163), - [anon_sym_restrict] = ACTIONS(163), - [anon_sym_volatile] = ACTIONS(163), - [anon_sym__Atomic] = ACTIONS(163), - [anon_sym_unsigned] = ACTIONS(163), - [anon_sym_long] = ACTIONS(163), - [anon_sym_short] = ACTIONS(163), - [sym_primitive_type] = ACTIONS(163), - [anon_sym_enum] = ACTIONS(163), - [anon_sym_struct] = ACTIONS(163), - [anon_sym_union] = ACTIONS(163), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(163), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(163), - [anon_sym_while] = ACTIONS(163), - [anon_sym_do] = ACTIONS(163), - [anon_sym_for] = ACTIONS(163), - [anon_sym_return] = ACTIONS(163), - [anon_sym_break] = ACTIONS(163), - [anon_sym_continue] = ACTIONS(163), - [anon_sym_goto] = ACTIONS(163), - [anon_sym_AMP] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(161), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_sizeof] = ACTIONS(163), - [sym_number_literal] = ACTIONS(161), - [anon_sym_SQUOTE] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [sym_null] = ACTIONS(163), - [sym_identifier] = ACTIONS(163), - [sym_comment] = ACTIONS(39), + [anon_sym_LF] = ACTIONS(163), + [sym_comment] = ACTIONS(49), }, [30] = { [sym__type_declarator] = STATE(85), [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(167), [sym_identifier] = ACTIONS(169), [sym_comment] = ACTIONS(39), @@ -6756,7 +6749,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [32] = { [aux_sym_sized_type_specifier_repeat1] = STATE(91), - [anon_sym_LPAREN] = ACTIONS(106), + [anon_sym_LPAREN2] = ACTIONS(106), [anon_sym_STAR] = ACTIONS(106), [anon_sym_unsigned] = ACTIONS(173), [anon_sym_long] = ACTIONS(173), @@ -6809,12 +6802,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [35] = { [sym_enumerator_list] = STATE(102), - [anon_sym_LPAREN] = ACTIONS(187), [anon_sym_COMMA] = ACTIONS(187), [anon_sym_RPAREN] = ACTIONS(187), [anon_sym_SEMI] = ACTIONS(187), [anon_sym_extern] = ACTIONS(189), [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_LPAREN2] = ACTIONS(187), [anon_sym_STAR] = ACTIONS(187), [anon_sym_LBRACK] = ACTIONS(187), [anon_sym_RBRACK] = ACTIONS(187), @@ -6845,11 +6838,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [36] = { - [anon_sym_LPAREN] = ACTIONS(191), [anon_sym_COMMA] = ACTIONS(191), [anon_sym_RPAREN] = ACTIONS(191), [anon_sym_SEMI] = ACTIONS(191), [anon_sym_extern] = ACTIONS(193), + [anon_sym_LPAREN2] = ACTIONS(191), [anon_sym_STAR] = ACTIONS(191), [anon_sym_LBRACK] = ACTIONS(191), [anon_sym_RBRACK] = ACTIONS(191), @@ -6921,12 +6914,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [38] = { [sym_field_declaration_list] = STATE(114), - [anon_sym_LPAREN] = ACTIONS(207), [anon_sym_COMMA] = ACTIONS(207), [anon_sym_RPAREN] = ACTIONS(207), [anon_sym_SEMI] = ACTIONS(207), [anon_sym_extern] = ACTIONS(209), [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LPAREN2] = ACTIONS(207), [anon_sym_STAR] = ACTIONS(207), [anon_sym_LBRACK] = ACTIONS(207), [anon_sym_RBRACK] = ACTIONS(207), @@ -6957,11 +6950,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [39] = { - [anon_sym_LPAREN] = ACTIONS(211), [anon_sym_COMMA] = ACTIONS(211), [anon_sym_RPAREN] = ACTIONS(211), [anon_sym_SEMI] = ACTIONS(211), [anon_sym_extern] = ACTIONS(213), + [anon_sym_LPAREN2] = ACTIONS(211), [anon_sym_STAR] = ACTIONS(211), [anon_sym_LBRACK] = ACTIONS(211), [anon_sym_RBRACK] = ACTIONS(211), @@ -6993,12 +6986,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [40] = { [sym_field_declaration_list] = STATE(115), - [anon_sym_LPAREN] = ACTIONS(215), [anon_sym_COMMA] = ACTIONS(215), [anon_sym_RPAREN] = ACTIONS(215), [anon_sym_SEMI] = ACTIONS(215), [anon_sym_extern] = ACTIONS(217), [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_LPAREN2] = ACTIONS(215), [anon_sym_STAR] = ACTIONS(215), [anon_sym_LBRACK] = ACTIONS(215), [anon_sym_RBRACK] = ACTIONS(215), @@ -7029,11 +7022,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [41] = { - [anon_sym_LPAREN] = ACTIONS(219), [anon_sym_COMMA] = ACTIONS(219), [anon_sym_RPAREN] = ACTIONS(219), [anon_sym_SEMI] = ACTIONS(219), [anon_sym_extern] = ACTIONS(221), + [anon_sym_LPAREN2] = ACTIONS(219), [anon_sym_STAR] = ACTIONS(219), [anon_sym_LBRACK] = ACTIONS(219), [anon_sym_RBRACK] = ACTIONS(219), @@ -7089,70 +7082,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [43] = { - [sym__declarator] = STATE(121), - [sym_pointer_declarator] = STATE(121), - [sym_function_declarator] = STATE(121), - [sym_array_declarator] = STATE(121), - [anon_sym_LPAREN] = ACTIONS(90), + [ts_builtin_sym_end] = ACTIONS(227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(229), + [sym_preproc_directive] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(227), + [anon_sym_typedef] = ACTIONS(229), + [anon_sym_extern] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_RBRACE] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(227), [anon_sym_STAR] = ACTIONS(227), + [anon_sym_static] = ACTIONS(229), + [anon_sym_auto] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym_const] = ACTIONS(229), + [anon_sym_restrict] = ACTIONS(229), + [anon_sym_volatile] = ACTIONS(229), + [anon_sym__Atomic] = ACTIONS(229), + [anon_sym_unsigned] = ACTIONS(229), + [anon_sym_long] = ACTIONS(229), + [anon_sym_short] = ACTIONS(229), + [sym_primitive_type] = ACTIONS(229), + [anon_sym_enum] = ACTIONS(229), + [anon_sym_struct] = ACTIONS(229), + [anon_sym_union] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_switch] = ACTIONS(229), + [anon_sym_case] = ACTIONS(229), + [anon_sym_default] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_for] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_break] = ACTIONS(229), + [anon_sym_continue] = ACTIONS(229), + [anon_sym_goto] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_BANG] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(227), + [anon_sym_PLUS_PLUS] = ACTIONS(227), + [anon_sym_sizeof] = ACTIONS(229), + [sym_number_literal] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [sym_null] = ACTIONS(229), [sym_identifier] = ACTIONS(229), [sym_comment] = ACTIONS(39), }, [44] = { - [ts_builtin_sym_end] = ACTIONS(231), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(231), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(233), - [sym_preproc_directive] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(231), - [anon_sym_typedef] = ACTIONS(233), - [anon_sym_extern] = ACTIONS(233), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(231), + [sym__declarator] = STATE(121), + [sym_pointer_declarator] = STATE(121), + [sym_function_declarator] = STATE(121), + [sym_array_declarator] = STATE(121), + [anon_sym_LPAREN2] = ACTIONS(92), [anon_sym_STAR] = ACTIONS(231), - [anon_sym_static] = ACTIONS(233), - [anon_sym_auto] = ACTIONS(233), - [anon_sym_register] = ACTIONS(233), - [anon_sym_inline] = ACTIONS(233), - [anon_sym_const] = ACTIONS(233), - [anon_sym_restrict] = ACTIONS(233), - [anon_sym_volatile] = ACTIONS(233), - [anon_sym__Atomic] = ACTIONS(233), - [anon_sym_unsigned] = ACTIONS(233), - [anon_sym_long] = ACTIONS(233), - [anon_sym_short] = ACTIONS(233), - [sym_primitive_type] = ACTIONS(233), - [anon_sym_enum] = ACTIONS(233), - [anon_sym_struct] = ACTIONS(233), - [anon_sym_union] = ACTIONS(233), - [anon_sym_if] = ACTIONS(233), - [anon_sym_switch] = ACTIONS(233), - [anon_sym_case] = ACTIONS(233), - [anon_sym_default] = ACTIONS(233), - [anon_sym_while] = ACTIONS(233), - [anon_sym_do] = ACTIONS(233), - [anon_sym_for] = ACTIONS(233), - [anon_sym_return] = ACTIONS(233), - [anon_sym_break] = ACTIONS(233), - [anon_sym_continue] = ACTIONS(233), - [anon_sym_goto] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(231), - [anon_sym_BANG] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(231), - [anon_sym_SQUOTE] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_true] = ACTIONS(233), - [sym_false] = ACTIONS(233), - [sym_null] = ACTIONS(233), [sym_identifier] = ACTIONS(233), [sym_comment] = ACTIONS(39), }, @@ -7163,7 +7156,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_array_declarator] = STATE(122), [sym_type_qualifier] = STATE(123), [aux_sym_type_definition_repeat1] = STATE(123), - [anon_sym_LPAREN] = ACTIONS(90), + [anon_sym_LPAREN2] = ACTIONS(92), [anon_sym_STAR] = ACTIONS(94), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), @@ -7176,27 +7169,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_statement] = STATE(130), [sym_parameter_list] = STATE(131), [aux_sym_declaration_repeat1] = STATE(132), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(241), - [anon_sym_LBRACE] = ACTIONS(243), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(239), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(245), [anon_sym_EQ] = ACTIONS(247), [sym_comment] = ACTIONS(39), }, [47] = { [aux_sym_declaration_repeat1] = STATE(132), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(241), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(239), [sym_comment] = ACTIONS(39), }, [48] = { [sym_storage_class_specifier] = STATE(133), [sym_type_qualifier] = STATE(133), [aux_sym__declaration_specifiers_repeat1] = STATE(133), - [anon_sym_LPAREN] = ACTIONS(249), [anon_sym_SEMI] = ACTIONS(249), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(249), [anon_sym_STAR] = ACTIONS(249), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -7264,9 +7257,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_storage_class_specifier] = STATE(134), [sym_type_qualifier] = STATE(134), [aux_sym__declaration_specifiers_repeat1] = STATE(134), - [anon_sym_LPAREN] = ACTIONS(249), [anon_sym_SEMI] = ACTIONS(249), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(249), [anon_sym_STAR] = ACTIONS(249), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -7303,11 +7296,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [52] = { - [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_COMMA] = ACTIONS(311), [anon_sym_RPAREN] = ACTIONS(311), [anon_sym_SEMI] = ACTIONS(311), [anon_sym_extern] = ACTIONS(313), + [anon_sym_LPAREN2] = ACTIONS(311), [anon_sym_STAR] = ACTIONS(311), [anon_sym_LBRACK] = ACTIONS(311), [anon_sym_RBRACK] = ACTIONS(311), @@ -7338,11 +7331,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [53] = { - [anon_sym_LPAREN] = ACTIONS(315), [anon_sym_COMMA] = ACTIONS(315), [anon_sym_RPAREN] = ACTIONS(315), [anon_sym_SEMI] = ACTIONS(315), [anon_sym_extern] = ACTIONS(317), + [anon_sym_LPAREN2] = ACTIONS(315), [anon_sym_STAR] = ACTIONS(315), [anon_sym_LBRACK] = ACTIONS(315), [anon_sym_RBRACK] = ACTIONS(315), @@ -7374,9 +7367,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [54] = { [aux_sym_sized_type_specifier_repeat1] = STATE(54), - [anon_sym_LPAREN] = ACTIONS(319), [anon_sym_SEMI] = ACTIONS(319), [anon_sym_extern] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(319), [anon_sym_STAR] = ACTIONS(319), [anon_sym_static] = ACTIONS(321), [anon_sym_auto] = ACTIONS(321), @@ -7397,7 +7390,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(326), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(328), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(326), [anon_sym_COMMA] = ACTIONS(326), [anon_sym_RPAREN] = ACTIONS(326), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(328), @@ -7409,6 +7401,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(328), [anon_sym_LBRACE] = ACTIONS(326), [anon_sym_RBRACE] = ACTIONS(326), + [anon_sym_LPAREN2] = ACTIONS(326), [anon_sym_STAR] = ACTIONS(328), [anon_sym_LBRACK] = ACTIONS(326), [anon_sym_RBRACK] = ACTIONS(326), @@ -7473,72 +7466,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [57] = { - [sym_preproc_arg] = ACTIONS(336), - [sym_comment] = ACTIONS(49), + [ts_builtin_sym_end] = ACTIONS(336), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(338), + [sym_preproc_directive] = ACTIONS(338), + [anon_sym_SEMI] = ACTIONS(336), + [anon_sym_typedef] = ACTIONS(338), + [anon_sym_extern] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_RBRACE] = ACTIONS(336), + [anon_sym_LPAREN2] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(336), + [anon_sym_static] = ACTIONS(338), + [anon_sym_auto] = ACTIONS(338), + [anon_sym_register] = ACTIONS(338), + [anon_sym_inline] = ACTIONS(338), + [anon_sym_const] = ACTIONS(338), + [anon_sym_restrict] = ACTIONS(338), + [anon_sym_volatile] = ACTIONS(338), + [anon_sym__Atomic] = ACTIONS(338), + [anon_sym_unsigned] = ACTIONS(338), + [anon_sym_long] = ACTIONS(338), + [anon_sym_short] = ACTIONS(338), + [sym_primitive_type] = ACTIONS(338), + [anon_sym_enum] = ACTIONS(338), + [anon_sym_struct] = ACTIONS(338), + [anon_sym_union] = ACTIONS(338), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(338), + [anon_sym_case] = ACTIONS(338), + [anon_sym_default] = ACTIONS(338), + [anon_sym_while] = ACTIONS(338), + [anon_sym_do] = ACTIONS(338), + [anon_sym_for] = ACTIONS(338), + [anon_sym_return] = ACTIONS(338), + [anon_sym_break] = ACTIONS(338), + [anon_sym_continue] = ACTIONS(338), + [anon_sym_goto] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(336), + [anon_sym_TILDE] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_DASH_DASH] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_sizeof] = ACTIONS(338), + [sym_number_literal] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(336), + [sym_true] = ACTIONS(338), + [sym_false] = ACTIONS(338), + [sym_null] = ACTIONS(338), + [sym_identifier] = ACTIONS(338), + [sym_comment] = ACTIONS(39), }, [58] = { - [ts_builtin_sym_end] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(340), - [sym_preproc_directive] = ACTIONS(340), - [anon_sym_SEMI] = ACTIONS(338), - [anon_sym_typedef] = ACTIONS(340), - [anon_sym_extern] = ACTIONS(340), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_static] = ACTIONS(340), - [anon_sym_auto] = ACTIONS(340), - [anon_sym_register] = ACTIONS(340), - [anon_sym_inline] = ACTIONS(340), - [anon_sym_const] = ACTIONS(340), - [anon_sym_restrict] = ACTIONS(340), - [anon_sym_volatile] = ACTIONS(340), - [anon_sym__Atomic] = ACTIONS(340), - [anon_sym_unsigned] = ACTIONS(340), - [anon_sym_long] = ACTIONS(340), - [anon_sym_short] = ACTIONS(340), - [sym_primitive_type] = ACTIONS(340), - [anon_sym_enum] = ACTIONS(340), - [anon_sym_struct] = ACTIONS(340), - [anon_sym_union] = ACTIONS(340), - [anon_sym_if] = ACTIONS(340), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(340), - [anon_sym_default] = ACTIONS(340), - [anon_sym_while] = ACTIONS(340), - [anon_sym_do] = ACTIONS(340), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(340), - [anon_sym_break] = ACTIONS(340), - [anon_sym_continue] = ACTIONS(340), - [anon_sym_goto] = ACTIONS(340), - [anon_sym_AMP] = ACTIONS(338), - [anon_sym_BANG] = ACTIONS(338), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(338), - [anon_sym_PLUS_PLUS] = ACTIONS(338), - [anon_sym_sizeof] = ACTIONS(340), - [sym_number_literal] = ACTIONS(338), - [anon_sym_SQUOTE] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(338), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), + [anon_sym_DOT_DOT_DOT] = ACTIONS(340), + [anon_sym_RPAREN] = ACTIONS(342), [sym_identifier] = ACTIONS(340), [sym_comment] = ACTIONS(39), }, [59] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(342), - [anon_sym_RPAREN] = ACTIONS(344), - [sym_identifier] = ACTIONS(342), - [sym_comment] = ACTIONS(39), + [anon_sym_LF] = ACTIONS(344), + [sym_comment] = ACTIONS(49), }, [60] = { [anon_sym_LF] = ACTIONS(346), @@ -7652,8 +7645,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [69] = { - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(386), - [anon_sym_LF] = ACTIONS(388), + [anon_sym_LF] = ACTIONS(386), + [sym_preproc_arg] = ACTIONS(388), [sym_comment] = ACTIONS(49), }, [70] = { @@ -7712,8 +7705,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(166), [sym_array_declarator] = STATE(166), [sym_init_declarator] = STATE(167), - [anon_sym_LPAREN] = ACTIONS(90), [anon_sym_SEMI] = ACTIONS(394), + [anon_sym_LPAREN2] = ACTIONS(92), [anon_sym_STAR] = ACTIONS(94), [sym_identifier] = ACTIONS(396), [sym_comment] = ACTIONS(39), @@ -7950,76 +7943,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [81] = { - [anon_sym_LF] = ACTIONS(416), - [sym_comment] = ACTIONS(49), + [ts_builtin_sym_end] = ACTIONS(416), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(418), + [sym_preproc_directive] = ACTIONS(418), + [anon_sym_SEMI] = ACTIONS(416), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_extern] = ACTIONS(418), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(416), + [anon_sym_LPAREN2] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(416), + [anon_sym_static] = ACTIONS(418), + [anon_sym_auto] = ACTIONS(418), + [anon_sym_register] = ACTIONS(418), + [anon_sym_inline] = ACTIONS(418), + [anon_sym_const] = ACTIONS(418), + [anon_sym_restrict] = ACTIONS(418), + [anon_sym_volatile] = ACTIONS(418), + [anon_sym__Atomic] = ACTIONS(418), + [anon_sym_unsigned] = ACTIONS(418), + [anon_sym_long] = ACTIONS(418), + [anon_sym_short] = ACTIONS(418), + [sym_primitive_type] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(418), + [anon_sym_struct] = ACTIONS(418), + [anon_sym_union] = ACTIONS(418), + [anon_sym_if] = ACTIONS(418), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_case] = ACTIONS(418), + [anon_sym_default] = ACTIONS(418), + [anon_sym_while] = ACTIONS(418), + [anon_sym_do] = ACTIONS(418), + [anon_sym_for] = ACTIONS(418), + [anon_sym_return] = ACTIONS(418), + [anon_sym_break] = ACTIONS(418), + [anon_sym_continue] = ACTIONS(418), + [anon_sym_goto] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(416), + [anon_sym_TILDE] = ACTIONS(416), + [anon_sym_PLUS] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(416), + [anon_sym_sizeof] = ACTIONS(418), + [sym_number_literal] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(416), + [anon_sym_DQUOTE] = ACTIONS(416), + [sym_true] = ACTIONS(418), + [sym_false] = ACTIONS(418), + [sym_null] = ACTIONS(418), + [sym_identifier] = ACTIONS(418), + [sym_comment] = ACTIONS(39), }, [82] = { - [sym__type_declarator] = STATE(176), + [sym__type_declarator] = STATE(175), [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(418), + [anon_sym_LPAREN2] = ACTIONS(165), + [anon_sym_STAR] = ACTIONS(420), [sym_identifier] = ACTIONS(169), [sym_comment] = ACTIONS(39), }, [83] = { - [sym__type_declarator] = STATE(177), + [sym__type_declarator] = STATE(176), [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [sym_type_qualifier] = STATE(178), - [aux_sym_type_definition_repeat1] = STATE(178), - [anon_sym_LPAREN] = ACTIONS(165), + [sym_type_qualifier] = STATE(177), + [aux_sym_type_definition_repeat1] = STATE(177), + [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(167), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(420), + [sym_identifier] = ACTIONS(422), [sym_comment] = ACTIONS(39), }, [84] = { - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(422), - [sym_comment] = ACTIONS(39), - }, - [85] = { - [sym_parameter_list] = STATE(181), - [anon_sym_LPAREN] = ACTIONS(237), + [anon_sym_RPAREN] = ACTIONS(424), [anon_sym_SEMI] = ACTIONS(424), - [anon_sym_LBRACK] = ACTIONS(426), + [anon_sym_LPAREN2] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(424), [sym_comment] = ACTIONS(39), }, - [86] = { - [anon_sym_LPAREN] = ACTIONS(428), - [anon_sym_RPAREN] = ACTIONS(428), - [anon_sym_SEMI] = ACTIONS(428), + [85] = { + [sym_parameter_list] = STATE(180), + [anon_sym_SEMI] = ACTIONS(426), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(428), [sym_comment] = ACTIONS(39), }, - [87] = { - [anon_sym_LPAREN] = ACTIONS(430), + [86] = { [anon_sym_RPAREN] = ACTIONS(430), [anon_sym_SEMI] = ACTIONS(430), + [anon_sym_LPAREN2] = ACTIONS(430), [anon_sym_LBRACK] = ACTIONS(430), [sym_comment] = ACTIONS(39), }, - [88] = { - [anon_sym_LPAREN] = ACTIONS(432), + [87] = { [anon_sym_RPAREN] = ACTIONS(432), [anon_sym_SEMI] = ACTIONS(432), + [anon_sym_LPAREN2] = ACTIONS(432), [anon_sym_LBRACK] = ACTIONS(432), [sym_comment] = ACTIONS(39), }, + [88] = { + [anon_sym_RPAREN] = ACTIONS(434), + [anon_sym_SEMI] = ACTIONS(434), + [anon_sym_LPAREN2] = ACTIONS(434), + [anon_sym_LBRACK] = ACTIONS(434), + [sym_comment] = ACTIONS(39), + }, [89] = { - [sym__type_declarator] = STATE(182), + [sym__type_declarator] = STATE(181), [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(167), [sym_identifier] = ACTIONS(169), [sym_comment] = ACTIONS(39), @@ -8027,43 +8074,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [90] = { [sym_type_qualifier] = STATE(90), [aux_sym_type_definition_repeat1] = STATE(90), - [anon_sym_const] = ACTIONS(434), - [anon_sym_restrict] = ACTIONS(434), - [anon_sym_volatile] = ACTIONS(434), - [anon_sym__Atomic] = ACTIONS(434), - [anon_sym_unsigned] = ACTIONS(437), - [anon_sym_long] = ACTIONS(437), - [anon_sym_short] = ACTIONS(437), - [sym_primitive_type] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(437), - [anon_sym_struct] = ACTIONS(437), - [anon_sym_union] = ACTIONS(437), - [sym_identifier] = ACTIONS(437), + [anon_sym_const] = ACTIONS(436), + [anon_sym_restrict] = ACTIONS(436), + [anon_sym_volatile] = ACTIONS(436), + [anon_sym__Atomic] = ACTIONS(436), + [anon_sym_unsigned] = ACTIONS(439), + [anon_sym_long] = ACTIONS(439), + [anon_sym_short] = ACTIONS(439), + [sym_primitive_type] = ACTIONS(439), + [anon_sym_enum] = ACTIONS(439), + [anon_sym_struct] = ACTIONS(439), + [anon_sym_union] = ACTIONS(439), + [sym_identifier] = ACTIONS(439), [sym_comment] = ACTIONS(39), }, [91] = { [aux_sym_sized_type_specifier_repeat1] = STATE(91), - [anon_sym_LPAREN] = ACTIONS(319), + [anon_sym_LPAREN2] = ACTIONS(319), [anon_sym_STAR] = ACTIONS(319), - [anon_sym_unsigned] = ACTIONS(439), - [anon_sym_long] = ACTIONS(439), - [anon_sym_short] = ACTIONS(439), + [anon_sym_unsigned] = ACTIONS(441), + [anon_sym_long] = ACTIONS(441), + [anon_sym_short] = ACTIONS(441), [sym_primitive_type] = ACTIONS(321), [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(39), }, [92] = { - [sym_preproc_include] = STATE(184), - [sym_preproc_def] = STATE(184), - [sym_preproc_function_def] = STATE(184), - [sym_preproc_call] = STATE(184), - [sym_preproc_if] = STATE(184), - [sym_preproc_ifdef] = STATE(184), - [sym_function_definition] = STATE(184), - [sym_declaration] = STATE(184), - [sym_type_definition] = STATE(184), + [sym_preproc_include] = STATE(183), + [sym_preproc_def] = STATE(183), + [sym_preproc_function_def] = STATE(183), + [sym_preproc_call] = STATE(183), + [sym_preproc_if] = STATE(183), + [sym_preproc_ifdef] = STATE(183), + [sym_function_definition] = STATE(183), + [sym_declaration] = STATE(183), + [sym_type_definition] = STATE(183), [sym__declaration_specifiers] = STATE(17), - [sym_linkage_specification] = STATE(184), + [sym_linkage_specification] = STATE(183), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -8071,9 +8118,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(184), + [sym__empty_declaration] = STATE(183), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(184), + [aux_sym_translation_unit_repeat1] = STATE(183), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), @@ -8084,7 +8131,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(444), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -8104,32 +8151,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [93] = { - [ts_builtin_sym_end] = ACTIONS(444), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(446), - [sym_preproc_directive] = ACTIONS(446), - [anon_sym_typedef] = ACTIONS(446), - [anon_sym_extern] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(444), - [anon_sym_static] = ACTIONS(446), - [anon_sym_auto] = ACTIONS(446), - [anon_sym_register] = ACTIONS(446), - [anon_sym_inline] = ACTIONS(446), - [anon_sym_const] = ACTIONS(446), - [anon_sym_restrict] = ACTIONS(446), - [anon_sym_volatile] = ACTIONS(446), - [anon_sym__Atomic] = ACTIONS(446), - [anon_sym_unsigned] = ACTIONS(446), - [anon_sym_long] = ACTIONS(446), - [anon_sym_short] = ACTIONS(446), - [sym_primitive_type] = ACTIONS(446), - [anon_sym_enum] = ACTIONS(446), - [anon_sym_struct] = ACTIONS(446), - [anon_sym_union] = ACTIONS(446), - [sym_identifier] = ACTIONS(446), + [ts_builtin_sym_end] = ACTIONS(446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(448), + [anon_sym_typedef] = ACTIONS(448), + [anon_sym_extern] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(446), + [anon_sym_static] = ACTIONS(448), + [anon_sym_auto] = ACTIONS(448), + [anon_sym_register] = ACTIONS(448), + [anon_sym_inline] = ACTIONS(448), + [anon_sym_const] = ACTIONS(448), + [anon_sym_restrict] = ACTIONS(448), + [anon_sym_volatile] = ACTIONS(448), + [anon_sym__Atomic] = ACTIONS(448), + [anon_sym_unsigned] = ACTIONS(448), + [anon_sym_long] = ACTIONS(448), + [anon_sym_short] = ACTIONS(448), + [sym_primitive_type] = ACTIONS(448), + [anon_sym_enum] = ACTIONS(448), + [anon_sym_struct] = ACTIONS(448), + [anon_sym_union] = ACTIONS(448), + [sym_identifier] = ACTIONS(448), [sym_comment] = ACTIONS(39), }, [94] = { @@ -8138,17 +8185,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_function_declarator] = STATE(46), [sym_array_declarator] = STATE(46), [sym_init_declarator] = STATE(47), - [anon_sym_LPAREN] = ACTIONS(90), + [anon_sym_LPAREN2] = ACTIONS(92), [anon_sym_STAR] = ACTIONS(94), [sym_identifier] = ACTIONS(96), [sym_comment] = ACTIONS(39), }, [95] = { - [sym_storage_class_specifier] = STATE(185), - [sym_type_qualifier] = STATE(185), - [aux_sym__declaration_specifiers_repeat1] = STATE(185), - [anon_sym_LPAREN] = ACTIONS(98), + [sym_storage_class_specifier] = STATE(184), + [sym_type_qualifier] = STATE(184), + [aux_sym__declaration_specifiers_repeat1] = STATE(184), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(98), [anon_sym_STAR] = ACTIONS(98), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -8164,12 +8211,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [96] = { [sym_storage_class_specifier] = STATE(51), [sym_type_qualifier] = STATE(51), - [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), + [sym__type_specifier] = STATE(185), + [sym_sized_type_specifier] = STATE(185), + [sym_enum_specifier] = STATE(185), + [sym_struct_specifier] = STATE(185), + [sym_union_specifier] = STATE(185), + [sym_macro_type_specifier] = STATE(185), [aux_sym__declaration_specifiers_repeat1] = STATE(51), [aux_sym_sized_type_specifier_repeat1] = STATE(97), [anon_sym_extern] = ACTIONS(23), @@ -8184,7 +8231,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(177), [anon_sym_long] = ACTIONS(177), [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(448), + [sym_primitive_type] = ACTIONS(450), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -8192,9 +8239,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [97] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(187), - [anon_sym_LPAREN] = ACTIONS(106), + [aux_sym_sized_type_specifier_repeat1] = STATE(186), [anon_sym_extern] = ACTIONS(108), + [anon_sym_LPAREN2] = ACTIONS(106), [anon_sym_STAR] = ACTIONS(106), [anon_sym_static] = ACTIONS(108), [anon_sym_auto] = ACTIONS(108), @@ -8204,155 +8251,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(108), [anon_sym_volatile] = ACTIONS(108), [anon_sym__Atomic] = ACTIONS(108), - [anon_sym_unsigned] = ACTIONS(450), - [anon_sym_long] = ACTIONS(450), - [anon_sym_short] = ACTIONS(450), + [anon_sym_unsigned] = ACTIONS(452), + [anon_sym_long] = ACTIONS(452), + [anon_sym_short] = ACTIONS(452), [sym_primitive_type] = ACTIONS(112), [sym_identifier] = ACTIONS(114), [sym_comment] = ACTIONS(39), }, [98] = { - [anon_sym_RBRACE] = ACTIONS(452), + [anon_sym_RBRACE] = ACTIONS(454), [sym_comment] = ACTIONS(39), }, [99] = { - [anon_sym_LPAREN] = ACTIONS(454), - [anon_sym_COMMA] = ACTIONS(454), - [anon_sym_RPAREN] = ACTIONS(454), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_extern] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(454), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_RBRACK] = ACTIONS(454), - [anon_sym_static] = ACTIONS(456), - [anon_sym_auto] = ACTIONS(456), - [anon_sym_register] = ACTIONS(456), - [anon_sym_inline] = ACTIONS(456), - [anon_sym_const] = ACTIONS(456), - [anon_sym_restrict] = ACTIONS(456), - [anon_sym_volatile] = ACTIONS(456), - [anon_sym__Atomic] = ACTIONS(456), - [anon_sym_COLON] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(454), - [anon_sym_TILDE] = ACTIONS(454), - [anon_sym_PLUS] = ACTIONS(456), - [anon_sym_DASH] = ACTIONS(456), - [anon_sym_DASH_DASH] = ACTIONS(454), - [anon_sym_PLUS_PLUS] = ACTIONS(454), - [anon_sym_sizeof] = ACTIONS(456), - [sym_number_literal] = ACTIONS(454), - [anon_sym_SQUOTE] = ACTIONS(454), - [anon_sym_DQUOTE] = ACTIONS(454), - [sym_true] = ACTIONS(456), - [sym_false] = ACTIONS(456), - [sym_null] = ACTIONS(456), - [sym_identifier] = ACTIONS(456), + [anon_sym_COMMA] = ACTIONS(456), + [anon_sym_RPAREN] = ACTIONS(456), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(458), + [anon_sym_LPAREN2] = ACTIONS(456), + [anon_sym_STAR] = ACTIONS(456), + [anon_sym_LBRACK] = ACTIONS(456), + [anon_sym_RBRACK] = ACTIONS(456), + [anon_sym_static] = ACTIONS(458), + [anon_sym_auto] = ACTIONS(458), + [anon_sym_register] = ACTIONS(458), + [anon_sym_inline] = ACTIONS(458), + [anon_sym_const] = ACTIONS(458), + [anon_sym_restrict] = ACTIONS(458), + [anon_sym_volatile] = ACTIONS(458), + [anon_sym__Atomic] = ACTIONS(458), + [anon_sym_COLON] = ACTIONS(456), + [anon_sym_AMP] = ACTIONS(456), + [anon_sym_BANG] = ACTIONS(456), + [anon_sym_TILDE] = ACTIONS(456), + [anon_sym_PLUS] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(456), + [anon_sym_PLUS_PLUS] = ACTIONS(456), + [anon_sym_sizeof] = ACTIONS(458), + [sym_number_literal] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(456), + [anon_sym_DQUOTE] = ACTIONS(456), + [sym_true] = ACTIONS(458), + [sym_false] = ACTIONS(458), + [sym_null] = ACTIONS(458), + [sym_identifier] = ACTIONS(458), [sym_comment] = ACTIONS(39), }, [100] = { - [anon_sym_COMMA] = ACTIONS(458), - [anon_sym_RBRACE] = ACTIONS(458), - [anon_sym_EQ] = ACTIONS(460), + [anon_sym_COMMA] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(460), + [anon_sym_EQ] = ACTIONS(462), [sym_comment] = ACTIONS(39), }, [101] = { - [aux_sym_enumerator_list_repeat1] = STATE(191), - [anon_sym_COMMA] = ACTIONS(462), - [anon_sym_RBRACE] = ACTIONS(452), + [aux_sym_enumerator_list_repeat1] = STATE(190), + [anon_sym_COMMA] = ACTIONS(464), + [anon_sym_RBRACE] = ACTIONS(454), [sym_comment] = ACTIONS(39), }, [102] = { - [anon_sym_LPAREN] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(464), - [anon_sym_RPAREN] = ACTIONS(464), - [anon_sym_SEMI] = ACTIONS(464), - [anon_sym_extern] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(464), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_RBRACK] = ACTIONS(464), - [anon_sym_static] = ACTIONS(466), - [anon_sym_auto] = ACTIONS(466), - [anon_sym_register] = ACTIONS(466), - [anon_sym_inline] = ACTIONS(466), - [anon_sym_const] = ACTIONS(466), - [anon_sym_restrict] = ACTIONS(466), - [anon_sym_volatile] = ACTIONS(466), - [anon_sym__Atomic] = ACTIONS(466), - [anon_sym_COLON] = ACTIONS(464), - [anon_sym_AMP] = ACTIONS(464), - [anon_sym_BANG] = ACTIONS(464), - [anon_sym_TILDE] = ACTIONS(464), - [anon_sym_PLUS] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(466), - [anon_sym_DASH_DASH] = ACTIONS(464), - [anon_sym_PLUS_PLUS] = ACTIONS(464), - [anon_sym_sizeof] = ACTIONS(466), - [sym_number_literal] = ACTIONS(464), - [anon_sym_SQUOTE] = ACTIONS(464), - [anon_sym_DQUOTE] = ACTIONS(464), - [sym_true] = ACTIONS(466), - [sym_false] = ACTIONS(466), - [sym_null] = ACTIONS(466), - [sym_identifier] = ACTIONS(466), + [anon_sym_COMMA] = ACTIONS(466), + [anon_sym_RPAREN] = ACTIONS(466), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_extern] = ACTIONS(468), + [anon_sym_LPAREN2] = ACTIONS(466), + [anon_sym_STAR] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_RBRACK] = ACTIONS(466), + [anon_sym_static] = ACTIONS(468), + [anon_sym_auto] = ACTIONS(468), + [anon_sym_register] = ACTIONS(468), + [anon_sym_inline] = ACTIONS(468), + [anon_sym_const] = ACTIONS(468), + [anon_sym_restrict] = ACTIONS(468), + [anon_sym_volatile] = ACTIONS(468), + [anon_sym__Atomic] = ACTIONS(468), + [anon_sym_COLON] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(466), + [anon_sym_BANG] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(466), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_DASH_DASH] = ACTIONS(466), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_sizeof] = ACTIONS(468), + [sym_number_literal] = ACTIONS(466), + [anon_sym_SQUOTE] = ACTIONS(466), + [anon_sym_DQUOTE] = ACTIONS(466), + [sym_true] = ACTIONS(468), + [sym_false] = ACTIONS(468), + [sym_null] = ACTIONS(468), + [sym_identifier] = ACTIONS(468), [sym_comment] = ACTIONS(39), }, [103] = { - [sym_preproc_arg] = ACTIONS(468), + [sym_preproc_arg] = ACTIONS(470), [sym_comment] = ACTIONS(49), }, [104] = { - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(472), [sym_comment] = ACTIONS(39), }, [105] = { - [sym_identifier] = ACTIONS(472), + [sym_identifier] = ACTIONS(474), [sym_comment] = ACTIONS(39), }, [106] = { - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_SEMI] = ACTIONS(474), - [anon_sym_extern] = ACTIONS(476), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_RBRACK] = ACTIONS(474), - [anon_sym_static] = ACTIONS(476), - [anon_sym_auto] = ACTIONS(476), - [anon_sym_register] = ACTIONS(476), - [anon_sym_inline] = ACTIONS(476), - [anon_sym_const] = ACTIONS(476), - [anon_sym_restrict] = ACTIONS(476), - [anon_sym_volatile] = ACTIONS(476), - [anon_sym__Atomic] = ACTIONS(476), - [anon_sym_COLON] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(474), - [anon_sym_PLUS_PLUS] = ACTIONS(474), - [anon_sym_sizeof] = ACTIONS(476), - [sym_number_literal] = ACTIONS(474), - [anon_sym_SQUOTE] = ACTIONS(474), - [anon_sym_DQUOTE] = ACTIONS(474), - [sym_true] = ACTIONS(476), - [sym_false] = ACTIONS(476), - [sym_null] = ACTIONS(476), - [sym_identifier] = ACTIONS(476), - [sym_comment] = ACTIONS(39), - }, - [107] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(480), + [anon_sym_COMMA] = ACTIONS(476), + [anon_sym_RPAREN] = ACTIONS(476), + [anon_sym_SEMI] = ACTIONS(476), [anon_sym_extern] = ACTIONS(478), - [anon_sym_RBRACE] = ACTIONS(480), + [anon_sym_LPAREN2] = ACTIONS(476), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_RBRACK] = ACTIONS(476), [anon_sym_static] = ACTIONS(478), [anon_sym_auto] = ACTIONS(478), [anon_sym_register] = ACTIONS(478), @@ -8361,62 +8373,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(478), [anon_sym_volatile] = ACTIONS(478), [anon_sym__Atomic] = ACTIONS(478), - [anon_sym_unsigned] = ACTIONS(478), - [anon_sym_long] = ACTIONS(478), - [anon_sym_short] = ACTIONS(478), - [sym_primitive_type] = ACTIONS(478), - [anon_sym_enum] = ACTIONS(478), - [anon_sym_struct] = ACTIONS(478), - [anon_sym_union] = ACTIONS(478), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_TILDE] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(478), + [anon_sym_DASH] = ACTIONS(478), + [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_sizeof] = ACTIONS(478), + [sym_number_literal] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(476), + [anon_sym_DQUOTE] = ACTIONS(476), + [sym_true] = ACTIONS(478), + [sym_false] = ACTIONS(478), + [sym_null] = ACTIONS(478), [sym_identifier] = ACTIONS(478), [sym_comment] = ACTIONS(39), }, + [107] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(482), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(482), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(482), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(482), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(482), + [anon_sym_extern] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_static] = ACTIONS(480), + [anon_sym_auto] = ACTIONS(480), + [anon_sym_register] = ACTIONS(480), + [anon_sym_inline] = ACTIONS(480), + [anon_sym_const] = ACTIONS(480), + [anon_sym_restrict] = ACTIONS(480), + [anon_sym_volatile] = ACTIONS(480), + [anon_sym__Atomic] = ACTIONS(480), + [anon_sym_unsigned] = ACTIONS(480), + [anon_sym_long] = ACTIONS(480), + [anon_sym_short] = ACTIONS(480), + [sym_primitive_type] = ACTIONS(480), + [anon_sym_enum] = ACTIONS(480), + [anon_sym_struct] = ACTIONS(480), + [anon_sym_union] = ACTIONS(480), + [sym_identifier] = ACTIONS(480), + [sym_comment] = ACTIONS(39), + }, [108] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(484), - [anon_sym_extern] = ACTIONS(482), - [anon_sym_RBRACE] = ACTIONS(484), - [anon_sym_static] = ACTIONS(482), - [anon_sym_auto] = ACTIONS(482), - [anon_sym_register] = ACTIONS(482), - [anon_sym_inline] = ACTIONS(482), - [anon_sym_const] = ACTIONS(482), - [anon_sym_restrict] = ACTIONS(482), - [anon_sym_volatile] = ACTIONS(482), - [anon_sym__Atomic] = ACTIONS(482), - [anon_sym_unsigned] = ACTIONS(482), - [anon_sym_long] = ACTIONS(482), - [anon_sym_short] = ACTIONS(482), - [sym_primitive_type] = ACTIONS(482), - [anon_sym_enum] = ACTIONS(482), - [anon_sym_struct] = ACTIONS(482), - [anon_sym_union] = ACTIONS(482), - [sym_identifier] = ACTIONS(482), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(484), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(486), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(486), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(486), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(486), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(486), + [anon_sym_extern] = ACTIONS(484), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_static] = ACTIONS(484), + [anon_sym_auto] = ACTIONS(484), + [anon_sym_register] = ACTIONS(484), + [anon_sym_inline] = ACTIONS(484), + [anon_sym_const] = ACTIONS(484), + [anon_sym_restrict] = ACTIONS(484), + [anon_sym_volatile] = ACTIONS(484), + [anon_sym__Atomic] = ACTIONS(484), + [anon_sym_unsigned] = ACTIONS(484), + [anon_sym_long] = ACTIONS(484), + [anon_sym_short] = ACTIONS(484), + [sym_primitive_type] = ACTIONS(484), + [anon_sym_enum] = ACTIONS(484), + [anon_sym_struct] = ACTIONS(484), + [anon_sym_union] = ACTIONS(484), + [sym_identifier] = ACTIONS(484), [sym_comment] = ACTIONS(39), }, [109] = { - [sym__field_declarator] = STATE(200), - [sym_pointer_field_declarator] = STATE(201), - [sym_function_field_declarator] = STATE(202), - [sym_array_field_declarator] = STATE(203), - [anon_sym_LPAREN] = ACTIONS(486), + [sym__field_declarator] = STATE(199), + [sym_pointer_field_declarator] = STATE(200), + [sym_function_field_declarator] = STATE(201), + [sym_array_field_declarator] = STATE(202), [anon_sym_SEMI] = ACTIONS(488), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_COLON] = ACTIONS(492), - [sym_identifier] = ACTIONS(494), + [anon_sym_LPAREN2] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(494), + [sym_identifier] = ACTIONS(496), [sym_comment] = ACTIONS(39), }, [110] = { - [sym_storage_class_specifier] = STATE(204), - [sym_type_qualifier] = STATE(204), - [aux_sym__declaration_specifiers_repeat1] = STATE(204), - [anon_sym_LPAREN] = ACTIONS(98), + [sym_storage_class_specifier] = STATE(203), + [sym_type_qualifier] = STATE(203), + [aux_sym__declaration_specifiers_repeat1] = STATE(203), [anon_sym_SEMI] = ACTIONS(98), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(98), [anon_sym_STAR] = ACTIONS(98), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -8441,17 +8488,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(110), [sym_struct_specifier] = STATE(110), [sym_union_specifier] = STATE(110), - [sym__field_declaration_list_item] = STATE(206), - [sym_field_declaration] = STATE(206), + [sym__field_declaration_list_item] = STATE(205), + [sym_field_declaration] = STATE(205), [sym_macro_type_specifier] = STATE(110), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(206), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(205), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), [anon_sym_extern] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(498), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -8473,12 +8520,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [112] = { [sym_storage_class_specifier] = STATE(51), [sym_type_qualifier] = STATE(51), - [sym__type_specifier] = STATE(207), - [sym_sized_type_specifier] = STATE(207), - [sym_enum_specifier] = STATE(207), - [sym_struct_specifier] = STATE(207), - [sym_union_specifier] = STATE(207), - [sym_macro_type_specifier] = STATE(207), + [sym__type_specifier] = STATE(206), + [sym_sized_type_specifier] = STATE(206), + [sym_enum_specifier] = STATE(206), + [sym_struct_specifier] = STATE(206), + [sym_union_specifier] = STATE(206), + [sym_macro_type_specifier] = STATE(206), [aux_sym__declaration_specifiers_repeat1] = STATE(51), [aux_sym_sized_type_specifier_repeat1] = STATE(113), [anon_sym_extern] = ACTIONS(23), @@ -8493,7 +8540,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(203), [anon_sym_long] = ACTIONS(203), [anon_sym_short] = ACTIONS(203), - [sym_primitive_type] = ACTIONS(498), + [sym_primitive_type] = ACTIONS(500), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -8501,10 +8548,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [113] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(106), + [aux_sym_sized_type_specifier_repeat1] = STATE(207), [anon_sym_SEMI] = ACTIONS(106), [anon_sym_extern] = ACTIONS(108), + [anon_sym_LPAREN2] = ACTIONS(106), [anon_sym_STAR] = ACTIONS(106), [anon_sym_static] = ACTIONS(108), [anon_sym_auto] = ACTIONS(108), @@ -8514,108 +8561,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(108), [anon_sym_volatile] = ACTIONS(108), [anon_sym__Atomic] = ACTIONS(108), - [anon_sym_unsigned] = ACTIONS(500), - [anon_sym_long] = ACTIONS(500), - [anon_sym_short] = ACTIONS(500), + [anon_sym_unsigned] = ACTIONS(502), + [anon_sym_long] = ACTIONS(502), + [anon_sym_short] = ACTIONS(502), [sym_primitive_type] = ACTIONS(112), [anon_sym_COLON] = ACTIONS(106), [sym_identifier] = ACTIONS(114), [sym_comment] = ACTIONS(39), }, [114] = { - [anon_sym_LPAREN] = ACTIONS(502), - [anon_sym_COMMA] = ACTIONS(502), - [anon_sym_RPAREN] = ACTIONS(502), - [anon_sym_SEMI] = ACTIONS(502), - [anon_sym_extern] = ACTIONS(504), - [anon_sym_STAR] = ACTIONS(502), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_RBRACK] = ACTIONS(502), - [anon_sym_static] = ACTIONS(504), - [anon_sym_auto] = ACTIONS(504), - [anon_sym_register] = ACTIONS(504), - [anon_sym_inline] = ACTIONS(504), - [anon_sym_const] = ACTIONS(504), - [anon_sym_restrict] = ACTIONS(504), - [anon_sym_volatile] = ACTIONS(504), - [anon_sym__Atomic] = ACTIONS(504), - [anon_sym_COLON] = ACTIONS(502), - [anon_sym_AMP] = ACTIONS(502), - [anon_sym_BANG] = ACTIONS(502), - [anon_sym_TILDE] = ACTIONS(502), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_DASH_DASH] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_sizeof] = ACTIONS(504), - [sym_number_literal] = ACTIONS(502), - [anon_sym_SQUOTE] = ACTIONS(502), - [anon_sym_DQUOTE] = ACTIONS(502), - [sym_true] = ACTIONS(504), - [sym_false] = ACTIONS(504), - [sym_null] = ACTIONS(504), - [sym_identifier] = ACTIONS(504), + [anon_sym_COMMA] = ACTIONS(504), + [anon_sym_RPAREN] = ACTIONS(504), + [anon_sym_SEMI] = ACTIONS(504), + [anon_sym_extern] = ACTIONS(506), + [anon_sym_LPAREN2] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(504), + [anon_sym_RBRACK] = ACTIONS(504), + [anon_sym_static] = ACTIONS(506), + [anon_sym_auto] = ACTIONS(506), + [anon_sym_register] = ACTIONS(506), + [anon_sym_inline] = ACTIONS(506), + [anon_sym_const] = ACTIONS(506), + [anon_sym_restrict] = ACTIONS(506), + [anon_sym_volatile] = ACTIONS(506), + [anon_sym__Atomic] = ACTIONS(506), + [anon_sym_COLON] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(506), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_DASH_DASH] = ACTIONS(504), + [anon_sym_PLUS_PLUS] = ACTIONS(504), + [anon_sym_sizeof] = ACTIONS(506), + [sym_number_literal] = ACTIONS(504), + [anon_sym_SQUOTE] = ACTIONS(504), + [anon_sym_DQUOTE] = ACTIONS(504), + [sym_true] = ACTIONS(506), + [sym_false] = ACTIONS(506), + [sym_null] = ACTIONS(506), + [sym_identifier] = ACTIONS(506), [sym_comment] = ACTIONS(39), }, [115] = { - [anon_sym_LPAREN] = ACTIONS(506), - [anon_sym_COMMA] = ACTIONS(506), - [anon_sym_RPAREN] = ACTIONS(506), - [anon_sym_SEMI] = ACTIONS(506), - [anon_sym_extern] = ACTIONS(508), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_RBRACK] = ACTIONS(506), - [anon_sym_static] = ACTIONS(508), - [anon_sym_auto] = ACTIONS(508), - [anon_sym_register] = ACTIONS(508), - [anon_sym_inline] = ACTIONS(508), - [anon_sym_const] = ACTIONS(508), - [anon_sym_restrict] = ACTIONS(508), - [anon_sym_volatile] = ACTIONS(508), - [anon_sym__Atomic] = ACTIONS(508), - [anon_sym_COLON] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_BANG] = ACTIONS(506), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_DASH_DASH] = ACTIONS(506), - [anon_sym_PLUS_PLUS] = ACTIONS(506), - [anon_sym_sizeof] = ACTIONS(508), - [sym_number_literal] = ACTIONS(506), - [anon_sym_SQUOTE] = ACTIONS(506), - [anon_sym_DQUOTE] = ACTIONS(506), - [sym_true] = ACTIONS(508), - [sym_false] = ACTIONS(508), - [sym_null] = ACTIONS(508), - [sym_identifier] = ACTIONS(508), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_RPAREN] = ACTIONS(508), + [anon_sym_SEMI] = ACTIONS(508), + [anon_sym_extern] = ACTIONS(510), + [anon_sym_LPAREN2] = ACTIONS(508), + [anon_sym_STAR] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(508), + [anon_sym_RBRACK] = ACTIONS(508), + [anon_sym_static] = ACTIONS(510), + [anon_sym_auto] = ACTIONS(510), + [anon_sym_register] = ACTIONS(510), + [anon_sym_inline] = ACTIONS(510), + [anon_sym_const] = ACTIONS(510), + [anon_sym_restrict] = ACTIONS(510), + [anon_sym_volatile] = ACTIONS(510), + [anon_sym__Atomic] = ACTIONS(510), + [anon_sym_COLON] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_DASH_DASH] = ACTIONS(508), + [anon_sym_PLUS_PLUS] = ACTIONS(508), + [anon_sym_sizeof] = ACTIONS(510), + [sym_number_literal] = ACTIONS(508), + [anon_sym_SQUOTE] = ACTIONS(508), + [anon_sym_DQUOTE] = ACTIONS(508), + [sym_true] = ACTIONS(510), + [sym_false] = ACTIONS(510), + [sym_null] = ACTIONS(510), + [sym_identifier] = ACTIONS(510), [sym_comment] = ACTIONS(39), }, [116] = { - [sym__abstract_declarator] = STATE(212), - [sym_abstract_pointer_declarator] = STATE(212), - [sym_abstract_function_declarator] = STATE(212), - [sym_abstract_array_declarator] = STATE(212), - [sym_parameter_list] = STATE(213), - [anon_sym_LPAREN] = ACTIONS(510), + [sym__abstract_declarator] = STATE(211), + [sym_abstract_pointer_declarator] = STATE(211), + [sym_abstract_function_declarator] = STATE(211), + [sym_abstract_array_declarator] = STATE(211), + [sym_parameter_list] = STATE(212), [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_LPAREN2] = ACTIONS(514), + [anon_sym_STAR] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(518), [sym_comment] = ACTIONS(39), }, [117] = { - [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(520), [sym_comment] = ACTIONS(39), }, [118] = { [sym_type_qualifier] = STATE(90), - [sym__type_specifier] = STATE(215), - [sym_sized_type_specifier] = STATE(215), - [sym_enum_specifier] = STATE(215), - [sym_struct_specifier] = STATE(215), - [sym_union_specifier] = STATE(215), - [sym_macro_type_specifier] = STATE(215), + [sym__type_specifier] = STATE(214), + [sym_sized_type_specifier] = STATE(214), + [sym_enum_specifier] = STATE(214), + [sym_struct_specifier] = STATE(214), + [sym_union_specifier] = STATE(214), + [sym_macro_type_specifier] = STATE(214), [aux_sym_type_definition_repeat1] = STATE(90), [aux_sym_sized_type_specifier_repeat1] = STATE(119), [anon_sym_const] = ACTIONS(25), @@ -8625,7 +8672,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(223), [anon_sym_long] = ACTIONS(223), [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(520), + [sym_primitive_type] = ACTIONS(522), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -8633,16 +8680,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [119] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(216), - [anon_sym_LPAREN] = ACTIONS(106), + [aux_sym_sized_type_specifier_repeat1] = STATE(215), [anon_sym_RPAREN] = ACTIONS(106), + [anon_sym_LPAREN2] = ACTIONS(106), [anon_sym_STAR] = ACTIONS(106), [anon_sym_LBRACK] = ACTIONS(106), - [anon_sym_unsigned] = ACTIONS(522), - [anon_sym_long] = ACTIONS(522), - [anon_sym_short] = ACTIONS(522), + [anon_sym_unsigned] = ACTIONS(524), + [anon_sym_long] = ACTIONS(524), + [anon_sym_short] = ACTIONS(524), [sym_primitive_type] = ACTIONS(112), - [sym_identifier] = ACTIONS(524), + [sym_identifier] = ACTIONS(526), [sym_comment] = ACTIONS(39), }, [120] = { @@ -8650,10 +8697,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(122), [sym_function_declarator] = STATE(122), [sym_array_declarator] = STATE(122), - [sym_type_qualifier] = STATE(217), - [aux_sym_type_definition_repeat1] = STATE(217), - [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_STAR] = ACTIONS(227), + [sym_type_qualifier] = STATE(216), + [aux_sym_type_definition_repeat1] = STATE(216), + [anon_sym_LPAREN2] = ACTIONS(92), + [anon_sym_STAR] = ACTIONS(231), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -8663,153 +8710,119 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [121] = { [sym_parameter_list] = STATE(131), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_RPAREN] = ACTIONS(526), + [anon_sym_RPAREN] = ACTIONS(528), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, [122] = { [sym_parameter_list] = STATE(131), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(528), - [anon_sym_RPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(528), - [anon_sym_LBRACE] = ACTIONS(528), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_RPAREN] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(528), + [anon_sym_EQ] = ACTIONS(530), [sym_comment] = ACTIONS(39), }, [123] = { - [sym__declarator] = STATE(219), - [sym_pointer_declarator] = STATE(219), - [sym_function_declarator] = STATE(219), - [sym_array_declarator] = STATE(219), - [sym_type_qualifier] = STATE(220), - [aux_sym_type_definition_repeat1] = STATE(220), - [anon_sym_LPAREN] = ACTIONS(90), + [sym__declarator] = STATE(218), + [sym_pointer_declarator] = STATE(218), + [sym_function_declarator] = STATE(218), + [sym_array_declarator] = STATE(218), + [sym_type_qualifier] = STATE(219), + [aux_sym_type_definition_repeat1] = STATE(219), + [anon_sym_LPAREN2] = ACTIONS(92), [anon_sym_STAR] = ACTIONS(94), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(530), + [sym_identifier] = ACTIONS(532), [sym_comment] = ACTIONS(39), }, [124] = { - [sym__declaration_specifiers] = STATE(223), - [sym_storage_class_specifier] = STATE(225), - [sym_type_qualifier] = STATE(225), - [sym__type_specifier] = STATE(224), - [sym_sized_type_specifier] = STATE(224), - [sym_enum_specifier] = STATE(224), - [sym_struct_specifier] = STATE(224), - [sym_union_specifier] = STATE(224), - [sym_parameter_declaration] = STATE(221), - [sym_macro_type_specifier] = STATE(224), - [aux_sym__declaration_specifiers_repeat1] = STATE(225), - [aux_sym_sized_type_specifier_repeat1] = STATE(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(534), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(536), - [anon_sym_long] = ACTIONS(536), - [anon_sym_short] = ACTIONS(536), - [sym_primitive_type] = ACTIONS(538), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [sym_identifier] = ACTIONS(37), + [sym__declarator] = STATE(221), + [sym_pointer_declarator] = STATE(221), + [sym_function_declarator] = STATE(221), + [sym_array_declarator] = STATE(221), + [sym_init_declarator] = STATE(222), + [anon_sym_LPAREN2] = ACTIONS(92), + [anon_sym_STAR] = ACTIONS(534), + [sym_identifier] = ACTIONS(536), [sym_comment] = ACTIONS(39), }, [125] = { - [sym__declarator] = STATE(228), - [sym_pointer_declarator] = STATE(228), - [sym_function_declarator] = STATE(228), - [sym_array_declarator] = STATE(228), - [sym_init_declarator] = STATE(229), - [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_STAR] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), + [ts_builtin_sym_end] = ACTIONS(538), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(540), + [sym_preproc_directive] = ACTIONS(540), + [anon_sym_SEMI] = ACTIONS(538), + [anon_sym_typedef] = ACTIONS(540), + [anon_sym_extern] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(538), + [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_LPAREN2] = ACTIONS(538), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_static] = ACTIONS(540), + [anon_sym_auto] = ACTIONS(540), + [anon_sym_register] = ACTIONS(540), + [anon_sym_inline] = ACTIONS(540), + [anon_sym_const] = ACTIONS(540), + [anon_sym_restrict] = ACTIONS(540), + [anon_sym_volatile] = ACTIONS(540), + [anon_sym__Atomic] = ACTIONS(540), + [anon_sym_unsigned] = ACTIONS(540), + [anon_sym_long] = ACTIONS(540), + [anon_sym_short] = ACTIONS(540), + [sym_primitive_type] = ACTIONS(540), + [anon_sym_enum] = ACTIONS(540), + [anon_sym_struct] = ACTIONS(540), + [anon_sym_union] = ACTIONS(540), + [anon_sym_if] = ACTIONS(540), + [anon_sym_else] = ACTIONS(540), + [anon_sym_switch] = ACTIONS(540), + [anon_sym_case] = ACTIONS(540), + [anon_sym_default] = ACTIONS(540), + [anon_sym_while] = ACTIONS(540), + [anon_sym_do] = ACTIONS(540), + [anon_sym_for] = ACTIONS(540), + [anon_sym_return] = ACTIONS(540), + [anon_sym_break] = ACTIONS(540), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_goto] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_BANG] = ACTIONS(538), + [anon_sym_TILDE] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_DASH_DASH] = ACTIONS(538), + [anon_sym_PLUS_PLUS] = ACTIONS(538), + [anon_sym_sizeof] = ACTIONS(540), + [sym_number_literal] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE] = ACTIONS(538), + [sym_true] = ACTIONS(540), + [sym_false] = ACTIONS(540), + [sym_null] = ACTIONS(540), + [sym_identifier] = ACTIONS(540), [sym_comment] = ACTIONS(39), }, [126] = { - [ts_builtin_sym_end] = ACTIONS(544), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(546), - [anon_sym_LPAREN] = ACTIONS(544), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(546), - [sym_preproc_directive] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_typedef] = ACTIONS(546), - [anon_sym_extern] = ACTIONS(546), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_static] = ACTIONS(546), - [anon_sym_auto] = ACTIONS(546), - [anon_sym_register] = ACTIONS(546), - [anon_sym_inline] = ACTIONS(546), - [anon_sym_const] = ACTIONS(546), - [anon_sym_restrict] = ACTIONS(546), - [anon_sym_volatile] = ACTIONS(546), - [anon_sym__Atomic] = ACTIONS(546), - [anon_sym_unsigned] = ACTIONS(546), - [anon_sym_long] = ACTIONS(546), - [anon_sym_short] = ACTIONS(546), - [sym_primitive_type] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(546), - [anon_sym_struct] = ACTIONS(546), - [anon_sym_union] = ACTIONS(546), - [anon_sym_if] = ACTIONS(546), - [anon_sym_else] = ACTIONS(546), - [anon_sym_switch] = ACTIONS(546), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(546), - [anon_sym_while] = ACTIONS(546), - [anon_sym_do] = ACTIONS(546), - [anon_sym_for] = ACTIONS(546), - [anon_sym_return] = ACTIONS(546), - [anon_sym_break] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(546), - [anon_sym_goto] = ACTIONS(546), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_sizeof] = ACTIONS(546), - [sym_number_literal] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(544), - [sym_true] = ACTIONS(546), - [sym_false] = ACTIONS(546), - [sym_null] = ACTIONS(546), - [sym_identifier] = ACTIONS(546), - [sym_comment] = ACTIONS(39), - }, - [127] = { - [sym_preproc_include] = STATE(261), - [sym_preproc_def] = STATE(261), - [sym_preproc_function_def] = STATE(261), - [sym_preproc_call] = STATE(261), - [sym_preproc_if_in_compound_statement] = STATE(255), - [sym_preproc_ifdef_in_compound_statement] = STATE(256), - [sym_declaration] = STATE(261), - [sym_type_definition] = STATE(261), - [sym__declaration_specifiers] = STATE(257), - [sym_compound_statement] = STATE(261), + [sym_preproc_include] = STATE(254), + [sym_preproc_def] = STATE(254), + [sym_preproc_function_def] = STATE(254), + [sym_preproc_call] = STATE(254), + [sym_preproc_if_in_compound_statement] = STATE(248), + [sym_preproc_ifdef_in_compound_statement] = STATE(249), + [sym_declaration] = STATE(254), + [sym_type_definition] = STATE(254), + [sym__declaration_specifiers] = STATE(250), + [sym_compound_statement] = STATE(254), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -8817,57 +8830,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(261), - [sym_expression_statement] = STATE(261), - [sym_if_statement] = STATE(261), - [sym_switch_statement] = STATE(261), - [sym_case_statement] = STATE(261), - [sym_while_statement] = STATE(261), - [sym_do_statement] = STATE(261), - [sym_for_statement] = STATE(261), - [sym_return_statement] = STATE(261), - [sym_break_statement] = STATE(261), - [sym_continue_statement] = STATE(261), - [sym_goto_statement] = STATE(261), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [sym__empty_declaration] = STATE(261), + [sym_labeled_statement] = STATE(254), + [sym_expression_statement] = STATE(254), + [sym_if_statement] = STATE(254), + [sym_switch_statement] = STATE(254), + [sym_case_statement] = STATE(254), + [sym_while_statement] = STATE(254), + [sym_do_statement] = STATE(254), + [sym_for_statement] = STATE(254), + [sym_return_statement] = STATE(254), + [sym_break_statement] = STATE(254), + [sym_continue_statement] = STATE(254), + [sym_goto_statement] = STATE(254), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(254), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(261), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(254), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(548), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(542), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(552), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(544), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(546), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(548), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(550), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -8883,70 +8896,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(596), + [sym_comment] = ACTIONS(39), + }, + [127] = { + [sym__declaration_specifiers] = STATE(257), + [sym_storage_class_specifier] = STATE(259), + [sym_type_qualifier] = STATE(259), + [sym__type_specifier] = STATE(258), + [sym_sized_type_specifier] = STATE(258), + [sym_enum_specifier] = STATE(258), + [sym_struct_specifier] = STATE(258), + [sym_union_specifier] = STATE(258), + [sym_parameter_declaration] = STATE(255), + [sym_macro_type_specifier] = STATE(258), + [aux_sym__declaration_specifiers_repeat1] = STATE(259), + [aux_sym_sized_type_specifier_repeat1] = STATE(260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(598), + [anon_sym_RPAREN] = ACTIONS(600), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(602), + [anon_sym_long] = ACTIONS(602), + [anon_sym_short] = ACTIONS(602), + [sym_primitive_type] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, [128] = { - [sym__declaration_specifiers] = STATE(270), - [sym_storage_class_specifier] = STATE(274), - [sym_type_qualifier] = STATE(274), - [sym__type_specifier] = STATE(271), - [sym_sized_type_specifier] = STATE(271), - [sym_enum_specifier] = STATE(271), - [sym_struct_specifier] = STATE(271), - [sym_union_specifier] = STATE(271), - [sym__expression] = STATE(272), - [sym_conditional_expression] = STATE(272), - [sym_assignment_expression] = STATE(272), - [sym_pointer_expression] = STATE(272), - [sym_logical_expression] = STATE(272), - [sym_bitwise_expression] = STATE(272), - [sym_equality_expression] = STATE(272), - [sym_relational_expression] = STATE(272), - [sym_shift_expression] = STATE(272), - [sym_math_expression] = STATE(272), - [sym_cast_expression] = STATE(272), - [sym_sizeof_expression] = STATE(272), - [sym_subscript_expression] = STATE(272), - [sym_call_expression] = STATE(272), - [sym_field_expression] = STATE(272), - [sym_compound_literal_expression] = STATE(272), - [sym_parenthesized_expression] = STATE(272), - [sym_char_literal] = STATE(272), - [sym_concatenated_string] = STATE(272), - [sym_string_literal] = STATE(273), - [sym_macro_type_specifier] = STATE(271), - [aux_sym__declaration_specifiers_repeat1] = STATE(274), - [aux_sym_sized_type_specifier_repeat1] = STATE(275), - [anon_sym_LPAREN] = ACTIONS(604), + [sym__declaration_specifiers] = STATE(269), + [sym_storage_class_specifier] = STATE(273), + [sym_type_qualifier] = STATE(273), + [sym__type_specifier] = STATE(270), + [sym_sized_type_specifier] = STATE(270), + [sym_enum_specifier] = STATE(270), + [sym_struct_specifier] = STATE(270), + [sym_union_specifier] = STATE(270), + [sym__expression] = STATE(271), + [sym_conditional_expression] = STATE(271), + [sym_assignment_expression] = STATE(271), + [sym_pointer_expression] = STATE(271), + [sym_logical_expression] = STATE(271), + [sym_bitwise_expression] = STATE(271), + [sym_equality_expression] = STATE(271), + [sym_relational_expression] = STATE(271), + [sym_shift_expression] = STATE(271), + [sym_math_expression] = STATE(271), + [sym_cast_expression] = STATE(271), + [sym_sizeof_expression] = STATE(271), + [sym_subscript_expression] = STATE(271), + [sym_call_expression] = STATE(271), + [sym_field_expression] = STATE(271), + [sym_compound_literal_expression] = STATE(271), + [sym_parenthesized_expression] = STATE(271), + [sym_char_literal] = STATE(271), + [sym_concatenated_string] = STATE(271), + [sym_string_literal] = STATE(272), + [sym_macro_type_specifier] = STATE(270), + [aux_sym__declaration_specifiers_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(274), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_RBRACK] = ACTIONS(608), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_RBRACK] = ACTIONS(610), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -8955,125 +9002,125 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(610), - [anon_sym_long] = ACTIONS(610), - [anon_sym_short] = ACTIONS(610), - [sym_primitive_type] = ACTIONS(612), + [anon_sym_unsigned] = ACTIONS(612), + [anon_sym_long] = ACTIONS(612), + [anon_sym_short] = ACTIONS(612), + [sym_primitive_type] = ACTIONS(614), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(624), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_identifier] = ACTIONS(628), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(626), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(628), + [sym_false] = ACTIONS(628), + [sym_null] = ACTIONS(628), + [sym_identifier] = ACTIONS(630), [sym_comment] = ACTIONS(39), }, [129] = { - [sym__expression] = STATE(277), - [sym_conditional_expression] = STATE(277), - [sym_assignment_expression] = STATE(277), - [sym_pointer_expression] = STATE(277), - [sym_logical_expression] = STATE(277), - [sym_bitwise_expression] = STATE(277), - [sym_equality_expression] = STATE(277), - [sym_relational_expression] = STATE(277), - [sym_shift_expression] = STATE(277), - [sym_math_expression] = STATE(277), - [sym_cast_expression] = STATE(277), - [sym_sizeof_expression] = STATE(277), - [sym_subscript_expression] = STATE(277), - [sym_call_expression] = STATE(277), - [sym_field_expression] = STATE(277), - [sym_compound_literal_expression] = STATE(277), - [sym_parenthesized_expression] = STATE(277), - [sym_initializer_list] = STATE(278), - [sym_char_literal] = STATE(277), - [sym_concatenated_string] = STATE(277), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(632), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(634), - [sym_false] = ACTIONS(634), - [sym_null] = ACTIONS(634), - [sym_identifier] = ACTIONS(634), + [sym__expression] = STATE(276), + [sym_conditional_expression] = STATE(276), + [sym_assignment_expression] = STATE(276), + [sym_pointer_expression] = STATE(276), + [sym_logical_expression] = STATE(276), + [sym_bitwise_expression] = STATE(276), + [sym_equality_expression] = STATE(276), + [sym_relational_expression] = STATE(276), + [sym_shift_expression] = STATE(276), + [sym_math_expression] = STATE(276), + [sym_cast_expression] = STATE(276), + [sym_sizeof_expression] = STATE(276), + [sym_subscript_expression] = STATE(276), + [sym_call_expression] = STATE(276), + [sym_field_expression] = STATE(276), + [sym_compound_literal_expression] = STATE(276), + [sym_parenthesized_expression] = STATE(276), + [sym_initializer_list] = STATE(277), + [sym_char_literal] = STATE(276), + [sym_concatenated_string] = STATE(276), + [sym_string_literal] = STATE(253), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(634), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(636), + [sym_false] = ACTIONS(636), + [sym_null] = ACTIONS(636), + [sym_identifier] = ACTIONS(636), [sym_comment] = ACTIONS(39), }, [130] = { - [ts_builtin_sym_end] = ACTIONS(636), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(638), - [sym_preproc_directive] = ACTIONS(638), - [anon_sym_typedef] = ACTIONS(638), - [anon_sym_extern] = ACTIONS(638), - [anon_sym_RBRACE] = ACTIONS(636), - [anon_sym_static] = ACTIONS(638), - [anon_sym_auto] = ACTIONS(638), - [anon_sym_register] = ACTIONS(638), - [anon_sym_inline] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_restrict] = ACTIONS(638), - [anon_sym_volatile] = ACTIONS(638), - [anon_sym__Atomic] = ACTIONS(638), - [anon_sym_unsigned] = ACTIONS(638), - [anon_sym_long] = ACTIONS(638), - [anon_sym_short] = ACTIONS(638), - [sym_primitive_type] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [sym_identifier] = ACTIONS(638), + [ts_builtin_sym_end] = ACTIONS(638), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(640), + [sym_preproc_directive] = ACTIONS(640), + [anon_sym_typedef] = ACTIONS(640), + [anon_sym_extern] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(638), + [anon_sym_static] = ACTIONS(640), + [anon_sym_auto] = ACTIONS(640), + [anon_sym_register] = ACTIONS(640), + [anon_sym_inline] = ACTIONS(640), + [anon_sym_const] = ACTIONS(640), + [anon_sym_restrict] = ACTIONS(640), + [anon_sym_volatile] = ACTIONS(640), + [anon_sym__Atomic] = ACTIONS(640), + [anon_sym_unsigned] = ACTIONS(640), + [anon_sym_long] = ACTIONS(640), + [anon_sym_short] = ACTIONS(640), + [sym_primitive_type] = ACTIONS(640), + [anon_sym_enum] = ACTIONS(640), + [anon_sym_struct] = ACTIONS(640), + [anon_sym_union] = ACTIONS(640), + [sym_identifier] = ACTIONS(640), [sym_comment] = ACTIONS(39), }, [131] = { - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_RPAREN] = ACTIONS(640), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(642), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_LPAREN2] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(642), + [anon_sym_EQ] = ACTIONS(642), [sym_comment] = ACTIONS(39), }, [132] = { - [aux_sym_declaration_repeat1] = STATE(280), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(642), + [aux_sym_declaration_repeat1] = STATE(279), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(644), [sym_comment] = ACTIONS(39), }, [133] = { [sym_storage_class_specifier] = STATE(133), [sym_type_qualifier] = STATE(133), [aux_sym__declaration_specifiers_repeat1] = STATE(133), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(644), + [anon_sym_SEMI] = ACTIONS(646), [anon_sym_extern] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LPAREN2] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), [anon_sym_static] = ACTIONS(303), [anon_sym_auto] = ACTIONS(303), [anon_sym_register] = ACTIONS(303), @@ -9089,10 +9136,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_storage_class_specifier] = STATE(133), [sym_type_qualifier] = STATE(133), [aux_sym__declaration_specifiers_repeat1] = STATE(133), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_SEMI] = ACTIONS(648), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LPAREN2] = ACTIONS(648), + [anon_sym_STAR] = ACTIONS(648), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -9101,108 +9148,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(648), + [sym_identifier] = ACTIONS(650), [sym_comment] = ACTIONS(39), }, [135] = { - [ts_builtin_sym_end] = ACTIONS(650), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(650), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(652), - [sym_preproc_directive] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_typedef] = ACTIONS(652), - [anon_sym_extern] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_RBRACK] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(652), - [anon_sym_static] = ACTIONS(652), - [anon_sym_auto] = ACTIONS(652), - [anon_sym_register] = ACTIONS(652), - [anon_sym_inline] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_restrict] = ACTIONS(652), - [anon_sym_volatile] = ACTIONS(652), - [anon_sym__Atomic] = ACTIONS(652), - [anon_sym_unsigned] = ACTIONS(652), - [anon_sym_long] = ACTIONS(652), - [anon_sym_short] = ACTIONS(652), - [sym_primitive_type] = ACTIONS(652), - [anon_sym_enum] = ACTIONS(652), - [anon_sym_struct] = ACTIONS(652), - [anon_sym_union] = ACTIONS(652), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_STAR_EQ] = ACTIONS(650), - [anon_sym_SLASH_EQ] = ACTIONS(650), - [anon_sym_PERCENT_EQ] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(650), - [anon_sym_DASH_EQ] = ACTIONS(650), - [anon_sym_LT_LT_EQ] = ACTIONS(650), - [anon_sym_GT_GT_EQ] = ACTIONS(650), - [anon_sym_AMP_EQ] = ACTIONS(650), - [anon_sym_CARET_EQ] = ACTIONS(650), - [anon_sym_PIPE_EQ] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(652), - [anon_sym_PIPE_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(652), - [anon_sym_CARET] = ACTIONS(652), - [anon_sym_EQ_EQ] = ACTIONS(650), - [anon_sym_BANG_EQ] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(652), - [anon_sym_GT] = ACTIONS(652), - [anon_sym_LT_EQ] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(650), - [anon_sym_LT_LT] = ACTIONS(652), - [anon_sym_GT_GT] = ACTIONS(652), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_SLASH] = ACTIONS(652), - [anon_sym_PERCENT] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DASH_GT] = ACTIONS(650), - [anon_sym_DQUOTE] = ACTIONS(650), - [sym_identifier] = ACTIONS(652), + [ts_builtin_sym_end] = ACTIONS(652), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(654), + [anon_sym_COMMA] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(652), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(654), + [sym_preproc_directive] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_typedef] = ACTIONS(654), + [anon_sym_extern] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_LBRACK] = ACTIONS(652), + [anon_sym_RBRACK] = ACTIONS(652), + [anon_sym_EQ] = ACTIONS(654), + [anon_sym_static] = ACTIONS(654), + [anon_sym_auto] = ACTIONS(654), + [anon_sym_register] = ACTIONS(654), + [anon_sym_inline] = ACTIONS(654), + [anon_sym_const] = ACTIONS(654), + [anon_sym_restrict] = ACTIONS(654), + [anon_sym_volatile] = ACTIONS(654), + [anon_sym__Atomic] = ACTIONS(654), + [anon_sym_unsigned] = ACTIONS(654), + [anon_sym_long] = ACTIONS(654), + [anon_sym_short] = ACTIONS(654), + [sym_primitive_type] = ACTIONS(654), + [anon_sym_enum] = ACTIONS(654), + [anon_sym_struct] = ACTIONS(654), + [anon_sym_union] = ACTIONS(654), + [anon_sym_COLON] = ACTIONS(652), + [anon_sym_QMARK] = ACTIONS(652), + [anon_sym_STAR_EQ] = ACTIONS(652), + [anon_sym_SLASH_EQ] = ACTIONS(652), + [anon_sym_PERCENT_EQ] = ACTIONS(652), + [anon_sym_PLUS_EQ] = ACTIONS(652), + [anon_sym_DASH_EQ] = ACTIONS(652), + [anon_sym_LT_LT_EQ] = ACTIONS(652), + [anon_sym_GT_GT_EQ] = ACTIONS(652), + [anon_sym_AMP_EQ] = ACTIONS(652), + [anon_sym_CARET_EQ] = ACTIONS(652), + [anon_sym_PIPE_EQ] = ACTIONS(652), + [anon_sym_AMP] = ACTIONS(654), + [anon_sym_PIPE_PIPE] = ACTIONS(652), + [anon_sym_AMP_AMP] = ACTIONS(652), + [anon_sym_PIPE] = ACTIONS(654), + [anon_sym_CARET] = ACTIONS(654), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_GT] = ACTIONS(654), + [anon_sym_LT_EQ] = ACTIONS(652), + [anon_sym_GT_EQ] = ACTIONS(652), + [anon_sym_LT_LT] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_SLASH] = ACTIONS(654), + [anon_sym_PERCENT] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(652), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_DASH_GT] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(652), + [sym_identifier] = ACTIONS(654), [sym_comment] = ACTIONS(39), }, [136] = { [aux_sym_string_literal_repeat1] = STATE(136), - [anon_sym_DQUOTE] = ACTIONS(654), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(656), - [sym_escape_sequence] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(656), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(658), + [sym_escape_sequence] = ACTIONS(661), [sym_comment] = ACTIONS(49), }, [137] = { - [anon_sym_LF] = ACTIONS(662), - [sym_comment] = ACTIONS(49), - }, - [138] = { - [aux_sym_preproc_params_repeat1] = STATE(284), + [aux_sym_preproc_params_repeat1] = STATE(282), [anon_sym_COMMA] = ACTIONS(664), [anon_sym_RPAREN] = ACTIONS(666), [sym_comment] = ACTIONS(39), }, - [139] = { + [138] = { [anon_sym_LF] = ACTIONS(668), [sym_preproc_arg] = ACTIONS(668), [sym_comment] = ACTIONS(49), }, - [140] = { + [139] = { [ts_builtin_sym_end] = ACTIONS(670), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(672), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(670), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(672), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(672), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(672), @@ -9212,6 +9254,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(672), [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_LPAREN2] = ACTIONS(670), [anon_sym_STAR] = ACTIONS(670), [anon_sym_static] = ACTIONS(672), [anon_sym_auto] = ACTIONS(672), @@ -9256,21 +9299,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(672), [sym_comment] = ACTIONS(39), }, + [140] = { + [ts_builtin_sym_end] = ACTIONS(674), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(676), + [sym_preproc_directive] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(674), + [anon_sym_typedef] = ACTIONS(676), + [anon_sym_extern] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(674), + [anon_sym_RBRACE] = ACTIONS(674), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_static] = ACTIONS(676), + [anon_sym_auto] = ACTIONS(676), + [anon_sym_register] = ACTIONS(676), + [anon_sym_inline] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_restrict] = ACTIONS(676), + [anon_sym_volatile] = ACTIONS(676), + [anon_sym__Atomic] = ACTIONS(676), + [anon_sym_unsigned] = ACTIONS(676), + [anon_sym_long] = ACTIONS(676), + [anon_sym_short] = ACTIONS(676), + [sym_primitive_type] = ACTIONS(676), + [anon_sym_enum] = ACTIONS(676), + [anon_sym_struct] = ACTIONS(676), + [anon_sym_union] = ACTIONS(676), + [anon_sym_if] = ACTIONS(676), + [anon_sym_switch] = ACTIONS(676), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(676), + [anon_sym_while] = ACTIONS(676), + [anon_sym_do] = ACTIONS(676), + [anon_sym_for] = ACTIONS(676), + [anon_sym_return] = ACTIONS(676), + [anon_sym_break] = ACTIONS(676), + [anon_sym_continue] = ACTIONS(676), + [anon_sym_goto] = ACTIONS(676), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(674), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_DQUOTE] = ACTIONS(674), + [sym_true] = ACTIONS(676), + [sym_false] = ACTIONS(676), + [sym_null] = ACTIONS(676), + [sym_identifier] = ACTIONS(676), + [sym_comment] = ACTIONS(39), + }, [141] = { - [anon_sym_LF] = ACTIONS(674), + [anon_sym_LF] = ACTIONS(678), [sym_comment] = ACTIONS(49), }, [142] = { - [aux_sym_string_literal_repeat1] = STATE(287), - [anon_sym_DQUOTE] = ACTIONS(676), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(678), - [sym_escape_sequence] = ACTIONS(680), + [aux_sym_string_literal_repeat1] = STATE(285), + [anon_sym_DQUOTE] = ACTIONS(680), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(682), + [sym_escape_sequence] = ACTIONS(684), [sym_comment] = ACTIONS(49), }, [143] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(125), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(125), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(125), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(125), @@ -9282,6 +9382,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(125), [anon_sym_extern] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), [anon_sym_STAR] = ACTIONS(123), [anon_sym_static] = ACTIONS(125), [anon_sym_auto] = ACTIONS(125), @@ -9327,26 +9428,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [144] = { - [sym_preproc_params] = STATE(290), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(682), - [anon_sym_LF] = ACTIONS(684), - [anon_sym_LPAREN] = ACTIONS(131), + [sym_preproc_params] = STATE(288), + [anon_sym_LF] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(129), + [sym_preproc_arg] = ACTIONS(688), [sym_comment] = ACTIONS(49), }, [145] = { - [sym_preproc_include] = STATE(293), - [sym_preproc_def] = STATE(293), - [sym_preproc_function_def] = STATE(293), - [sym_preproc_call] = STATE(293), - [sym_preproc_if] = STATE(293), - [sym_preproc_ifdef] = STATE(293), - [sym_preproc_else] = STATE(292), - [sym_preproc_elif] = STATE(292), - [sym_function_definition] = STATE(293), - [sym_declaration] = STATE(293), - [sym_type_definition] = STATE(293), + [sym_preproc_include] = STATE(291), + [sym_preproc_def] = STATE(291), + [sym_preproc_function_def] = STATE(291), + [sym_preproc_call] = STATE(291), + [sym_preproc_if] = STATE(291), + [sym_preproc_ifdef] = STATE(291), + [sym_preproc_else] = STATE(290), + [sym_preproc_elif] = STATE(290), + [sym_function_definition] = STATE(291), + [sym_declaration] = STATE(291), + [sym_type_definition] = STATE(291), [sym__declaration_specifiers] = STATE(73), - [sym_linkage_specification] = STATE(293), + [sym_linkage_specification] = STATE(291), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -9354,15 +9455,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(293), + [sym__empty_declaration] = STATE(291), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(293), + [aux_sym_translation_unit_repeat1] = STATE(291), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(686), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(690), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), @@ -9389,19 +9490,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [146] = { - [sym_preproc_include] = STATE(296), - [sym_preproc_def] = STATE(296), - [sym_preproc_function_def] = STATE(296), - [sym_preproc_call] = STATE(296), - [sym_preproc_if] = STATE(296), - [sym_preproc_ifdef] = STATE(296), - [sym_preproc_else] = STATE(295), - [sym_preproc_elif] = STATE(295), - [sym_function_definition] = STATE(296), - [sym_declaration] = STATE(296), - [sym_type_definition] = STATE(296), + [sym_preproc_include] = STATE(294), + [sym_preproc_def] = STATE(294), + [sym_preproc_function_def] = STATE(294), + [sym_preproc_call] = STATE(294), + [sym_preproc_if] = STATE(294), + [sym_preproc_ifdef] = STATE(294), + [sym_preproc_else] = STATE(293), + [sym_preproc_elif] = STATE(293), + [sym_function_definition] = STATE(294), + [sym_declaration] = STATE(294), + [sym_type_definition] = STATE(294), [sym__declaration_specifiers] = STATE(73), - [sym_linkage_specification] = STATE(296), + [sym_linkage_specification] = STATE(294), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -9409,15 +9510,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(296), + [sym__empty_declaration] = STATE(294), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(296), + [aux_sym_translation_unit_repeat1] = STATE(294), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(688), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(692), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), @@ -9444,19 +9545,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [147] = { - [sym_preproc_include] = STATE(299), - [sym_preproc_def] = STATE(299), - [sym_preproc_function_def] = STATE(299), - [sym_preproc_call] = STATE(299), - [sym_preproc_if] = STATE(299), - [sym_preproc_ifdef] = STATE(299), - [sym_preproc_else] = STATE(298), - [sym_preproc_elif] = STATE(298), - [sym_function_definition] = STATE(299), - [sym_declaration] = STATE(299), - [sym_type_definition] = STATE(299), + [sym_preproc_include] = STATE(297), + [sym_preproc_def] = STATE(297), + [sym_preproc_function_def] = STATE(297), + [sym_preproc_call] = STATE(297), + [sym_preproc_if] = STATE(297), + [sym_preproc_ifdef] = STATE(297), + [sym_preproc_else] = STATE(296), + [sym_preproc_elif] = STATE(296), + [sym_function_definition] = STATE(297), + [sym_declaration] = STATE(297), + [sym_type_definition] = STATE(297), [sym__declaration_specifiers] = STATE(73), - [sym_linkage_specification] = STATE(299), + [sym_linkage_specification] = STATE(297), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -9464,15 +9565,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(299), + [sym__empty_declaration] = STATE(297), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(299), + [aux_sym_translation_unit_repeat1] = STATE(297), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(694), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), @@ -9499,41 +9600,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [148] = { - [sym_string_literal] = STATE(301), - [anon_sym_DQUOTE] = ACTIONS(692), - [sym_system_lib_string] = ACTIONS(694), + [sym_string_literal] = STATE(299), + [anon_sym_DQUOTE] = ACTIONS(696), + [sym_system_lib_string] = ACTIONS(698), [sym_comment] = ACTIONS(39), }, [149] = { - [sym_identifier] = ACTIONS(696), + [sym_identifier] = ACTIONS(700), [sym_comment] = ACTIONS(39), }, [150] = { - [sym_preproc_arg] = ACTIONS(698), + [sym_preproc_arg] = ACTIONS(702), [sym_comment] = ACTIONS(49), }, [151] = { - [sym_identifier] = ACTIONS(700), + [sym_identifier] = ACTIONS(704), [sym_comment] = ACTIONS(39), }, [152] = { - [sym_identifier] = ACTIONS(702), + [sym_identifier] = ACTIONS(706), [sym_comment] = ACTIONS(39), }, [153] = { - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(704), - [anon_sym_LF] = ACTIONS(706), + [anon_sym_LF] = ACTIONS(708), + [sym_preproc_arg] = ACTIONS(710), [sym_comment] = ACTIONS(49), }, [154] = { - [sym_type_qualifier] = STATE(309), - [sym__type_specifier] = STATE(308), - [sym_sized_type_specifier] = STATE(308), - [sym_enum_specifier] = STATE(308), - [sym_struct_specifier] = STATE(308), - [sym_union_specifier] = STATE(308), - [sym_macro_type_specifier] = STATE(308), - [aux_sym_type_definition_repeat1] = STATE(309), + [sym_type_qualifier] = STATE(307), + [sym__type_specifier] = STATE(306), + [sym_sized_type_specifier] = STATE(306), + [sym_enum_specifier] = STATE(306), + [sym_struct_specifier] = STATE(306), + [sym_union_specifier] = STATE(306), + [sym_macro_type_specifier] = STATE(306), + [aux_sym_type_definition_repeat1] = STATE(307), [aux_sym_sized_type_specifier_repeat1] = STATE(32), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), @@ -9542,7 +9643,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(708), + [sym_primitive_type] = ACTIONS(712), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -9550,7 +9651,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [155] = { - [sym_string_literal] = STATE(310), + [sym_string_literal] = STATE(308), [anon_sym_extern] = ACTIONS(63), [anon_sym_static] = ACTIONS(63), [anon_sym_auto] = ACTIONS(63), @@ -9572,29 +9673,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [156] = { - [sym__declarator] = STATE(312), - [sym_pointer_declarator] = STATE(312), - [sym_function_declarator] = STATE(312), - [sym_array_declarator] = STATE(312), - [sym_init_declarator] = STATE(313), - [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_SEMI] = ACTIONS(710), + [sym__declarator] = STATE(310), + [sym_pointer_declarator] = STATE(310), + [sym_function_declarator] = STATE(310), + [sym_array_declarator] = STATE(310), + [sym_init_declarator] = STATE(311), + [anon_sym_SEMI] = ACTIONS(714), + [anon_sym_LPAREN2] = ACTIONS(92), [anon_sym_STAR] = ACTIONS(94), - [sym_identifier] = ACTIONS(712), + [sym_identifier] = ACTIONS(716), [sym_comment] = ACTIONS(39), }, [157] = { - [sym_preproc_include] = STATE(314), - [sym_preproc_def] = STATE(314), - [sym_preproc_function_def] = STATE(314), - [sym_preproc_call] = STATE(314), - [sym_preproc_if] = STATE(314), - [sym_preproc_ifdef] = STATE(314), - [sym_function_definition] = STATE(314), - [sym_declaration] = STATE(314), - [sym_type_definition] = STATE(314), + [sym_preproc_include] = STATE(312), + [sym_preproc_def] = STATE(312), + [sym_preproc_function_def] = STATE(312), + [sym_preproc_call] = STATE(312), + [sym_preproc_if] = STATE(312), + [sym_preproc_ifdef] = STATE(312), + [sym_function_definition] = STATE(312), + [sym_declaration] = STATE(312), + [sym_type_definition] = STATE(312), [sym__declaration_specifiers] = STATE(156), - [sym_linkage_specification] = STATE(314), + [sym_linkage_specification] = STATE(312), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -9602,15 +9703,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(314), + [sym__empty_declaration] = STATE(312), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(314), + [aux_sym_translation_unit_repeat1] = STATE(312), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(366), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(368), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(370), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(714), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(718), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(374), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(376), [sym_preproc_directive] = ACTIONS(378), @@ -9635,19 +9736,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [158] = { - [sym_preproc_include] = STATE(316), - [sym_preproc_def] = STATE(316), - [sym_preproc_function_def] = STATE(316), - [sym_preproc_call] = STATE(316), - [sym_preproc_if] = STATE(316), - [sym_preproc_ifdef] = STATE(316), - [sym_preproc_else] = STATE(315), - [sym_preproc_elif] = STATE(315), - [sym_function_definition] = STATE(316), - [sym_declaration] = STATE(316), - [sym_type_definition] = STATE(316), + [sym_preproc_include] = STATE(314), + [sym_preproc_def] = STATE(314), + [sym_preproc_function_def] = STATE(314), + [sym_preproc_call] = STATE(314), + [sym_preproc_if] = STATE(314), + [sym_preproc_ifdef] = STATE(314), + [sym_preproc_else] = STATE(313), + [sym_preproc_elif] = STATE(313), + [sym_function_definition] = STATE(314), + [sym_declaration] = STATE(314), + [sym_type_definition] = STATE(314), [sym__declaration_specifiers] = STATE(73), - [sym_linkage_specification] = STATE(316), + [sym_linkage_specification] = STATE(314), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -9655,15 +9756,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(316), + [sym__empty_declaration] = STATE(314), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(316), + [aux_sym_translation_unit_repeat1] = STATE(314), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(716), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(720), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), @@ -9690,86 +9791,86 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [159] = { - [sym_preproc_arg] = ACTIONS(718), - [sym_comment] = ACTIONS(49), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(161), + [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(161), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_static] = ACTIONS(161), + [anon_sym_auto] = ACTIONS(161), + [anon_sym_register] = ACTIONS(161), + [anon_sym_inline] = ACTIONS(161), + [anon_sym_const] = ACTIONS(161), + [anon_sym_restrict] = ACTIONS(161), + [anon_sym_volatile] = ACTIONS(161), + [anon_sym__Atomic] = ACTIONS(161), + [anon_sym_unsigned] = ACTIONS(161), + [anon_sym_long] = ACTIONS(161), + [anon_sym_short] = ACTIONS(161), + [sym_primitive_type] = ACTIONS(161), + [anon_sym_enum] = ACTIONS(161), + [anon_sym_struct] = ACTIONS(161), + [anon_sym_union] = ACTIONS(161), + [anon_sym_if] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(161), + [anon_sym_case] = ACTIONS(161), + [anon_sym_default] = ACTIONS(161), + [anon_sym_while] = ACTIONS(161), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(161), + [anon_sym_return] = ACTIONS(161), + [anon_sym_break] = ACTIONS(161), + [anon_sym_continue] = ACTIONS(161), + [anon_sym_goto] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_sizeof] = ACTIONS(161), + [sym_number_literal] = ACTIONS(159), + [anon_sym_SQUOTE] = ACTIONS(159), + [anon_sym_DQUOTE] = ACTIONS(159), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [sym_null] = ACTIONS(161), + [sym_identifier] = ACTIONS(161), + [sym_comment] = ACTIONS(39), }, [160] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(163), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(163), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(163), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(163), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(163), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(163), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(163), - [sym_preproc_directive] = ACTIONS(163), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(161), - [anon_sym_static] = ACTIONS(163), - [anon_sym_auto] = ACTIONS(163), - [anon_sym_register] = ACTIONS(163), - [anon_sym_inline] = ACTIONS(163), - [anon_sym_const] = ACTIONS(163), - [anon_sym_restrict] = ACTIONS(163), - [anon_sym_volatile] = ACTIONS(163), - [anon_sym__Atomic] = ACTIONS(163), - [anon_sym_unsigned] = ACTIONS(163), - [anon_sym_long] = ACTIONS(163), - [anon_sym_short] = ACTIONS(163), - [sym_primitive_type] = ACTIONS(163), - [anon_sym_enum] = ACTIONS(163), - [anon_sym_struct] = ACTIONS(163), - [anon_sym_union] = ACTIONS(163), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(163), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(163), - [anon_sym_while] = ACTIONS(163), - [anon_sym_do] = ACTIONS(163), - [anon_sym_for] = ACTIONS(163), - [anon_sym_return] = ACTIONS(163), - [anon_sym_break] = ACTIONS(163), - [anon_sym_continue] = ACTIONS(163), - [anon_sym_goto] = ACTIONS(163), - [anon_sym_AMP] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(161), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_sizeof] = ACTIONS(163), - [sym_number_literal] = ACTIONS(161), - [anon_sym_SQUOTE] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [sym_null] = ACTIONS(163), - [sym_identifier] = ACTIONS(163), - [sym_comment] = ACTIONS(39), + [anon_sym_LF] = ACTIONS(722), + [sym_comment] = ACTIONS(49), }, [161] = { - [sym__type_declarator] = STATE(318), + [sym__type_declarator] = STATE(316), [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(167), [sym_identifier] = ACTIONS(169), [sym_comment] = ACTIONS(39), }, [162] = { [sym_type_qualifier] = STATE(90), - [sym__type_specifier] = STATE(319), - [sym_sized_type_specifier] = STATE(319), - [sym_enum_specifier] = STATE(319), - [sym_struct_specifier] = STATE(319), - [sym_union_specifier] = STATE(319), - [sym_macro_type_specifier] = STATE(319), + [sym__type_specifier] = STATE(317), + [sym_sized_type_specifier] = STATE(317), + [sym_enum_specifier] = STATE(317), + [sym_struct_specifier] = STATE(317), + [sym_union_specifier] = STATE(317), + [sym_macro_type_specifier] = STATE(317), [aux_sym_type_definition_repeat1] = STATE(90), [aux_sym_sized_type_specifier_repeat1] = STATE(32), [anon_sym_const] = ACTIONS(25), @@ -9779,7 +9880,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(720), + [sym_primitive_type] = ACTIONS(724), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -9787,10 +9888,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [163] = { - [sym_function_definition] = STATE(321), - [sym_declaration] = STATE(321), - [sym__declaration_specifiers] = STATE(322), - [sym_declaration_list] = STATE(321), + [sym_function_definition] = STATE(319), + [sym_declaration] = STATE(319), + [sym__declaration_specifiers] = STATE(320), + [sym_declaration_list] = STATE(319), [sym_storage_class_specifier] = STATE(96), [sym_type_qualifier] = STATE(96), [sym__type_specifier] = STATE(95), @@ -9802,7 +9903,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(726), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -9822,113 +9923,113 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [164] = { - [ts_builtin_sym_end] = 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_RBRACE] = 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), - [sym_identifier] = ACTIONS(726), + [ts_builtin_sym_end] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(730), + [sym_preproc_directive] = ACTIONS(730), + [anon_sym_typedef] = ACTIONS(730), + [anon_sym_extern] = ACTIONS(730), + [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_static] = ACTIONS(730), + [anon_sym_auto] = ACTIONS(730), + [anon_sym_register] = ACTIONS(730), + [anon_sym_inline] = ACTIONS(730), + [anon_sym_const] = ACTIONS(730), + [anon_sym_restrict] = ACTIONS(730), + [anon_sym_volatile] = ACTIONS(730), + [anon_sym__Atomic] = ACTIONS(730), + [anon_sym_unsigned] = ACTIONS(730), + [anon_sym_long] = ACTIONS(730), + [anon_sym_short] = ACTIONS(730), + [sym_primitive_type] = ACTIONS(730), + [anon_sym_enum] = ACTIONS(730), + [anon_sym_struct] = ACTIONS(730), + [anon_sym_union] = ACTIONS(730), + [sym_identifier] = ACTIONS(730), [sym_comment] = ACTIONS(39), }, [165] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(231), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(233), - [sym_preproc_directive] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(231), - [anon_sym_typedef] = ACTIONS(233), - [anon_sym_extern] = ACTIONS(233), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_STAR] = ACTIONS(231), - [anon_sym_static] = ACTIONS(233), - [anon_sym_auto] = ACTIONS(233), - [anon_sym_register] = ACTIONS(233), - [anon_sym_inline] = ACTIONS(233), - [anon_sym_const] = ACTIONS(233), - [anon_sym_restrict] = ACTIONS(233), - [anon_sym_volatile] = ACTIONS(233), - [anon_sym__Atomic] = ACTIONS(233), - [anon_sym_unsigned] = ACTIONS(233), - [anon_sym_long] = ACTIONS(233), - [anon_sym_short] = ACTIONS(233), - [sym_primitive_type] = ACTIONS(233), - [anon_sym_enum] = ACTIONS(233), - [anon_sym_struct] = ACTIONS(233), - [anon_sym_union] = ACTIONS(233), - [anon_sym_if] = ACTIONS(233), - [anon_sym_switch] = ACTIONS(233), - [anon_sym_case] = ACTIONS(233), - [anon_sym_default] = ACTIONS(233), - [anon_sym_while] = ACTIONS(233), - [anon_sym_do] = ACTIONS(233), - [anon_sym_for] = ACTIONS(233), - [anon_sym_return] = ACTIONS(233), - [anon_sym_break] = ACTIONS(233), - [anon_sym_continue] = ACTIONS(233), - [anon_sym_goto] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(231), - [anon_sym_BANG] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(231), - [anon_sym_SQUOTE] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_true] = ACTIONS(233), - [sym_false] = ACTIONS(233), - [sym_null] = ACTIONS(233), - [sym_identifier] = ACTIONS(233), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(229), + [sym_preproc_directive] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(227), + [anon_sym_typedef] = ACTIONS(229), + [anon_sym_extern] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_static] = ACTIONS(229), + [anon_sym_auto] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym_const] = ACTIONS(229), + [anon_sym_restrict] = ACTIONS(229), + [anon_sym_volatile] = ACTIONS(229), + [anon_sym__Atomic] = ACTIONS(229), + [anon_sym_unsigned] = ACTIONS(229), + [anon_sym_long] = ACTIONS(229), + [anon_sym_short] = ACTIONS(229), + [sym_primitive_type] = ACTIONS(229), + [anon_sym_enum] = ACTIONS(229), + [anon_sym_struct] = ACTIONS(229), + [anon_sym_union] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_switch] = ACTIONS(229), + [anon_sym_case] = ACTIONS(229), + [anon_sym_default] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_for] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_break] = ACTIONS(229), + [anon_sym_continue] = ACTIONS(229), + [anon_sym_goto] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_BANG] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(227), + [anon_sym_PLUS_PLUS] = ACTIONS(227), + [anon_sym_sizeof] = ACTIONS(229), + [sym_number_literal] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [sym_null] = ACTIONS(229), + [sym_identifier] = ACTIONS(229), [sym_comment] = ACTIONS(39), }, [166] = { - [sym_compound_statement] = STATE(325), + [sym_compound_statement] = STATE(323), [sym_parameter_list] = STATE(131), - [aux_sym_declaration_repeat1] = STATE(326), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(730), + [aux_sym_declaration_repeat1] = STATE(324), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(245), [anon_sym_EQ] = ACTIONS(247), [sym_comment] = ACTIONS(39), }, [167] = { - [aux_sym_declaration_repeat1] = STATE(326), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(728), + [aux_sym_declaration_repeat1] = STATE(324), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(732), [sym_comment] = ACTIONS(39), }, [168] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(732), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(736), [sym_comment] = ACTIONS(39), }, [169] = { @@ -9955,17 +10056,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(169), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(734), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(737), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(740), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(743), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(745), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(748), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(743), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(743), - [sym_preproc_directive] = ACTIONS(751), - [anon_sym_typedef] = ACTIONS(754), - [anon_sym_extern] = ACTIONS(757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(741), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(744), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(747), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(749), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(752), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(747), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(747), + [sym_preproc_directive] = ACTIONS(755), + [anon_sym_typedef] = ACTIONS(758), + [anon_sym_extern] = ACTIONS(761), [anon_sym_static] = ACTIONS(279), [anon_sym_auto] = ACTIONS(279), [anon_sym_register] = ACTIONS(279), @@ -9985,181 +10086,122 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [170] = { - [ts_builtin_sym_end] = ACTIONS(760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(762), - [sym_preproc_directive] = ACTIONS(762), - [anon_sym_typedef] = ACTIONS(762), - [anon_sym_extern] = ACTIONS(762), - [anon_sym_RBRACE] = ACTIONS(760), - [anon_sym_static] = ACTIONS(762), - [anon_sym_auto] = ACTIONS(762), - [anon_sym_register] = ACTIONS(762), - [anon_sym_inline] = ACTIONS(762), - [anon_sym_const] = ACTIONS(762), - [anon_sym_restrict] = ACTIONS(762), - [anon_sym_volatile] = ACTIONS(762), - [anon_sym__Atomic] = ACTIONS(762), - [anon_sym_unsigned] = ACTIONS(762), - [anon_sym_long] = ACTIONS(762), - [anon_sym_short] = ACTIONS(762), - [sym_primitive_type] = ACTIONS(762), - [anon_sym_enum] = ACTIONS(762), - [anon_sym_struct] = ACTIONS(762), - [anon_sym_union] = ACTIONS(762), - [sym_identifier] = ACTIONS(762), + [ts_builtin_sym_end] = ACTIONS(764), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(766), + [sym_preproc_directive] = ACTIONS(766), + [anon_sym_typedef] = ACTIONS(766), + [anon_sym_extern] = ACTIONS(766), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_static] = ACTIONS(766), + [anon_sym_auto] = ACTIONS(766), + [anon_sym_register] = ACTIONS(766), + [anon_sym_inline] = ACTIONS(766), + [anon_sym_const] = ACTIONS(766), + [anon_sym_restrict] = ACTIONS(766), + [anon_sym_volatile] = ACTIONS(766), + [anon_sym__Atomic] = ACTIONS(766), + [anon_sym_unsigned] = ACTIONS(766), + [anon_sym_long] = ACTIONS(766), + [anon_sym_short] = ACTIONS(766), + [sym_primitive_type] = ACTIONS(766), + [anon_sym_enum] = ACTIONS(766), + [anon_sym_struct] = ACTIONS(766), + [anon_sym_union] = ACTIONS(766), + [sym_identifier] = ACTIONS(766), [sym_comment] = ACTIONS(39), }, [171] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(764), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(768), [sym_comment] = ACTIONS(39), }, [172] = { - [ts_builtin_sym_end] = ACTIONS(766), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(768), - [sym_preproc_directive] = ACTIONS(768), - [anon_sym_typedef] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(768), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_static] = ACTIONS(768), - [anon_sym_auto] = ACTIONS(768), - [anon_sym_register] = ACTIONS(768), - [anon_sym_inline] = ACTIONS(768), - [anon_sym_const] = ACTIONS(768), - [anon_sym_restrict] = ACTIONS(768), - [anon_sym_volatile] = ACTIONS(768), - [anon_sym__Atomic] = ACTIONS(768), - [anon_sym_unsigned] = ACTIONS(768), - [anon_sym_long] = ACTIONS(768), - [anon_sym_short] = ACTIONS(768), - [sym_primitive_type] = ACTIONS(768), - [anon_sym_enum] = ACTIONS(768), - [anon_sym_struct] = ACTIONS(768), - [anon_sym_union] = ACTIONS(768), - [sym_identifier] = ACTIONS(768), + [ts_builtin_sym_end] = ACTIONS(770), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(772), + [sym_preproc_directive] = ACTIONS(772), + [anon_sym_typedef] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(770), + [anon_sym_static] = ACTIONS(772), + [anon_sym_auto] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_inline] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_restrict] = ACTIONS(772), + [anon_sym_volatile] = ACTIONS(772), + [anon_sym__Atomic] = ACTIONS(772), + [anon_sym_unsigned] = ACTIONS(772), + [anon_sym_long] = ACTIONS(772), + [anon_sym_short] = ACTIONS(772), + [sym_primitive_type] = ACTIONS(772), + [anon_sym_enum] = ACTIONS(772), + [anon_sym_struct] = ACTIONS(772), + [anon_sym_union] = ACTIONS(772), + [sym_identifier] = ACTIONS(772), [sym_comment] = ACTIONS(39), }, [173] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(770), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(774), [sym_comment] = ACTIONS(39), }, [174] = { - [ts_builtin_sym_end] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(774), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(774), - [anon_sym_LPAREN] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_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), - [sym_preproc_directive] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_typedef] = ACTIONS(774), - [anon_sym_extern] = ACTIONS(774), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_RBRACE] = ACTIONS(772), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_static] = ACTIONS(774), - [anon_sym_auto] = ACTIONS(774), - [anon_sym_register] = ACTIONS(774), - [anon_sym_inline] = ACTIONS(774), - [anon_sym_const] = ACTIONS(774), - [anon_sym_restrict] = ACTIONS(774), - [anon_sym_volatile] = ACTIONS(774), - [anon_sym__Atomic] = ACTIONS(774), - [anon_sym_unsigned] = ACTIONS(774), - [anon_sym_long] = ACTIONS(774), - [anon_sym_short] = ACTIONS(774), - [sym_primitive_type] = ACTIONS(774), - [anon_sym_enum] = ACTIONS(774), - [anon_sym_struct] = ACTIONS(774), - [anon_sym_union] = ACTIONS(774), - [anon_sym_if] = ACTIONS(774), - [anon_sym_switch] = ACTIONS(774), - [anon_sym_case] = ACTIONS(774), - [anon_sym_default] = ACTIONS(774), - [anon_sym_while] = ACTIONS(774), - [anon_sym_do] = ACTIONS(774), - [anon_sym_for] = ACTIONS(774), - [anon_sym_return] = ACTIONS(774), - [anon_sym_break] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_goto] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(772), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_sizeof] = ACTIONS(774), - [sym_number_literal] = ACTIONS(772), - [anon_sym_SQUOTE] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [sym_true] = ACTIONS(774), - [sym_false] = ACTIONS(774), - [sym_null] = ACTIONS(774), - [sym_identifier] = ACTIONS(774), - [sym_comment] = ACTIONS(39), - }, - [175] = { - [sym__type_declarator] = STATE(177), + [sym__type_declarator] = STATE(176), [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [sym_type_qualifier] = STATE(330), - [aux_sym_type_definition_repeat1] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(418), + [sym_type_qualifier] = STATE(328), + [aux_sym_type_definition_repeat1] = STATE(328), + [anon_sym_LPAREN2] = ACTIONS(165), + [anon_sym_STAR] = ACTIONS(420), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(420), + [sym_identifier] = ACTIONS(422), [sym_comment] = ACTIONS(39), }, - [176] = { - [sym_parameter_list] = STATE(181), - [anon_sym_LPAREN] = ACTIONS(237), + [175] = { + [sym_parameter_list] = STATE(180), [anon_sym_RPAREN] = ACTIONS(776), - [anon_sym_LBRACK] = ACTIONS(426), + [anon_sym_LPAREN2] = ACTIONS(243), + [anon_sym_LBRACK] = ACTIONS(428), [sym_comment] = ACTIONS(39), }, - [177] = { - [sym_parameter_list] = STATE(181), - [anon_sym_LPAREN] = ACTIONS(237), + [176] = { + [sym_parameter_list] = STATE(180), [anon_sym_RPAREN] = ACTIONS(778), [anon_sym_SEMI] = ACTIONS(778), - [anon_sym_LBRACK] = ACTIONS(426), + [anon_sym_LPAREN2] = ACTIONS(243), + [anon_sym_LBRACK] = ACTIONS(428), [sym_comment] = ACTIONS(39), }, - [178] = { - [sym__type_declarator] = STATE(332), + [177] = { + [sym__type_declarator] = STATE(330), [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [sym_type_qualifier] = STATE(220), - [aux_sym_type_definition_repeat1] = STATE(220), - [anon_sym_LPAREN] = ACTIONS(165), + [sym_type_qualifier] = STATE(219), + [aux_sym_type_definition_repeat1] = STATE(219), + [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(167), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(420), + [sym_identifier] = ACTIONS(422), [sym_comment] = ACTIONS(39), }, - [179] = { + [178] = { [ts_builtin_sym_end] = ACTIONS(780), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(782), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(780), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(782), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(782), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(782), @@ -10169,6 +10211,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(780), [anon_sym_RBRACE] = ACTIONS(780), + [anon_sym_LPAREN2] = ACTIONS(780), [anon_sym_STAR] = ACTIONS(780), [anon_sym_static] = ACTIONS(782), [anon_sym_auto] = ACTIONS(782), @@ -10214,41 +10257,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(782), [sym_comment] = ACTIONS(39), }, - [180] = { - [sym__declaration_specifiers] = STATE(334), - [sym_storage_class_specifier] = STATE(274), - [sym_type_qualifier] = STATE(274), - [sym__type_specifier] = STATE(271), - [sym_sized_type_specifier] = STATE(271), - [sym_enum_specifier] = STATE(271), - [sym_struct_specifier] = STATE(271), - [sym_union_specifier] = STATE(271), - [sym__expression] = STATE(335), - [sym_conditional_expression] = STATE(335), - [sym_assignment_expression] = STATE(335), - [sym_pointer_expression] = STATE(335), - [sym_logical_expression] = STATE(335), - [sym_bitwise_expression] = STATE(335), - [sym_equality_expression] = STATE(335), - [sym_relational_expression] = STATE(335), - [sym_shift_expression] = STATE(335), - [sym_math_expression] = STATE(335), - [sym_cast_expression] = STATE(335), - [sym_sizeof_expression] = STATE(335), - [sym_subscript_expression] = STATE(335), - [sym_call_expression] = STATE(335), - [sym_field_expression] = STATE(335), - [sym_compound_literal_expression] = STATE(335), - [sym_parenthesized_expression] = STATE(335), - [sym_char_literal] = STATE(335), - [sym_concatenated_string] = STATE(335), - [sym_string_literal] = STATE(273), - [sym_macro_type_specifier] = STATE(271), - [aux_sym__declaration_specifiers_repeat1] = STATE(274), - [aux_sym_sized_type_specifier_repeat1] = STATE(275), - [anon_sym_LPAREN] = ACTIONS(604), + [179] = { + [sym__declaration_specifiers] = STATE(332), + [sym_storage_class_specifier] = STATE(273), + [sym_type_qualifier] = STATE(273), + [sym__type_specifier] = STATE(270), + [sym_sized_type_specifier] = STATE(270), + [sym_enum_specifier] = STATE(270), + [sym_struct_specifier] = STATE(270), + [sym_union_specifier] = STATE(270), + [sym__expression] = STATE(333), + [sym_conditional_expression] = STATE(333), + [sym_assignment_expression] = STATE(333), + [sym_pointer_expression] = STATE(333), + [sym_logical_expression] = STATE(333), + [sym_bitwise_expression] = STATE(333), + [sym_equality_expression] = STATE(333), + [sym_relational_expression] = STATE(333), + [sym_shift_expression] = STATE(333), + [sym_math_expression] = STATE(333), + [sym_cast_expression] = STATE(333), + [sym_sizeof_expression] = STATE(333), + [sym_subscript_expression] = STATE(333), + [sym_call_expression] = STATE(333), + [sym_field_expression] = STATE(333), + [sym_compound_literal_expression] = STATE(333), + [sym_parenthesized_expression] = STATE(333), + [sym_char_literal] = STATE(333), + [sym_concatenated_string] = STATE(333), + [sym_string_literal] = STATE(272), + [sym_macro_type_specifier] = STATE(270), + [aux_sym__declaration_specifiers_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(274), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(606), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), [anon_sym_RBRACK] = ACTIONS(784), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -10258,45 +10301,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(610), - [anon_sym_long] = ACTIONS(610), - [anon_sym_short] = ACTIONS(610), - [sym_primitive_type] = ACTIONS(612), + [anon_sym_unsigned] = ACTIONS(612), + [anon_sym_long] = ACTIONS(612), + [anon_sym_short] = ACTIONS(612), + [sym_primitive_type] = ACTIONS(614), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), [sym_number_literal] = ACTIONS(786), - [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), [sym_true] = ACTIONS(788), [sym_false] = ACTIONS(788), [sym_null] = ACTIONS(788), - [sym_identifier] = ACTIONS(628), + [sym_identifier] = ACTIONS(630), [sym_comment] = ACTIONS(39), }, - [181] = { - [anon_sym_LPAREN] = ACTIONS(790), + [180] = { [anon_sym_RPAREN] = ACTIONS(790), [anon_sym_SEMI] = ACTIONS(790), + [anon_sym_LPAREN2] = ACTIONS(790), [anon_sym_LBRACK] = ACTIONS(790), [sym_comment] = ACTIONS(39), }, - [182] = { - [sym_parameter_list] = STATE(181), - [anon_sym_LPAREN] = ACTIONS(237), + [181] = { + [sym_parameter_list] = STATE(180), [anon_sym_SEMI] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(426), + [anon_sym_LPAREN2] = ACTIONS(243), + [anon_sym_LBRACK] = ACTIONS(428), [sym_comment] = ACTIONS(39), }, - [183] = { + [182] = { [ts_builtin_sym_end] = ACTIONS(794), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(796), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(796), @@ -10325,18 +10368,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(796), [sym_comment] = ACTIONS(39), }, - [184] = { - [sym_preproc_include] = STATE(338), - [sym_preproc_def] = STATE(338), - [sym_preproc_function_def] = STATE(338), - [sym_preproc_call] = STATE(338), - [sym_preproc_if] = STATE(338), - [sym_preproc_ifdef] = STATE(338), - [sym_function_definition] = STATE(338), - [sym_declaration] = STATE(338), - [sym_type_definition] = STATE(338), + [183] = { + [sym_preproc_include] = STATE(336), + [sym_preproc_def] = STATE(336), + [sym_preproc_function_def] = STATE(336), + [sym_preproc_call] = STATE(336), + [sym_preproc_if] = STATE(336), + [sym_preproc_ifdef] = STATE(336), + [sym_function_definition] = STATE(336), + [sym_declaration] = STATE(336), + [sym_type_definition] = STATE(336), [sym__declaration_specifiers] = STATE(17), - [sym_linkage_specification] = STATE(338), + [sym_linkage_specification] = STATE(336), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -10344,9 +10387,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(338), + [sym__empty_declaration] = STATE(336), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(338), + [aux_sym_translation_unit_repeat1] = STATE(336), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), @@ -10376,12 +10419,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [185] = { - [sym_storage_class_specifier] = STATE(339), - [sym_type_qualifier] = STATE(339), - [aux_sym__declaration_specifiers_repeat1] = STATE(339), - [anon_sym_LPAREN] = ACTIONS(249), + [184] = { + [sym_storage_class_specifier] = STATE(337), + [sym_type_qualifier] = STATE(337), + [aux_sym__declaration_specifiers_repeat1] = STATE(337), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(249), [anon_sym_STAR] = ACTIONS(249), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -10394,12 +10437,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(251), [sym_comment] = ACTIONS(39), }, - [186] = { - [sym_storage_class_specifier] = STATE(340), - [sym_type_qualifier] = STATE(340), - [aux_sym__declaration_specifiers_repeat1] = STATE(340), - [anon_sym_LPAREN] = ACTIONS(249), + [185] = { + [sym_storage_class_specifier] = STATE(338), + [sym_type_qualifier] = STATE(338), + [aux_sym__declaration_specifiers_repeat1] = STATE(338), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(249), [anon_sym_STAR] = ACTIONS(249), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -10412,10 +10455,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(251), [sym_comment] = ACTIONS(39), }, - [187] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(187), - [anon_sym_LPAREN] = ACTIONS(319), + [186] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(186), [anon_sym_extern] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(319), [anon_sym_STAR] = ACTIONS(319), [anon_sym_static] = ACTIONS(321), [anon_sym_auto] = ACTIONS(321), @@ -10432,12 +10475,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(39), }, - [188] = { - [anon_sym_LPAREN] = ACTIONS(803), + [187] = { [anon_sym_COMMA] = ACTIONS(803), [anon_sym_RPAREN] = ACTIONS(803), [anon_sym_SEMI] = ACTIONS(803), [anon_sym_extern] = ACTIONS(805), + [anon_sym_LPAREN2] = ACTIONS(803), [anon_sym_STAR] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(803), [anon_sym_RBRACK] = ACTIONS(803), @@ -10467,28 +10510,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(805), [sym_comment] = ACTIONS(39), }, - [189] = { - [sym__expression] = STATE(347), - [sym_conditional_expression] = STATE(347), - [sym_assignment_expression] = STATE(347), - [sym_pointer_expression] = STATE(347), - [sym_logical_expression] = STATE(347), - [sym_bitwise_expression] = STATE(347), - [sym_equality_expression] = STATE(347), - [sym_relational_expression] = STATE(347), - [sym_shift_expression] = STATE(347), - [sym_math_expression] = STATE(347), - [sym_cast_expression] = STATE(347), - [sym_sizeof_expression] = STATE(347), - [sym_subscript_expression] = STATE(347), - [sym_call_expression] = STATE(347), - [sym_field_expression] = STATE(347), - [sym_compound_literal_expression] = STATE(347), - [sym_parenthesized_expression] = STATE(347), - [sym_char_literal] = STATE(347), - [sym_concatenated_string] = STATE(347), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [188] = { + [sym__expression] = STATE(345), + [sym_conditional_expression] = STATE(345), + [sym_assignment_expression] = STATE(345), + [sym_pointer_expression] = STATE(345), + [sym_logical_expression] = STATE(345), + [sym_bitwise_expression] = STATE(345), + [sym_equality_expression] = STATE(345), + [sym_relational_expression] = STATE(345), + [sym_shift_expression] = STATE(345), + [sym_math_expression] = STATE(345), + [sym_cast_expression] = STATE(345), + [sym_sizeof_expression] = STATE(345), + [sym_subscript_expression] = STATE(345), + [sym_call_expression] = STATE(345), + [sym_field_expression] = STATE(345), + [sym_compound_literal_expression] = STATE(345), + [sym_parenthesized_expression] = STATE(345), + [sym_char_literal] = STATE(345), + [sym_concatenated_string] = STATE(345), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -10499,7 +10542,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), [sym_number_literal] = ACTIONS(821), - [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), [sym_true] = ACTIONS(823), [sym_false] = ACTIONS(823), @@ -10507,23 +10550,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(823), [sym_comment] = ACTIONS(39), }, - [190] = { - [sym_enumerator] = STATE(350), + [189] = { + [sym_enumerator] = STATE(348), [anon_sym_RBRACE] = ACTIONS(825), [sym_identifier] = ACTIONS(185), [sym_comment] = ACTIONS(39), }, - [191] = { - [aux_sym_enumerator_list_repeat1] = STATE(352), + [190] = { + [aux_sym_enumerator_list_repeat1] = STATE(350), [anon_sym_COMMA] = ACTIONS(827), [anon_sym_RBRACE] = ACTIONS(825), [sym_comment] = ACTIONS(39), }, - [192] = { + [191] = { [sym_preproc_if_in_field_declaration_list] = STATE(107), [sym_preproc_ifdef_in_field_declaration_list] = STATE(108), - [sym_preproc_else_in_field_declaration_list] = STATE(356), - [sym_preproc_elif_in_field_declaration_list] = STATE(357), + [sym_preproc_else_in_field_declaration_list] = STATE(354), + [sym_preproc_elif_in_field_declaration_list] = STATE(355), [sym__declaration_specifiers] = STATE(109), [sym_storage_class_specifier] = STATE(112), [sym_type_qualifier] = STATE(112), @@ -10532,10 +10575,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(110), [sym_struct_specifier] = STATE(110), [sym_union_specifier] = STATE(110), - [sym__field_declaration_list_item] = STATE(358), - [sym_field_declaration] = STATE(358), + [sym__field_declaration_list_item] = STATE(356), + [sym_field_declaration] = STATE(356), [sym_macro_type_specifier] = STATE(110), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(358), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(356), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), @@ -10563,11 +10606,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [193] = { + [192] = { [sym_preproc_if_in_field_declaration_list] = STATE(107), [sym_preproc_ifdef_in_field_declaration_list] = STATE(108), - [sym_preproc_else_in_field_declaration_list] = STATE(360), - [sym_preproc_elif_in_field_declaration_list] = STATE(361), + [sym_preproc_else_in_field_declaration_list] = STATE(358), + [sym_preproc_elif_in_field_declaration_list] = STATE(359), [sym__declaration_specifiers] = STATE(109), [sym_storage_class_specifier] = STATE(112), [sym_type_qualifier] = STATE(112), @@ -10576,10 +10619,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(110), [sym_struct_specifier] = STATE(110), [sym_union_specifier] = STATE(110), - [sym__field_declaration_list_item] = STATE(362), - [sym_field_declaration] = STATE(362), + [sym__field_declaration_list_item] = STATE(360), + [sym_field_declaration] = STATE(360), [sym_macro_type_specifier] = STATE(110), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(362), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(360), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), @@ -10607,11 +10650,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [194] = { + [193] = { [sym_preproc_if_in_field_declaration_list] = STATE(107), [sym_preproc_ifdef_in_field_declaration_list] = STATE(108), - [sym_preproc_else_in_field_declaration_list] = STATE(364), - [sym_preproc_elif_in_field_declaration_list] = STATE(365), + [sym_preproc_else_in_field_declaration_list] = STATE(362), + [sym_preproc_elif_in_field_declaration_list] = STATE(363), [sym__declaration_specifiers] = STATE(109), [sym_storage_class_specifier] = STATE(112), [sym_type_qualifier] = STATE(112), @@ -10620,10 +10663,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(110), [sym_struct_specifier] = STATE(110), [sym_union_specifier] = STATE(110), - [sym__field_declaration_list_item] = STATE(366), - [sym_field_declaration] = STATE(366), + [sym__field_declaration_list_item] = STATE(364), + [sym_field_declaration] = STATE(364), [sym_macro_type_specifier] = STATE(110), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(366), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(364), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), @@ -10651,52 +10694,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [195] = { - [sym__field_declarator] = STATE(368), - [sym_pointer_field_declarator] = STATE(201), - [sym_function_field_declarator] = STATE(202), - [sym_array_field_declarator] = STATE(203), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(839), - [sym_identifier] = ACTIONS(494), + [194] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(839), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(841), + [anon_sym_extern] = ACTIONS(839), + [anon_sym_RBRACE] = ACTIONS(841), + [anon_sym_static] = ACTIONS(839), + [anon_sym_auto] = ACTIONS(839), + [anon_sym_register] = ACTIONS(839), + [anon_sym_inline] = ACTIONS(839), + [anon_sym_const] = ACTIONS(839), + [anon_sym_restrict] = ACTIONS(839), + [anon_sym_volatile] = ACTIONS(839), + [anon_sym__Atomic] = ACTIONS(839), + [anon_sym_unsigned] = ACTIONS(839), + [anon_sym_long] = ACTIONS(839), + [anon_sym_short] = ACTIONS(839), + [sym_primitive_type] = ACTIONS(839), + [anon_sym_enum] = ACTIONS(839), + [anon_sym_struct] = ACTIONS(839), + [anon_sym_union] = ACTIONS(839), + [sym_identifier] = ACTIONS(839), [sym_comment] = ACTIONS(39), }, - [196] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(843), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(843), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(843), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(843), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(843), - [anon_sym_extern] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(843), - [anon_sym_static] = ACTIONS(841), - [anon_sym_auto] = ACTIONS(841), - [anon_sym_register] = ACTIONS(841), - [anon_sym_inline] = ACTIONS(841), - [anon_sym_const] = ACTIONS(841), - [anon_sym_restrict] = ACTIONS(841), - [anon_sym_volatile] = ACTIONS(841), - [anon_sym__Atomic] = ACTIONS(841), - [anon_sym_unsigned] = ACTIONS(841), - [anon_sym_long] = ACTIONS(841), - [anon_sym_short] = ACTIONS(841), - [sym_primitive_type] = ACTIONS(841), - [anon_sym_enum] = ACTIONS(841), - [anon_sym_struct] = ACTIONS(841), - [anon_sym_union] = ACTIONS(841), - [sym_identifier] = ACTIONS(841), + [195] = { + [sym__field_declarator] = STATE(366), + [sym_pointer_field_declarator] = STATE(200), + [sym_function_field_declarator] = STATE(201), + [sym_array_field_declarator] = STATE(202), + [anon_sym_LPAREN2] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(843), + [sym_identifier] = ACTIONS(496), [sym_comment] = ACTIONS(39), }, - [197] = { - [sym__field_declarator] = STATE(369), - [sym_pointer_field_declarator] = STATE(201), - [sym_function_field_declarator] = STATE(202), - [sym_array_field_declarator] = STATE(203), - [sym_type_qualifier] = STATE(370), - [aux_sym_type_definition_repeat1] = STATE(370), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(490), + [196] = { + [sym__field_declarator] = STATE(367), + [sym_pointer_field_declarator] = STATE(200), + [sym_function_field_declarator] = STATE(201), + [sym_array_field_declarator] = STATE(202), + [sym_type_qualifier] = STATE(368), + [aux_sym_type_definition_repeat1] = STATE(368), + [anon_sym_LPAREN2] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(492), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -10704,28 +10747,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(845), [sym_comment] = ACTIONS(39), }, - [198] = { - [sym__expression] = STATE(377), - [sym_conditional_expression] = STATE(377), - [sym_assignment_expression] = STATE(377), - [sym_pointer_expression] = STATE(377), - [sym_logical_expression] = STATE(377), - [sym_bitwise_expression] = STATE(377), - [sym_equality_expression] = STATE(377), - [sym_relational_expression] = STATE(377), - [sym_shift_expression] = STATE(377), - [sym_math_expression] = STATE(377), - [sym_cast_expression] = STATE(377), - [sym_sizeof_expression] = STATE(377), - [sym_subscript_expression] = STATE(377), - [sym_call_expression] = STATE(377), - [sym_field_expression] = STATE(377), - [sym_compound_literal_expression] = STATE(377), - [sym_parenthesized_expression] = STATE(377), - [sym_char_literal] = STATE(377), - [sym_concatenated_string] = STATE(377), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [197] = { + [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(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -10736,7 +10779,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), [sym_number_literal] = ACTIONS(861), - [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), [sym_true] = ACTIONS(863), [sym_false] = ACTIONS(863), @@ -10744,59 +10787,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(863), [sym_comment] = ACTIONS(39), }, - [199] = { - [anon_sym_LPAREN] = ACTIONS(865), + [198] = { [anon_sym_COMMA] = ACTIONS(865), [anon_sym_RPAREN] = ACTIONS(865), [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_LPAREN2] = ACTIONS(865), [anon_sym_LBRACK] = ACTIONS(865), [anon_sym_COLON] = ACTIONS(865), [sym_comment] = ACTIONS(39), }, - [200] = { - [sym_parameter_list] = STATE(383), - [aux_sym_field_declaration_repeat1] = STATE(384), - [anon_sym_LPAREN] = ACTIONS(237), + [199] = { + [sym_parameter_list] = STATE(381), + [aux_sym_field_declaration_repeat1] = STATE(382), [anon_sym_COMMA] = ACTIONS(867), [anon_sym_SEMI] = ACTIONS(869), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(871), [anon_sym_COLON] = ACTIONS(873), [sym_comment] = ACTIONS(39), }, - [201] = { - [anon_sym_LPAREN] = ACTIONS(875), + [200] = { [anon_sym_COMMA] = ACTIONS(875), [anon_sym_RPAREN] = ACTIONS(875), [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_LPAREN2] = ACTIONS(875), [anon_sym_LBRACK] = ACTIONS(875), [anon_sym_COLON] = ACTIONS(875), [sym_comment] = ACTIONS(39), }, - [202] = { - [anon_sym_LPAREN] = ACTIONS(877), + [201] = { [anon_sym_COMMA] = ACTIONS(877), [anon_sym_RPAREN] = ACTIONS(877), [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LPAREN2] = ACTIONS(877), [anon_sym_LBRACK] = ACTIONS(877), [anon_sym_COLON] = ACTIONS(877), [sym_comment] = ACTIONS(39), }, - [203] = { - [anon_sym_LPAREN] = ACTIONS(879), + [202] = { [anon_sym_COMMA] = ACTIONS(879), [anon_sym_RPAREN] = ACTIONS(879), [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_LPAREN2] = ACTIONS(879), [anon_sym_LBRACK] = ACTIONS(879), [anon_sym_COLON] = ACTIONS(879), [sym_comment] = ACTIONS(39), }, - [204] = { - [sym_storage_class_specifier] = STATE(385), - [sym_type_qualifier] = STATE(385), - [aux_sym__declaration_specifiers_repeat1] = STATE(385), - [anon_sym_LPAREN] = ACTIONS(249), + [203] = { + [sym_storage_class_specifier] = STATE(383), + [sym_type_qualifier] = STATE(383), + [aux_sym__declaration_specifiers_repeat1] = STATE(383), [anon_sym_SEMI] = ACTIONS(249), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(249), [anon_sym_STAR] = ACTIONS(249), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -10810,12 +10853,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(251), [sym_comment] = ACTIONS(39), }, - [205] = { - [anon_sym_LPAREN] = ACTIONS(881), + [204] = { [anon_sym_COMMA] = ACTIONS(881), [anon_sym_RPAREN] = ACTIONS(881), [anon_sym_SEMI] = ACTIONS(881), [anon_sym_extern] = ACTIONS(883), + [anon_sym_LPAREN2] = ACTIONS(881), [anon_sym_STAR] = ACTIONS(881), [anon_sym_LBRACK] = ACTIONS(881), [anon_sym_RBRACK] = ACTIONS(881), @@ -10845,7 +10888,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(883), [sym_comment] = ACTIONS(39), }, - [206] = { + [205] = { [sym_preproc_if_in_field_declaration_list] = STATE(107), [sym_preproc_ifdef_in_field_declaration_list] = STATE(108), [sym__declaration_specifiers] = STATE(109), @@ -10856,10 +10899,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(110), [sym_struct_specifier] = STATE(110), [sym_union_specifier] = STATE(110), - [sym__field_declaration_list_item] = STATE(206), - [sym_field_declaration] = STATE(206), + [sym__field_declaration_list_item] = STATE(205), + [sym_field_declaration] = STATE(205), [sym_macro_type_specifier] = STATE(110), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(206), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(205), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(885), @@ -10885,13 +10928,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(917), [sym_comment] = ACTIONS(39), }, - [207] = { - [sym_storage_class_specifier] = STATE(386), - [sym_type_qualifier] = STATE(386), - [aux_sym__declaration_specifiers_repeat1] = STATE(386), - [anon_sym_LPAREN] = ACTIONS(249), + [206] = { + [sym_storage_class_specifier] = STATE(384), + [sym_type_qualifier] = STATE(384), + [aux_sym__declaration_specifiers_repeat1] = STATE(384), [anon_sym_SEMI] = ACTIONS(249), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(249), [anon_sym_STAR] = ACTIONS(249), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -10905,11 +10948,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(251), [sym_comment] = ACTIONS(39), }, - [208] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(208), - [anon_sym_LPAREN] = ACTIONS(319), + [207] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(207), [anon_sym_SEMI] = ACTIONS(319), [anon_sym_extern] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(319), [anon_sym_STAR] = ACTIONS(319), [anon_sym_static] = ACTIONS(321), [anon_sym_auto] = ACTIONS(321), @@ -10927,30 +10970,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(39), }, - [209] = { - [sym__declaration_specifiers] = STATE(223), - [sym__abstract_declarator] = STATE(387), - [sym_abstract_pointer_declarator] = STATE(387), - [sym_abstract_function_declarator] = STATE(387), - [sym_abstract_array_declarator] = STATE(387), - [sym_storage_class_specifier] = STATE(225), - [sym_type_qualifier] = STATE(225), - [sym__type_specifier] = STATE(224), - [sym_sized_type_specifier] = STATE(224), - [sym_enum_specifier] = STATE(224), - [sym_struct_specifier] = STATE(224), - [sym_union_specifier] = STATE(224), - [sym_parameter_list] = STATE(213), - [sym_parameter_declaration] = STATE(221), - [sym_macro_type_specifier] = STATE(224), - [aux_sym__declaration_specifiers_repeat1] = STATE(225), - [aux_sym_sized_type_specifier_repeat1] = STATE(226), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(534), + [208] = { + [sym__declaration_specifiers] = STATE(257), + [sym__abstract_declarator] = STATE(385), + [sym_abstract_pointer_declarator] = STATE(385), + [sym_abstract_function_declarator] = STATE(385), + [sym_abstract_array_declarator] = STATE(385), + [sym_storage_class_specifier] = STATE(259), + [sym_type_qualifier] = STATE(259), + [sym__type_specifier] = STATE(258), + [sym_sized_type_specifier] = STATE(258), + [sym_enum_specifier] = STATE(258), + [sym_struct_specifier] = STATE(258), + [sym_union_specifier] = STATE(258), + [sym_parameter_list] = STATE(212), + [sym_parameter_declaration] = STATE(255), + [sym_macro_type_specifier] = STATE(258), + [aux_sym__declaration_specifiers_repeat1] = STATE(259), + [aux_sym_sized_type_specifier_repeat1] = STATE(260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(598), + [anon_sym_RPAREN] = ACTIONS(600), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_LPAREN2] = ACTIONS(514), + [anon_sym_STAR] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(518), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -10959,69 +11002,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(536), - [anon_sym_long] = ACTIONS(536), - [anon_sym_short] = ACTIONS(536), - [sym_primitive_type] = ACTIONS(538), + [anon_sym_unsigned] = ACTIONS(602), + [anon_sym_long] = ACTIONS(602), + [anon_sym_short] = ACTIONS(602), + [sym_primitive_type] = ACTIONS(604), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [210] = { - [sym__abstract_declarator] = STATE(388), - [sym_abstract_pointer_declarator] = STATE(388), - [sym_abstract_function_declarator] = STATE(388), - [sym_abstract_array_declarator] = STATE(388), - [sym_type_qualifier] = STATE(389), - [sym_parameter_list] = STATE(213), - [aux_sym_type_definition_repeat1] = STATE(389), - [anon_sym_LPAREN] = ACTIONS(510), + [209] = { + [sym__abstract_declarator] = STATE(386), + [sym_abstract_pointer_declarator] = STATE(386), + [sym_abstract_function_declarator] = STATE(386), + [sym_abstract_array_declarator] = STATE(386), + [sym_type_qualifier] = STATE(387), + [sym_parameter_list] = STATE(212), + [aux_sym_type_definition_repeat1] = STATE(387), [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_LPAREN2] = ACTIONS(514), + [anon_sym_STAR] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(518), [anon_sym_const] = ACTIONS(925), [anon_sym_restrict] = ACTIONS(925), [anon_sym_volatile] = ACTIONS(925), [anon_sym__Atomic] = ACTIONS(925), [sym_comment] = ACTIONS(39), }, - [211] = { - [sym__declaration_specifiers] = STATE(391), - [sym_storage_class_specifier] = STATE(274), - [sym_type_qualifier] = STATE(274), - [sym__type_specifier] = STATE(271), - [sym_sized_type_specifier] = STATE(271), - [sym_enum_specifier] = STATE(271), - [sym_struct_specifier] = STATE(271), - [sym_union_specifier] = STATE(271), - [sym__expression] = STATE(392), - [sym_conditional_expression] = STATE(392), - [sym_assignment_expression] = STATE(392), - [sym_pointer_expression] = STATE(392), - [sym_logical_expression] = STATE(392), - [sym_bitwise_expression] = STATE(392), - [sym_equality_expression] = STATE(392), - [sym_relational_expression] = STATE(392), - [sym_shift_expression] = STATE(392), - [sym_math_expression] = STATE(392), - [sym_cast_expression] = STATE(392), - [sym_sizeof_expression] = STATE(392), - [sym_subscript_expression] = STATE(392), - [sym_call_expression] = STATE(392), - [sym_field_expression] = STATE(392), - [sym_compound_literal_expression] = STATE(392), - [sym_parenthesized_expression] = STATE(392), - [sym_char_literal] = STATE(392), - [sym_concatenated_string] = STATE(392), - [sym_string_literal] = STATE(273), - [sym_macro_type_specifier] = STATE(271), - [aux_sym__declaration_specifiers_repeat1] = STATE(274), - [aux_sym_sized_type_specifier_repeat1] = STATE(275), - [anon_sym_LPAREN] = ACTIONS(604), + [210] = { + [sym__declaration_specifiers] = STATE(389), + [sym_storage_class_specifier] = STATE(273), + [sym_type_qualifier] = STATE(273), + [sym__type_specifier] = STATE(270), + [sym_sized_type_specifier] = STATE(270), + [sym_enum_specifier] = STATE(270), + [sym_struct_specifier] = STATE(270), + [sym_union_specifier] = STATE(270), + [sym__expression] = STATE(390), + [sym_conditional_expression] = STATE(390), + [sym_assignment_expression] = STATE(390), + [sym_pointer_expression] = STATE(390), + [sym_logical_expression] = STATE(390), + [sym_bitwise_expression] = STATE(390), + [sym_equality_expression] = STATE(390), + [sym_relational_expression] = STATE(390), + [sym_shift_expression] = STATE(390), + [sym_math_expression] = STATE(390), + [sym_cast_expression] = STATE(390), + [sym_sizeof_expression] = STATE(390), + [sym_subscript_expression] = STATE(390), + [sym_call_expression] = STATE(390), + [sym_field_expression] = STATE(390), + [sym_compound_literal_expression] = STATE(390), + [sym_parenthesized_expression] = STATE(390), + [sym_char_literal] = STATE(390), + [sym_concatenated_string] = STATE(390), + [sym_string_literal] = STATE(272), + [sym_macro_type_specifier] = STATE(270), + [aux_sym__declaration_specifiers_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(274), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(606), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), [anon_sym_RBRACK] = ACTIONS(927), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -11031,50 +11074,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(610), - [anon_sym_long] = ACTIONS(610), - [anon_sym_short] = ACTIONS(610), - [sym_primitive_type] = ACTIONS(612), + [anon_sym_unsigned] = ACTIONS(612), + [anon_sym_long] = ACTIONS(612), + [anon_sym_short] = ACTIONS(612), + [sym_primitive_type] = ACTIONS(614), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), [sym_number_literal] = ACTIONS(929), - [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), [sym_true] = ACTIONS(931), [sym_false] = ACTIONS(931), [sym_null] = ACTIONS(931), - [sym_identifier] = ACTIONS(628), + [sym_identifier] = ACTIONS(630), [sym_comment] = ACTIONS(39), }, - [212] = { - [sym_parameter_list] = STATE(394), - [anon_sym_LPAREN] = ACTIONS(237), + [211] = { + [sym_parameter_list] = STATE(392), [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(935), [sym_comment] = ACTIONS(39), }, - [213] = { - [anon_sym_LPAREN] = ACTIONS(937), + [212] = { [anon_sym_COMMA] = ACTIONS(937), [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_LPAREN2] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(937), [sym_comment] = ACTIONS(39), }, - [214] = { - [anon_sym_LPAREN] = ACTIONS(939), + [213] = { [anon_sym_COMMA] = ACTIONS(939), [anon_sym_RPAREN] = ACTIONS(939), [anon_sym_SEMI] = ACTIONS(939), [anon_sym_extern] = ACTIONS(941), + [anon_sym_LPAREN2] = ACTIONS(939), [anon_sym_STAR] = ACTIONS(939), [anon_sym_LBRACK] = ACTIONS(939), [anon_sym_RBRACK] = ACTIONS(939), @@ -11104,22 +11147,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(941), [sym_comment] = ACTIONS(39), }, - [215] = { - [sym__abstract_declarator] = STATE(395), - [sym_abstract_pointer_declarator] = STATE(395), - [sym_abstract_function_declarator] = STATE(395), - [sym_abstract_array_declarator] = STATE(395), - [sym_parameter_list] = STATE(213), - [anon_sym_LPAREN] = ACTIONS(510), + [214] = { + [sym__abstract_declarator] = STATE(393), + [sym_abstract_pointer_declarator] = STATE(393), + [sym_abstract_function_declarator] = STATE(393), + [sym_abstract_array_declarator] = STATE(393), + [sym_parameter_list] = STATE(212), [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_LPAREN2] = ACTIONS(514), + [anon_sym_STAR] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(518), [sym_comment] = ACTIONS(39), }, - [216] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(216), - [anon_sym_LPAREN] = ACTIONS(319), + [215] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(215), [anon_sym_RPAREN] = ACTIONS(319), + [anon_sym_LPAREN2] = ACTIONS(319), [anon_sym_STAR] = ACTIONS(319), [anon_sym_LBRACK] = ACTIONS(319), [anon_sym_unsigned] = ACTIONS(943), @@ -11129,1055 +11172,949 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(39), }, - [217] = { - [sym__declarator] = STATE(219), - [sym_pointer_declarator] = STATE(219), - [sym_function_declarator] = STATE(219), - [sym_array_declarator] = STATE(219), - [sym_type_qualifier] = STATE(220), - [aux_sym_type_definition_repeat1] = STATE(220), - [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_STAR] = ACTIONS(227), + [216] = { + [sym__declarator] = STATE(218), + [sym_pointer_declarator] = STATE(218), + [sym_function_declarator] = STATE(218), + [sym_array_declarator] = STATE(218), + [sym_type_qualifier] = STATE(219), + [aux_sym_type_definition_repeat1] = STATE(219), + [anon_sym_LPAREN2] = ACTIONS(92), + [anon_sym_STAR] = ACTIONS(231), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(530), + [sym_identifier] = ACTIONS(532), [sym_comment] = ACTIONS(39), }, - [218] = { - [anon_sym_LPAREN] = ACTIONS(946), + [217] = { [anon_sym_COMMA] = ACTIONS(946), [anon_sym_RPAREN] = ACTIONS(946), [anon_sym_SEMI] = ACTIONS(946), [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_LPAREN2] = ACTIONS(946), [anon_sym_LBRACK] = ACTIONS(946), [anon_sym_EQ] = ACTIONS(946), [sym_comment] = ACTIONS(39), }, - [219] = { + [218] = { [sym_parameter_list] = STATE(131), - [anon_sym_LPAREN] = ACTIONS(237), [anon_sym_COMMA] = ACTIONS(948), [anon_sym_RPAREN] = ACTIONS(948), [anon_sym_SEMI] = ACTIONS(948), [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(245), [anon_sym_EQ] = ACTIONS(948), [sym_comment] = ACTIONS(39), }, - [220] = { - [sym_type_qualifier] = STATE(220), - [aux_sym_type_definition_repeat1] = STATE(220), - [anon_sym_LPAREN] = ACTIONS(950), + [219] = { + [sym_type_qualifier] = STATE(219), + [aux_sym_type_definition_repeat1] = STATE(219), + [anon_sym_LPAREN2] = ACTIONS(950), [anon_sym_STAR] = ACTIONS(950), - [anon_sym_const] = ACTIONS(434), - [anon_sym_restrict] = ACTIONS(434), - [anon_sym_volatile] = ACTIONS(434), - [anon_sym__Atomic] = ACTIONS(434), - [sym_identifier] = ACTIONS(437), + [anon_sym_const] = ACTIONS(436), + [anon_sym_restrict] = ACTIONS(436), + [anon_sym_volatile] = ACTIONS(436), + [anon_sym__Atomic] = ACTIONS(436), + [sym_identifier] = ACTIONS(439), + [sym_comment] = ACTIONS(39), + }, + [220] = { + [sym__declarator] = STATE(122), + [sym_pointer_declarator] = STATE(122), + [sym_function_declarator] = STATE(122), + [sym_array_declarator] = STATE(122), + [sym_type_qualifier] = STATE(394), + [aux_sym_type_definition_repeat1] = STATE(394), + [anon_sym_LPAREN2] = ACTIONS(92), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(235), [sym_comment] = ACTIONS(39), }, [221] = { - [aux_sym_parameter_list_repeat1] = STATE(398), + [sym_parameter_list] = STATE(131), [anon_sym_COMMA] = ACTIONS(952), - [anon_sym_RPAREN] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(952), + [anon_sym_LPAREN2] = ACTIONS(243), + [anon_sym_LBRACK] = ACTIONS(245), + [anon_sym_EQ] = ACTIONS(247), [sym_comment] = ACTIONS(39), }, [222] = { - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_COMMA] = ACTIONS(956), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(956), - [anon_sym_COLON] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(952), + [anon_sym_SEMI] = ACTIONS(952), [sym_comment] = ACTIONS(39), }, [223] = { - [sym__declarator] = STATE(401), - [sym__abstract_declarator] = STATE(402), - [sym_pointer_declarator] = STATE(401), - [sym_abstract_pointer_declarator] = STATE(402), - [sym_function_declarator] = STATE(401), - [sym_abstract_function_declarator] = STATE(402), - [sym_array_declarator] = STATE(401), - [sym_abstract_array_declarator] = STATE(402), - [sym_parameter_list] = STATE(213), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_COMMA] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(516), - [sym_identifier] = ACTIONS(964), + [sym_string_literal] = STATE(23), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym_system_lib_string] = ACTIONS(43), [sym_comment] = ACTIONS(39), }, [224] = { - [sym_storage_class_specifier] = STATE(403), - [sym_type_qualifier] = STATE(403), - [aux_sym__declaration_specifiers_repeat1] = STATE(403), - [anon_sym_LPAREN] = ACTIONS(98), - [anon_sym_COMMA] = ACTIONS(98), - [anon_sym_RPAREN] = ACTIONS(98), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(98), - [anon_sym_LBRACK] = ACTIONS(98), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), + [sym_preproc_arg] = ACTIONS(956), + [sym_comment] = ACTIONS(49), + }, + [225] = { + [sym_identifier] = ACTIONS(958), + [sym_comment] = ACTIONS(39), + }, + [226] = { + [sym_identifier] = ACTIONS(960), + [sym_comment] = ACTIONS(39), + }, + [227] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(962), + [sym_preproc_directive] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_typedef] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_static] = ACTIONS(962), + [anon_sym_auto] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_inline] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [anon_sym_restrict] = ACTIONS(962), + [anon_sym_volatile] = ACTIONS(962), + [anon_sym__Atomic] = ACTIONS(962), + [anon_sym_unsigned] = ACTIONS(962), + [anon_sym_long] = ACTIONS(962), + [anon_sym_short] = ACTIONS(962), + [sym_primitive_type] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(962), + [anon_sym_struct] = ACTIONS(962), + [anon_sym_union] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_switch] = ACTIONS(962), + [anon_sym_case] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_goto] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_PLUS_PLUS] = ACTIONS(964), + [anon_sym_sizeof] = ACTIONS(962), + [sym_number_literal] = ACTIONS(964), + [anon_sym_SQUOTE] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym_true] = ACTIONS(962), + [sym_false] = ACTIONS(962), + [sym_null] = ACTIONS(962), + [sym_identifier] = ACTIONS(962), + [sym_comment] = ACTIONS(39), + }, + [228] = { + [ts_builtin_sym_end] = ACTIONS(966), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), + [sym_identifier] = ACTIONS(968), + [sym_comment] = ACTIONS(39), + }, + [229] = { + [sym_type_qualifier] = STATE(118), + [sym__type_specifier] = STATE(116), + [sym_sized_type_specifier] = STATE(116), + [sym_enum_specifier] = STATE(116), + [sym_struct_specifier] = STATE(116), + [sym_union_specifier] = STATE(116), + [sym__expression] = STATE(406), + [sym_comma_expression] = STATE(407), + [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_type_descriptor] = STATE(408), + [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(409), + [sym_macro_type_specifier] = STATE(116), + [aux_sym_type_definition_repeat1] = STATE(118), + [aux_sym_sized_type_specifier_repeat1] = STATE(119), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(100), - [sym_comment] = ACTIONS(39), - }, - [225] = { - [sym_storage_class_specifier] = STATE(51), - [sym_type_qualifier] = STATE(51), - [sym__type_specifier] = STATE(404), - [sym_sized_type_specifier] = STATE(404), - [sym_enum_specifier] = STATE(404), - [sym_struct_specifier] = STATE(404), - [sym_union_specifier] = STATE(404), - [sym_macro_type_specifier] = STATE(404), - [aux_sym__declaration_specifiers_repeat1] = STATE(51), - [aux_sym_sized_type_specifier_repeat1] = STATE(226), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(536), - [anon_sym_long] = ACTIONS(536), - [anon_sym_short] = ACTIONS(536), - [sym_primitive_type] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [sym_identifier] = ACTIONS(37), - [sym_comment] = ACTIONS(39), - }, - [226] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(405), - [anon_sym_LPAREN] = ACTIONS(106), - [anon_sym_COMMA] = ACTIONS(106), - [anon_sym_RPAREN] = ACTIONS(106), - [anon_sym_extern] = ACTIONS(108), - [anon_sym_STAR] = ACTIONS(106), - [anon_sym_LBRACK] = ACTIONS(106), - [anon_sym_static] = ACTIONS(108), - [anon_sym_auto] = ACTIONS(108), - [anon_sym_register] = ACTIONS(108), - [anon_sym_inline] = ACTIONS(108), - [anon_sym_const] = ACTIONS(108), - [anon_sym_restrict] = ACTIONS(108), - [anon_sym_volatile] = ACTIONS(108), - [anon_sym__Atomic] = ACTIONS(108), - [anon_sym_unsigned] = ACTIONS(968), - [anon_sym_long] = ACTIONS(968), - [anon_sym_short] = ACTIONS(968), - [sym_primitive_type] = ACTIONS(112), - [sym_identifier] = ACTIONS(114), - [sym_comment] = ACTIONS(39), - }, - [227] = { - [sym__declarator] = STATE(122), - [sym_pointer_declarator] = STATE(122), - [sym_function_declarator] = STATE(122), - [sym_array_declarator] = STATE(122), - [sym_type_qualifier] = STATE(406), - [aux_sym_type_definition_repeat1] = STATE(406), - [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(235), - [sym_comment] = ACTIONS(39), - }, - [228] = { - [sym_parameter_list] = STATE(131), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [sym_comment] = ACTIONS(39), - }, - [229] = { - [anon_sym_COMMA] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_unsigned] = ACTIONS(223), + [anon_sym_long] = ACTIONS(223), + [anon_sym_short] = ACTIONS(223), + [sym_primitive_type] = ACTIONS(225), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), [sym_comment] = ACTIONS(39), }, [230] = { - [sym_string_literal] = STATE(23), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym_system_lib_string] = ACTIONS(43), + [sym__expression] = STATE(410), + [sym_conditional_expression] = STATE(410), + [sym_assignment_expression] = STATE(410), + [sym_pointer_expression] = STATE(410), + [sym_logical_expression] = STATE(410), + [sym_bitwise_expression] = STATE(410), + [sym_equality_expression] = STATE(410), + [sym_relational_expression] = STATE(410), + [sym_shift_expression] = STATE(410), + [sym_math_expression] = STATE(410), + [sym_cast_expression] = STATE(410), + [sym_sizeof_expression] = STATE(410), + [sym_subscript_expression] = STATE(410), + [sym_call_expression] = STATE(410), + [sym_field_expression] = STATE(410), + [sym_compound_literal_expression] = STATE(410), + [sym_parenthesized_expression] = STATE(410), + [sym_char_literal] = STATE(410), + [sym_concatenated_string] = STATE(410), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_identifier] = ACTIONS(992), [sym_comment] = ACTIONS(39), }, [231] = { - [sym_type_qualifier] = STATE(118), - [sym__type_specifier] = STATE(116), - [sym_sized_type_specifier] = STATE(116), - [sym_enum_specifier] = STATE(116), - [sym_struct_specifier] = STATE(116), - [sym_union_specifier] = STATE(116), - [sym__expression] = STATE(415), - [sym_comma_expression] = STATE(416), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_pointer_expression] = STATE(415), - [sym_logical_expression] = STATE(415), - [sym_bitwise_expression] = STATE(415), - [sym_equality_expression] = STATE(415), - [sym_relational_expression] = STATE(415), - [sym_shift_expression] = STATE(415), - [sym_math_expression] = STATE(415), - [sym_cast_expression] = STATE(415), - [sym_type_descriptor] = STATE(417), - [sym_sizeof_expression] = STATE(415), - [sym_subscript_expression] = STATE(415), - [sym_call_expression] = STATE(415), - [sym_field_expression] = STATE(415), - [sym_compound_literal_expression] = STATE(415), - [sym_parenthesized_expression] = STATE(415), - [sym_char_literal] = STATE(415), - [sym_concatenated_string] = STATE(415), - [sym_string_literal] = STATE(418), - [sym_macro_type_specifier] = STATE(116), - [aux_sym_type_definition_repeat1] = STATE(118), - [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_identifier] = ACTIONS(992), + [sym_parenthesized_expression] = STATE(412), + [anon_sym_LPAREN2] = ACTIONS(994), [sym_comment] = ACTIONS(39), }, [232] = { - [sym_preproc_arg] = ACTIONS(994), - [sym_comment] = ACTIONS(49), + [sym_parenthesized_expression] = STATE(413), + [anon_sym_LPAREN2] = ACTIONS(994), + [sym_comment] = ACTIONS(39), }, [233] = { - [sym_identifier] = ACTIONS(996), + [sym__expression] = STATE(420), + [sym_conditional_expression] = STATE(420), + [sym_assignment_expression] = STATE(420), + [sym_pointer_expression] = STATE(420), + [sym_logical_expression] = STATE(420), + [sym_bitwise_expression] = STATE(420), + [sym_equality_expression] = STATE(420), + [sym_relational_expression] = STATE(420), + [sym_shift_expression] = STATE(420), + [sym_math_expression] = STATE(420), + [sym_cast_expression] = STATE(420), + [sym_sizeof_expression] = STATE(420), + [sym_subscript_expression] = STATE(420), + [sym_call_expression] = STATE(420), + [sym_field_expression] = STATE(420), + [sym_compound_literal_expression] = STATE(420), + [sym_parenthesized_expression] = STATE(420), + [sym_char_literal] = STATE(420), + [sym_concatenated_string] = STATE(420), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_null] = ACTIONS(1012), + [sym_identifier] = ACTIONS(1012), [sym_comment] = ACTIONS(39), }, [234] = { - [sym_identifier] = ACTIONS(998), + [anon_sym_COLON] = ACTIONS(1014), [sym_comment] = ACTIONS(39), }, [235] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1000), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1000), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1000), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), - [sym_identifier] = ACTIONS(1000), + [sym_parenthesized_expression] = STATE(423), + [anon_sym_LPAREN2] = ACTIONS(994), [sym_comment] = ACTIONS(39), }, [236] = { - [ts_builtin_sym_end] = ACTIONS(1004), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1006), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1004), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1006), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1006), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1006), - [sym_preproc_directive] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_typedef] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_auto] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_inline] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_restrict] = ACTIONS(1006), - [anon_sym_volatile] = ACTIONS(1006), - [anon_sym__Atomic] = ACTIONS(1006), - [anon_sym_unsigned] = ACTIONS(1006), - [anon_sym_long] = ACTIONS(1006), - [anon_sym_short] = ACTIONS(1006), - [sym_primitive_type] = ACTIONS(1006), - [anon_sym_enum] = ACTIONS(1006), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_union] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1006), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_goto] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_TILDE] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_sizeof] = ACTIONS(1006), - [sym_number_literal] = ACTIONS(1004), - [anon_sym_SQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym_true] = ACTIONS(1006), - [sym_false] = ACTIONS(1006), - [sym_null] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1006), + [sym_compound_statement] = STATE(432), + [sym_labeled_statement] = STATE(432), + [sym_expression_statement] = STATE(432), + [sym_if_statement] = STATE(432), + [sym_switch_statement] = STATE(432), + [sym_case_statement] = STATE(432), + [sym_while_statement] = STATE(432), + [sym_do_statement] = STATE(432), + [sym_for_statement] = STATE(432), + [sym_return_statement] = STATE(432), + [sym_break_statement] = STATE(432), + [sym_continue_statement] = STATE(432), + [sym_goto_statement] = STATE(432), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1030), [sym_comment] = ACTIONS(39), }, [237] = { - [sym__expression] = STATE(422), - [sym_conditional_expression] = STATE(422), - [sym_assignment_expression] = STATE(422), - [sym_pointer_expression] = STATE(422), - [sym_logical_expression] = STATE(422), - [sym_bitwise_expression] = STATE(422), - [sym_equality_expression] = STATE(422), - [sym_relational_expression] = STATE(422), - [sym_shift_expression] = STATE(422), - [sym_math_expression] = STATE(422), - [sym_cast_expression] = STATE(422), - [sym_sizeof_expression] = STATE(422), - [sym_subscript_expression] = STATE(422), - [sym_call_expression] = STATE(422), - [sym_field_expression] = STATE(422), - [sym_compound_literal_expression] = STATE(422), - [sym_parenthesized_expression] = STATE(422), - [sym_char_literal] = STATE(422), - [sym_concatenated_string] = STATE(422), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1008), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1010), - [sym_false] = ACTIONS(1010), - [sym_null] = ACTIONS(1010), - [sym_identifier] = ACTIONS(1010), + [anon_sym_LPAREN2] = ACTIONS(1032), [sym_comment] = ACTIONS(39), }, [238] = { - [anon_sym_LPAREN] = ACTIONS(1012), + [sym__expression] = STATE(435), + [sym_conditional_expression] = STATE(435), + [sym_assignment_expression] = STATE(435), + [sym_pointer_expression] = STATE(435), + [sym_logical_expression] = STATE(435), + [sym_bitwise_expression] = STATE(435), + [sym_equality_expression] = STATE(435), + [sym_relational_expression] = STATE(435), + [sym_shift_expression] = STATE(435), + [sym_math_expression] = STATE(435), + [sym_cast_expression] = STATE(435), + [sym_sizeof_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_call_expression] = STATE(435), + [sym_field_expression] = STATE(435), + [sym_compound_literal_expression] = STATE(435), + [sym_parenthesized_expression] = STATE(435), + [sym_char_literal] = STATE(435), + [sym_concatenated_string] = STATE(435), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_LPAREN2] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_sizeof] = ACTIONS(859), + [sym_number_literal] = ACTIONS(1036), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1038), + [sym_false] = ACTIONS(1038), + [sym_null] = ACTIONS(1038), + [sym_identifier] = ACTIONS(1038), [sym_comment] = ACTIONS(39), }, [239] = { - [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_SEMI] = ACTIONS(1040), [sym_comment] = ACTIONS(39), }, [240] = { - [sym__expression] = STATE(431), - [sym_conditional_expression] = STATE(431), - [sym_assignment_expression] = STATE(431), - [sym_pointer_expression] = STATE(431), - [sym_logical_expression] = STATE(431), - [sym_bitwise_expression] = STATE(431), - [sym_equality_expression] = STATE(431), - [sym_relational_expression] = STATE(431), - [sym_shift_expression] = STATE(431), - [sym_math_expression] = STATE(431), - [sym_cast_expression] = STATE(431), - [sym_sizeof_expression] = STATE(431), - [sym_subscript_expression] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_field_expression] = STATE(431), - [sym_compound_literal_expression] = STATE(431), - [sym_parenthesized_expression] = STATE(431), - [sym_char_literal] = STATE(431), - [sym_concatenated_string] = STATE(431), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_identifier] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1042), [sym_comment] = ACTIONS(39), }, [241] = { - [anon_sym_COLON] = ACTIONS(1034), + [sym_identifier] = ACTIONS(1044), [sym_comment] = ACTIONS(39), }, [242] = { - [anon_sym_LPAREN] = ACTIONS(1036), + [sym__expression] = STATE(439), + [sym_conditional_expression] = STATE(439), + [sym_assignment_expression] = STATE(439), + [sym_pointer_expression] = STATE(439), + [sym_logical_expression] = STATE(439), + [sym_bitwise_expression] = STATE(439), + [sym_equality_expression] = STATE(439), + [sym_relational_expression] = STATE(439), + [sym_shift_expression] = STATE(439), + [sym_math_expression] = STATE(439), + [sym_cast_expression] = STATE(439), + [sym_sizeof_expression] = STATE(439), + [sym_subscript_expression] = STATE(439), + [sym_call_expression] = STATE(439), + [sym_field_expression] = STATE(439), + [sym_compound_literal_expression] = STATE(439), + [sym_parenthesized_expression] = STATE(439), + [sym_char_literal] = STATE(439), + [sym_concatenated_string] = STATE(439), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1048), [sym_comment] = ACTIONS(39), }, [243] = { - [sym_compound_statement] = STATE(442), - [sym_labeled_statement] = STATE(442), - [sym_expression_statement] = STATE(442), - [sym_if_statement] = STATE(442), - [sym_switch_statement] = STATE(442), - [sym_case_statement] = STATE(442), - [sym_while_statement] = STATE(442), - [sym_do_statement] = STATE(442), - [sym_for_statement] = STATE(442), - [sym_return_statement] = STATE(442), - [sym_break_statement] = STATE(442), - [sym_continue_statement] = STATE(442), - [sym_goto_statement] = STATE(442), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1050), + [sym__expression] = STATE(440), + [sym_conditional_expression] = STATE(440), + [sym_assignment_expression] = STATE(440), + [sym_pointer_expression] = STATE(440), + [sym_logical_expression] = STATE(440), + [sym_bitwise_expression] = STATE(440), + [sym_equality_expression] = STATE(440), + [sym_relational_expression] = STATE(440), + [sym_shift_expression] = STATE(440), + [sym_math_expression] = STATE(440), + [sym_cast_expression] = STATE(440), + [sym_sizeof_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_call_expression] = STATE(440), + [sym_field_expression] = STATE(440), + [sym_compound_literal_expression] = STATE(440), + [sym_parenthesized_expression] = STATE(440), + [sym_char_literal] = STATE(440), + [sym_concatenated_string] = STATE(440), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1052), [sym_comment] = ACTIONS(39), }, [244] = { - [anon_sym_LPAREN] = ACTIONS(1052), + [sym__expression] = STATE(441), + [sym_conditional_expression] = STATE(441), + [sym_assignment_expression] = STATE(441), + [sym_pointer_expression] = STATE(441), + [sym_logical_expression] = STATE(441), + [sym_bitwise_expression] = STATE(441), + [sym_equality_expression] = STATE(441), + [sym_relational_expression] = STATE(441), + [sym_shift_expression] = STATE(441), + [sym_math_expression] = STATE(441), + [sym_cast_expression] = STATE(441), + [sym_sizeof_expression] = STATE(441), + [sym_subscript_expression] = STATE(441), + [sym_call_expression] = STATE(441), + [sym_field_expression] = STATE(441), + [sym_compound_literal_expression] = STATE(441), + [sym_parenthesized_expression] = STATE(441), + [sym_char_literal] = STATE(441), + [sym_concatenated_string] = STATE(441), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1056), [sym_comment] = ACTIONS(39), }, [245] = { - [sym__expression] = STATE(445), - [sym_conditional_expression] = STATE(445), - [sym_assignment_expression] = STATE(445), - [sym_pointer_expression] = STATE(445), - [sym_logical_expression] = STATE(445), - [sym_bitwise_expression] = STATE(445), - [sym_equality_expression] = STATE(445), - [sym_relational_expression] = STATE(445), - [sym_shift_expression] = STATE(445), - [sym_math_expression] = STATE(445), - [sym_cast_expression] = STATE(445), - [sym_sizeof_expression] = STATE(445), - [sym_subscript_expression] = STATE(445), - [sym_call_expression] = STATE(445), - [sym_field_expression] = STATE(445), - [sym_compound_literal_expression] = STATE(445), - [sym_parenthesized_expression] = STATE(445), - [sym_char_literal] = STATE(445), - [sym_concatenated_string] = STATE(445), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1056), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1058), - [sym_false] = ACTIONS(1058), - [sym_null] = ACTIONS(1058), - [sym_identifier] = ACTIONS(1058), + [sym__expression] = STATE(443), + [sym_conditional_expression] = STATE(443), + [sym_assignment_expression] = STATE(443), + [sym_pointer_expression] = STATE(443), + [sym_logical_expression] = STATE(443), + [sym_bitwise_expression] = STATE(443), + [sym_equality_expression] = STATE(443), + [sym_relational_expression] = STATE(443), + [sym_shift_expression] = STATE(443), + [sym_math_expression] = STATE(443), + [sym_cast_expression] = STATE(443), + [sym_sizeof_expression] = STATE(443), + [sym_subscript_expression] = STATE(443), + [sym_call_expression] = STATE(443), + [sym_field_expression] = STATE(443), + [sym_compound_literal_expression] = STATE(443), + [sym_parenthesized_expression] = STATE(443), + [sym_char_literal] = STATE(443), + [sym_concatenated_string] = STATE(443), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1060), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1062), + [sym_false] = ACTIONS(1062), + [sym_null] = ACTIONS(1062), + [sym_identifier] = ACTIONS(1062), [sym_comment] = ACTIONS(39), }, [246] = { - [anon_sym_SEMI] = ACTIONS(1060), - [sym_comment] = ACTIONS(39), + [aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH] = ACTIONS(1064), + [sym_escape_sequence] = ACTIONS(1064), + [sym_comment] = ACTIONS(49), }, [247] = { - [anon_sym_SEMI] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_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_COLON] = ACTIONS(1080), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, [248] = { - [sym_identifier] = ACTIONS(1064), - [sym_comment] = ACTIONS(39), - }, - [249] = { - [sym__expression] = STATE(449), - [sym_conditional_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_pointer_expression] = STATE(449), - [sym_logical_expression] = STATE(449), - [sym_bitwise_expression] = STATE(449), - [sym_equality_expression] = STATE(449), - [sym_relational_expression] = STATE(449), - [sym_shift_expression] = STATE(449), - [sym_math_expression] = STATE(449), - [sym_cast_expression] = STATE(449), - [sym_sizeof_expression] = STATE(449), - [sym_subscript_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_field_expression] = STATE(449), - [sym_compound_literal_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_char_literal] = STATE(449), - [sym_concatenated_string] = STATE(449), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), - [sym_identifier] = ACTIONS(1068), - [sym_comment] = ACTIONS(39), - }, - [250] = { - [sym__expression] = STATE(450), - [sym_conditional_expression] = STATE(450), - [sym_assignment_expression] = STATE(450), - [sym_pointer_expression] = STATE(450), - [sym_logical_expression] = STATE(450), - [sym_bitwise_expression] = STATE(450), - [sym_equality_expression] = STATE(450), - [sym_relational_expression] = STATE(450), - [sym_shift_expression] = STATE(450), - [sym_math_expression] = STATE(450), - [sym_cast_expression] = STATE(450), - [sym_sizeof_expression] = STATE(450), - [sym_subscript_expression] = STATE(450), - [sym_call_expression] = STATE(450), - [sym_field_expression] = STATE(450), - [sym_compound_literal_expression] = STATE(450), - [sym_parenthesized_expression] = STATE(450), - [sym_char_literal] = STATE(450), - [sym_concatenated_string] = STATE(450), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), - [sym_identifier] = ACTIONS(1072), - [sym_comment] = ACTIONS(39), - }, - [251] = { - [sym__expression] = STATE(451), - [sym_conditional_expression] = STATE(451), - [sym_assignment_expression] = STATE(451), - [sym_pointer_expression] = STATE(451), - [sym_logical_expression] = STATE(451), - [sym_bitwise_expression] = STATE(451), - [sym_equality_expression] = STATE(451), - [sym_relational_expression] = STATE(451), - [sym_shift_expression] = STATE(451), - [sym_math_expression] = STATE(451), - [sym_cast_expression] = STATE(451), - [sym_sizeof_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_call_expression] = STATE(451), - [sym_field_expression] = STATE(451), - [sym_compound_literal_expression] = STATE(451), - [sym_parenthesized_expression] = STATE(451), - [sym_char_literal] = STATE(451), - [sym_concatenated_string] = STATE(451), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), - [sym_identifier] = ACTIONS(1076), - [sym_comment] = ACTIONS(39), - }, - [252] = { - [sym__expression] = STATE(453), - [sym_conditional_expression] = STATE(453), - [sym_assignment_expression] = STATE(453), - [sym_pointer_expression] = STATE(453), - [sym_logical_expression] = STATE(453), - [sym_bitwise_expression] = STATE(453), - [sym_equality_expression] = STATE(453), - [sym_relational_expression] = STATE(453), - [sym_shift_expression] = STATE(453), - [sym_math_expression] = STATE(453), - [sym_cast_expression] = STATE(453), - [sym_sizeof_expression] = STATE(453), - [sym_subscript_expression] = STATE(453), - [sym_call_expression] = STATE(453), - [sym_field_expression] = STATE(453), - [sym_compound_literal_expression] = STATE(453), - [sym_parenthesized_expression] = STATE(453), - [sym_char_literal] = STATE(453), - [sym_concatenated_string] = STATE(453), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), [sym_true] = ACTIONS(1082), [sym_false] = ACTIONS(1082), [sym_null] = ACTIONS(1082), [sym_identifier] = ACTIONS(1082), [sym_comment] = ACTIONS(39), }, - [253] = { - [aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH] = ACTIONS(1084), - [sym_escape_sequence] = ACTIONS(1084), - [sym_comment] = ACTIONS(49), - }, - [254] = { - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1100), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), - [sym_identifier] = ACTIONS(86), - [sym_comment] = ACTIONS(39), - }, - [255] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1102), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1104), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1102), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1102), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1102), - [sym_preproc_directive] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1104), - [anon_sym_typedef] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_RBRACE] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1102), - [anon_sym_auto] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_inline] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_restrict] = ACTIONS(1102), - [anon_sym_volatile] = ACTIONS(1102), - [anon_sym__Atomic] = ACTIONS(1102), - [anon_sym_unsigned] = ACTIONS(1102), - [anon_sym_long] = ACTIONS(1102), - [anon_sym_short] = ACTIONS(1102), - [sym_primitive_type] = ACTIONS(1102), - [anon_sym_enum] = ACTIONS(1102), - [anon_sym_struct] = ACTIONS(1102), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_switch] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_default] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_goto] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [anon_sym_sizeof] = ACTIONS(1102), - [sym_number_literal] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym_true] = ACTIONS(1102), - [sym_false] = ACTIONS(1102), - [sym_null] = ACTIONS(1102), - [sym_identifier] = ACTIONS(1102), - [sym_comment] = ACTIONS(39), - }, - [256] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1106), - [sym_preproc_directive] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_RBRACE] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_inline] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [anon_sym__Atomic] = ACTIONS(1106), - [anon_sym_unsigned] = ACTIONS(1106), - [anon_sym_long] = ACTIONS(1106), - [anon_sym_short] = ACTIONS(1106), - [sym_primitive_type] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_switch] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1106), - [anon_sym_default] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_goto] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_sizeof] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym_true] = ACTIONS(1106), - [sym_false] = ACTIONS(1106), - [sym_null] = ACTIONS(1106), - [sym_identifier] = ACTIONS(1106), + [249] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), + [sym_identifier] = ACTIONS(1086), [sym_comment] = ACTIONS(39), }, - [257] = { - [sym__declarator] = STATE(456), - [sym_pointer_declarator] = STATE(456), - [sym_function_declarator] = STATE(456), - [sym_array_declarator] = STATE(456), + [250] = { + [sym__declarator] = STATE(446), + [sym_pointer_declarator] = STATE(446), + [sym_function_declarator] = STATE(446), + [sym_array_declarator] = STATE(446), [sym_init_declarator] = STATE(47), - [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_SEMI] = ACTIONS(92), - [anon_sym_STAR] = ACTIONS(540), - [sym_identifier] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(90), + [anon_sym_LPAREN2] = ACTIONS(92), + [anon_sym_STAR] = ACTIONS(534), + [sym_identifier] = ACTIONS(1090), [sym_comment] = ACTIONS(39), }, - [258] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [251] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(1104), + [anon_sym_STAR_EQ] = ACTIONS(1106), + [anon_sym_SLASH_EQ] = ACTIONS(1106), + [anon_sym_PERCENT_EQ] = ACTIONS(1106), + [anon_sym_PLUS_EQ] = ACTIONS(1106), + [anon_sym_DASH_EQ] = ACTIONS(1106), + [anon_sym_LT_LT_EQ] = ACTIONS(1106), + [anon_sym_GT_GT_EQ] = ACTIONS(1106), + [anon_sym_AMP_EQ] = ACTIONS(1106), + [anon_sym_CARET_EQ] = ACTIONS(1106), + [anon_sym_PIPE_EQ] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_PIPE_PIPE] = ACTIONS(1110), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1114), + [anon_sym_CARET] = ACTIONS(1116), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [259] = { - [anon_sym_SEMI] = ACTIONS(1116), + [252] = { + [anon_sym_SEMI] = ACTIONS(1094), [sym_comment] = ACTIONS(39), }, - [260] = { - [sym_string_literal] = STATE(476), - [aux_sym_concatenated_string_repeat1] = STATE(476), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), + [253] = { + [sym_string_literal] = STATE(466), + [aux_sym_concatenated_string_repeat1] = STATE(466), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, - [261] = { - [sym_preproc_include] = STATE(478), - [sym_preproc_def] = STATE(478), - [sym_preproc_function_def] = STATE(478), - [sym_preproc_call] = STATE(478), - [sym_preproc_if_in_compound_statement] = STATE(255), - [sym_preproc_ifdef_in_compound_statement] = STATE(256), - [sym_declaration] = STATE(478), - [sym_type_definition] = STATE(478), - [sym__declaration_specifiers] = STATE(257), - [sym_compound_statement] = STATE(478), + [254] = { + [sym_preproc_include] = STATE(468), + [sym_preproc_def] = STATE(468), + [sym_preproc_function_def] = STATE(468), + [sym_preproc_call] = STATE(468), + [sym_preproc_if_in_compound_statement] = STATE(248), + [sym_preproc_ifdef_in_compound_statement] = STATE(249), + [sym_declaration] = STATE(468), + [sym_type_definition] = STATE(468), + [sym__declaration_specifiers] = STATE(250), + [sym_compound_statement] = STATE(468), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -12185,57 +12122,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [sym__empty_declaration] = STATE(478), + [sym_labeled_statement] = STATE(468), + [sym_expression_statement] = STATE(468), + [sym_if_statement] = STATE(468), + [sym_switch_statement] = STATE(468), + [sym_case_statement] = STATE(468), + [sym_while_statement] = STATE(468), + [sym_do_statement] = STATE(468), + [sym_for_statement] = STATE(468), + [sym_return_statement] = STATE(468), + [sym_break_statement] = STATE(468), + [sym_continue_statement] = STATE(468), + [sym_goto_statement] = STATE(468), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(468), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(478), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(468), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(548), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(542), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(552), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(544), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(546), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(548), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(550), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_RBRACE] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(1132), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -12251,68 +12188,177 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(596), [sym_comment] = ACTIONS(39), }, - [262] = { + [255] = { + [aux_sym_parameter_list_repeat1] = STATE(471), + [anon_sym_COMMA] = ACTIONS(1134), + [anon_sym_RPAREN] = ACTIONS(1136), + [sym_comment] = ACTIONS(39), + }, + [256] = { + [anon_sym_COMMA] = ACTIONS(1138), + [anon_sym_RPAREN] = ACTIONS(1138), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1138), + [anon_sym_LPAREN2] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1138), + [anon_sym_EQ] = ACTIONS(1138), + [anon_sym_COLON] = ACTIONS(1138), + [sym_comment] = ACTIONS(39), + }, + [257] = { + [sym__declarator] = STATE(474), + [sym__abstract_declarator] = STATE(475), + [sym_pointer_declarator] = STATE(474), + [sym_abstract_pointer_declarator] = STATE(475), + [sym_function_declarator] = STATE(474), + [sym_abstract_function_declarator] = STATE(475), + [sym_array_declarator] = STATE(474), + [sym_abstract_array_declarator] = STATE(475), + [sym_parameter_list] = STATE(212), + [anon_sym_COMMA] = ACTIONS(1140), + [anon_sym_RPAREN] = ACTIONS(1140), + [anon_sym_LPAREN2] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(518), + [sym_identifier] = ACTIONS(1146), + [sym_comment] = ACTIONS(39), + }, + [258] = { + [sym_storage_class_specifier] = STATE(476), + [sym_type_qualifier] = STATE(476), + [aux_sym__declaration_specifiers_repeat1] = STATE(476), + [anon_sym_COMMA] = ACTIONS(98), + [anon_sym_RPAREN] = ACTIONS(98), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(98), + [anon_sym_STAR] = ACTIONS(98), + [anon_sym_LBRACK] = ACTIONS(98), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(100), + [sym_comment] = ACTIONS(39), + }, + [259] = { + [sym_storage_class_specifier] = STATE(51), + [sym_type_qualifier] = STATE(51), + [sym__type_specifier] = STATE(477), + [sym_sized_type_specifier] = STATE(477), + [sym_enum_specifier] = STATE(477), + [sym_struct_specifier] = STATE(477), + [sym_union_specifier] = STATE(477), + [sym_macro_type_specifier] = STATE(477), + [aux_sym__declaration_specifiers_repeat1] = STATE(51), + [aux_sym_sized_type_specifier_repeat1] = STATE(260), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(602), + [anon_sym_long] = ACTIONS(602), + [anon_sym_short] = ACTIONS(602), + [sym_primitive_type] = ACTIONS(1148), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [sym_identifier] = ACTIONS(37), + [sym_comment] = ACTIONS(39), + }, + [260] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(478), + [anon_sym_COMMA] = ACTIONS(106), + [anon_sym_RPAREN] = ACTIONS(106), + [anon_sym_extern] = ACTIONS(108), + [anon_sym_LPAREN2] = ACTIONS(106), + [anon_sym_STAR] = ACTIONS(106), + [anon_sym_LBRACK] = ACTIONS(106), + [anon_sym_static] = ACTIONS(108), + [anon_sym_auto] = ACTIONS(108), + [anon_sym_register] = ACTIONS(108), + [anon_sym_inline] = ACTIONS(108), + [anon_sym_const] = ACTIONS(108), + [anon_sym_restrict] = ACTIONS(108), + [anon_sym_volatile] = ACTIONS(108), + [anon_sym__Atomic] = ACTIONS(108), + [anon_sym_unsigned] = ACTIONS(1150), + [anon_sym_long] = ACTIONS(1150), + [anon_sym_short] = ACTIONS(1150), + [sym_primitive_type] = ACTIONS(112), + [sym_identifier] = ACTIONS(114), + [sym_comment] = ACTIONS(39), + }, + [261] = { [sym_type_qualifier] = STATE(118), [sym__type_specifier] = STATE(116), [sym_sized_type_specifier] = STATE(116), [sym_enum_specifier] = STATE(116), [sym_struct_specifier] = STATE(116), [sym_union_specifier] = STATE(116), - [sym__expression] = STATE(415), - [sym_comma_expression] = STATE(416), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_pointer_expression] = STATE(415), - [sym_logical_expression] = STATE(415), - [sym_bitwise_expression] = STATE(415), - [sym_equality_expression] = STATE(415), - [sym_relational_expression] = STATE(415), - [sym_shift_expression] = STATE(415), - [sym_math_expression] = STATE(415), - [sym_cast_expression] = STATE(415), + [sym__expression] = STATE(406), + [sym_comma_expression] = STATE(407), + [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_type_descriptor] = STATE(479), - [sym_sizeof_expression] = STATE(415), - [sym_subscript_expression] = STATE(415), - [sym_call_expression] = STATE(415), - [sym_field_expression] = STATE(415), - [sym_compound_literal_expression] = STATE(415), - [sym_parenthesized_expression] = STATE(415), - [sym_char_literal] = STATE(415), - [sym_concatenated_string] = STATE(415), - [sym_string_literal] = STATE(418), + [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(409), [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -12324,194 +12370,194 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), + [sym_comment] = ACTIONS(39), + }, + [262] = { + [sym__expression] = STATE(410), + [sym_conditional_expression] = STATE(410), + [sym_assignment_expression] = STATE(410), + [sym_pointer_expression] = STATE(410), + [sym_logical_expression] = STATE(410), + [sym_bitwise_expression] = STATE(410), + [sym_equality_expression] = STATE(410), + [sym_relational_expression] = STATE(410), + [sym_shift_expression] = STATE(410), + [sym_math_expression] = STATE(410), + [sym_cast_expression] = STATE(410), + [sym_sizeof_expression] = STATE(410), + [sym_subscript_expression] = STATE(410), + [sym_call_expression] = STATE(410), + [sym_field_expression] = STATE(410), + [sym_compound_literal_expression] = STATE(410), + [sym_parenthesized_expression] = STATE(410), + [sym_char_literal] = STATE(410), + [sym_concatenated_string] = STATE(410), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), [sym_identifier] = ACTIONS(992), [sym_comment] = ACTIONS(39), }, [263] = { - [sym__expression] = STATE(422), - [sym_conditional_expression] = STATE(422), - [sym_assignment_expression] = STATE(422), - [sym_pointer_expression] = STATE(422), - [sym_logical_expression] = STATE(422), - [sym_bitwise_expression] = STATE(422), - [sym_equality_expression] = STATE(422), - [sym_relational_expression] = STATE(422), - [sym_shift_expression] = STATE(422), - [sym_math_expression] = STATE(422), - [sym_cast_expression] = STATE(422), - [sym_sizeof_expression] = STATE(422), - [sym_subscript_expression] = STATE(422), - [sym_call_expression] = STATE(422), - [sym_field_expression] = STATE(422), - [sym_compound_literal_expression] = STATE(422), - [sym_parenthesized_expression] = STATE(422), - [sym_char_literal] = STATE(422), - [sym_concatenated_string] = STATE(422), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1008), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1010), - [sym_false] = ACTIONS(1010), - [sym_null] = ACTIONS(1010), - [sym_identifier] = ACTIONS(1010), + [anon_sym_COMMA] = ACTIONS(1152), + [anon_sym_RPAREN] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_LPAREN2] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_EQ] = ACTIONS(1152), [sym_comment] = ACTIONS(39), }, [264] = { - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_COMMA] = ACTIONS(1154), - [anon_sym_RPAREN] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_EQ] = ACTIONS(1154), + [sym__expression] = STATE(439), + [sym_conditional_expression] = STATE(439), + [sym_assignment_expression] = STATE(439), + [sym_pointer_expression] = STATE(439), + [sym_logical_expression] = STATE(439), + [sym_bitwise_expression] = STATE(439), + [sym_equality_expression] = STATE(439), + [sym_relational_expression] = STATE(439), + [sym_shift_expression] = STATE(439), + [sym_math_expression] = STATE(439), + [sym_cast_expression] = STATE(439), + [sym_sizeof_expression] = STATE(439), + [sym_subscript_expression] = STATE(439), + [sym_call_expression] = STATE(439), + [sym_field_expression] = STATE(439), + [sym_compound_literal_expression] = STATE(439), + [sym_parenthesized_expression] = STATE(439), + [sym_char_literal] = STATE(439), + [sym_concatenated_string] = STATE(439), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1048), [sym_comment] = ACTIONS(39), }, [265] = { - [sym__expression] = STATE(449), - [sym_conditional_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_pointer_expression] = STATE(449), - [sym_logical_expression] = STATE(449), - [sym_bitwise_expression] = STATE(449), - [sym_equality_expression] = STATE(449), - [sym_relational_expression] = STATE(449), - [sym_shift_expression] = STATE(449), - [sym_math_expression] = STATE(449), - [sym_cast_expression] = STATE(449), - [sym_sizeof_expression] = STATE(449), - [sym_subscript_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_field_expression] = STATE(449), - [sym_compound_literal_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_char_literal] = STATE(449), - [sym_concatenated_string] = STATE(449), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), - [sym_identifier] = ACTIONS(1068), + [sym__expression] = STATE(440), + [sym_conditional_expression] = STATE(440), + [sym_assignment_expression] = STATE(440), + [sym_pointer_expression] = STATE(440), + [sym_logical_expression] = STATE(440), + [sym_bitwise_expression] = STATE(440), + [sym_equality_expression] = STATE(440), + [sym_relational_expression] = STATE(440), + [sym_shift_expression] = STATE(440), + [sym_math_expression] = STATE(440), + [sym_cast_expression] = STATE(440), + [sym_sizeof_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_call_expression] = STATE(440), + [sym_field_expression] = STATE(440), + [sym_compound_literal_expression] = STATE(440), + [sym_parenthesized_expression] = STATE(440), + [sym_char_literal] = STATE(440), + [sym_concatenated_string] = STATE(440), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1052), [sym_comment] = ACTIONS(39), }, [266] = { - [sym__expression] = STATE(450), - [sym_conditional_expression] = STATE(450), - [sym_assignment_expression] = STATE(450), - [sym_pointer_expression] = STATE(450), - [sym_logical_expression] = STATE(450), - [sym_bitwise_expression] = STATE(450), - [sym_equality_expression] = STATE(450), - [sym_relational_expression] = STATE(450), - [sym_shift_expression] = STATE(450), - [sym_math_expression] = STATE(450), - [sym_cast_expression] = STATE(450), - [sym_sizeof_expression] = STATE(450), - [sym_subscript_expression] = STATE(450), - [sym_call_expression] = STATE(450), - [sym_field_expression] = STATE(450), - [sym_compound_literal_expression] = STATE(450), - [sym_parenthesized_expression] = STATE(450), - [sym_char_literal] = STATE(450), - [sym_concatenated_string] = STATE(450), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), - [sym_identifier] = ACTIONS(1072), + [sym__expression] = STATE(441), + [sym_conditional_expression] = STATE(441), + [sym_assignment_expression] = STATE(441), + [sym_pointer_expression] = STATE(441), + [sym_logical_expression] = STATE(441), + [sym_bitwise_expression] = STATE(441), + [sym_equality_expression] = STATE(441), + [sym_relational_expression] = STATE(441), + [sym_shift_expression] = STATE(441), + [sym_math_expression] = STATE(441), + [sym_cast_expression] = STATE(441), + [sym_sizeof_expression] = STATE(441), + [sym_subscript_expression] = STATE(441), + [sym_call_expression] = STATE(441), + [sym_field_expression] = STATE(441), + [sym_compound_literal_expression] = STATE(441), + [sym_parenthesized_expression] = STATE(441), + [sym_char_literal] = STATE(441), + [sym_concatenated_string] = STATE(441), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1056), [sym_comment] = ACTIONS(39), }, [267] = { - [sym__expression] = STATE(451), - [sym_conditional_expression] = STATE(451), - [sym_assignment_expression] = STATE(451), - [sym_pointer_expression] = STATE(451), - [sym_logical_expression] = STATE(451), - [sym_bitwise_expression] = STATE(451), - [sym_equality_expression] = STATE(451), - [sym_relational_expression] = STATE(451), - [sym_shift_expression] = STATE(451), - [sym_math_expression] = STATE(451), - [sym_cast_expression] = STATE(451), - [sym_sizeof_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_call_expression] = STATE(451), - [sym_field_expression] = STATE(451), - [sym_compound_literal_expression] = STATE(451), - [sym_parenthesized_expression] = STATE(451), - [sym_char_literal] = STATE(451), - [sym_concatenated_string] = STATE(451), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), - [sym_identifier] = ACTIONS(1076), - [sym_comment] = ACTIONS(39), - }, - [268] = { [sym__expression] = STATE(481), [sym_conditional_expression] = STATE(481), [sym_assignment_expression] = STATE(481), @@ -12531,86 +12577,86 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(481), [sym_char_literal] = STATE(481), [sym_concatenated_string] = STATE(481), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(1156), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1158), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1160), - [sym_false] = ACTIONS(1160), - [sym_null] = ACTIONS(1160), - [sym_identifier] = ACTIONS(1160), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1156), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1158), + [sym_false] = ACTIONS(1158), + [sym_null] = ACTIONS(1158), + [sym_identifier] = ACTIONS(1158), [sym_comment] = ACTIONS(39), }, - [269] = { - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_RBRACK] = ACTIONS(1092), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [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(1095), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_BANG] = ACTIONS(86), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1092), - [anon_sym_PLUS_PLUS] = ACTIONS(1092), - [anon_sym_sizeof] = ACTIONS(86), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), - [sym_number_literal] = ACTIONS(84), - [anon_sym_SQUOTE] = ACTIONS(84), - [anon_sym_DQUOTE] = ACTIONS(84), - [sym_true] = ACTIONS(86), - [sym_false] = ACTIONS(86), - [sym_null] = ACTIONS(86), - [sym_identifier] = ACTIONS(86), + [268] = { + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_RBRACK] = ACTIONS(1068), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_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_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(83), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(81), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1075), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_sizeof] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_number_literal] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(81), + [sym_true] = ACTIONS(83), + [sym_false] = ACTIONS(83), + [sym_null] = ACTIONS(83), + [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, - [270] = { + [269] = { [sym__expression] = STATE(483), [sym_conditional_expression] = STATE(483), [sym_assignment_expression] = STATE(483), @@ -12630,33 +12676,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(483), [sym_char_literal] = STATE(483), [sym_concatenated_string] = STATE(483), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_RBRACK] = ACTIONS(1162), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1164), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1166), - [sym_false] = ACTIONS(1166), - [sym_null] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1166), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_RBRACK] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1162), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1164), + [sym_false] = ACTIONS(1164), + [sym_null] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1164), [sym_comment] = ACTIONS(39), }, - [271] = { + [270] = { [sym_storage_class_specifier] = STATE(484), [sym_type_qualifier] = STATE(484), [aux_sym__declaration_specifiers_repeat1] = STATE(484), - [anon_sym_LPAREN] = ACTIONS(98), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(98), [anon_sym_STAR] = ACTIONS(98), [anon_sym_RBRACK] = ACTIONS(98), [anon_sym_static] = ACTIONS(23), @@ -12684,91 +12730,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(100), [sym_comment] = ACTIONS(39), }, - [272] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(1162), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [271] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [273] = { + [272] = { [sym_string_literal] = STATE(497), [aux_sym_concatenated_string_repeat1] = STATE(497), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_RBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_RBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, - [274] = { + [273] = { [sym_storage_class_specifier] = STATE(51), [sym_type_qualifier] = STATE(51), [sym__type_specifier] = STATE(498), @@ -12778,7 +12824,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_union_specifier] = STATE(498), [sym_macro_type_specifier] = STATE(498), [aux_sym__declaration_specifiers_repeat1] = STATE(51), - [aux_sym_sized_type_specifier_repeat1] = STATE(275), + [aux_sym_sized_type_specifier_repeat1] = STATE(274), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -12788,20 +12834,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(610), - [anon_sym_long] = ACTIONS(610), - [anon_sym_short] = ACTIONS(610), - [sym_primitive_type] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(612), + [anon_sym_long] = ACTIONS(612), + [anon_sym_short] = ACTIONS(612), + [sym_primitive_type] = ACTIONS(1194), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [275] = { + [274] = { [aux_sym_sized_type_specifier_repeat1] = STATE(499), - [anon_sym_LPAREN] = ACTIONS(106), [anon_sym_extern] = ACTIONS(108), + [anon_sym_LPAREN2] = ACTIONS(106), [anon_sym_STAR] = ACTIONS(106), [anon_sym_RBRACK] = ACTIONS(106), [anon_sym_static] = ACTIONS(108), @@ -12812,9 +12858,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(108), [anon_sym_volatile] = ACTIONS(108), [anon_sym__Atomic] = ACTIONS(108), - [anon_sym_unsigned] = ACTIONS(1198), - [anon_sym_long] = ACTIONS(1198), - [anon_sym_short] = ACTIONS(1198), + [anon_sym_unsigned] = ACTIONS(1196), + [anon_sym_long] = ACTIONS(1196), + [anon_sym_short] = ACTIONS(1196), [sym_primitive_type] = ACTIONS(112), [anon_sym_AMP] = ACTIONS(106), [anon_sym_BANG] = ACTIONS(106), @@ -12833,7 +12879,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(114), [sym_comment] = ACTIONS(39), }, - [276] = { + [275] = { [sym__expression] = STATE(504), [sym_conditional_expression] = STATE(504), [sym_assignment_expression] = STATE(504), @@ -12857,14 +12903,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_designator] = STATE(506), [sym_char_literal] = STATE(504), [sym_concatenated_string] = STATE(504), - [sym_string_literal] = STATE(348), + [sym_string_literal] = STATE(346), [aux_sym_initializer_pair_repeat1] = STATE(506), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_COMMA] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(1200), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1202), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), [anon_sym_TILDE] = ACTIONS(813), @@ -12873,264 +12919,205 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [anon_sym_DOT] = ACTIONS(1206), - [sym_number_literal] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(1204), + [sym_number_literal] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1210), - [sym_false] = ACTIONS(1210), - [sym_null] = ACTIONS(1210), - [sym_identifier] = ACTIONS(1210), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [sym_null] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1208), + [sym_comment] = ACTIONS(39), + }, + [276] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(1104), + [anon_sym_STAR_EQ] = ACTIONS(1106), + [anon_sym_SLASH_EQ] = ACTIONS(1106), + [anon_sym_PERCENT_EQ] = ACTIONS(1106), + [anon_sym_PLUS_EQ] = ACTIONS(1106), + [anon_sym_DASH_EQ] = ACTIONS(1106), + [anon_sym_LT_LT_EQ] = ACTIONS(1106), + [anon_sym_GT_GT_EQ] = ACTIONS(1106), + [anon_sym_AMP_EQ] = ACTIONS(1106), + [anon_sym_CARET_EQ] = ACTIONS(1106), + [anon_sym_PIPE_EQ] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_PIPE_PIPE] = ACTIONS(1110), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1114), + [anon_sym_CARET] = ACTIONS(1116), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [277] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [anon_sym_COMMA] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1210), [sym_comment] = ACTIONS(39), }, [278] = { - [anon_sym_COMMA] = ACTIONS(1212), + [ts_builtin_sym_end] = ACTIONS(1212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1214), + [sym_preproc_directive] = ACTIONS(1214), [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_typedef] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_restrict] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1214), + [anon_sym__Atomic] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_short] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1214), + [anon_sym_case] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_goto] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_sizeof] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1214), + [sym_false] = ACTIONS(1214), + [sym_null] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1214), [sym_comment] = ACTIONS(39), }, [279] = { - [ts_builtin_sym_end] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1216), - [anon_sym_LPAREN] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [sym_null] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1216), + [aux_sym_declaration_repeat1] = STATE(279), + [anon_sym_COMMA] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(952), [sym_comment] = ACTIONS(39), }, [280] = { - [aux_sym_declaration_repeat1] = STATE(280), - [anon_sym_COMMA] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), + [sym_identifier] = ACTIONS(1219), [sym_comment] = ACTIONS(39), }, [281] = { - [ts_builtin_sym_end] = ACTIONS(1221), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1221), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1223), - [sym_preproc_directive] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym_typedef] = ACTIONS(1223), - [anon_sym_extern] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_auto] = ACTIONS(1223), - [anon_sym_register] = ACTIONS(1223), - [anon_sym_inline] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(1223), - [anon_sym_restrict] = ACTIONS(1223), - [anon_sym_volatile] = ACTIONS(1223), - [anon_sym__Atomic] = ACTIONS(1223), - [anon_sym_unsigned] = ACTIONS(1223), - [anon_sym_long] = ACTIONS(1223), - [anon_sym_short] = ACTIONS(1223), - [sym_primitive_type] = ACTIONS(1223), - [anon_sym_enum] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_union] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_case] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_goto] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1221), - [anon_sym_sizeof] = ACTIONS(1223), - [sym_number_literal] = ACTIONS(1221), - [anon_sym_SQUOTE] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [sym_null] = ACTIONS(1223), - [sym_identifier] = ACTIONS(1223), - [sym_comment] = ACTIONS(39), - }, - [282] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1225), - [sym_identifier] = ACTIONS(1225), - [sym_comment] = ACTIONS(39), - }, - [283] = { - [anon_sym_LF] = ACTIONS(1227), - [sym_preproc_arg] = ACTIONS(1227), + [anon_sym_LF] = ACTIONS(1221), + [sym_preproc_arg] = ACTIONS(1221), [sym_comment] = ACTIONS(49), }, - [284] = { + [282] = { [aux_sym_preproc_params_repeat1] = STATE(509), [anon_sym_COMMA] = ACTIONS(664), - [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1223), [sym_comment] = ACTIONS(39), }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(1231), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(1231), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1233), - [sym_preproc_directive] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_typedef] = ACTIONS(1233), - [anon_sym_extern] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_RBRACE] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_auto] = ACTIONS(1233), - [anon_sym_register] = ACTIONS(1233), - [anon_sym_inline] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_restrict] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym__Atomic] = ACTIONS(1233), - [anon_sym_unsigned] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [sym_primitive_type] = ACTIONS(1233), - [anon_sym_enum] = ACTIONS(1233), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_union] = ACTIONS(1233), - [anon_sym_if] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1233), - [anon_sym_case] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1233), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_return] = ACTIONS(1233), - [anon_sym_break] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(1233), - [anon_sym_goto] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1233), - [sym_number_literal] = ACTIONS(1231), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [sym_true] = ACTIONS(1233), - [sym_false] = ACTIONS(1233), - [sym_null] = ACTIONS(1233), - [sym_identifier] = ACTIONS(1233), + [283] = { + [ts_builtin_sym_end] = ACTIONS(1225), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1227), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1227), + [sym_false] = ACTIONS(1227), + [sym_null] = ACTIONS(1227), + [sym_identifier] = ACTIONS(1227), [sym_comment] = ACTIONS(39), }, - [286] = { + [284] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(328), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(326), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(328), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(328), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(328), @@ -13142,6 +13129,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(328), [anon_sym_extern] = ACTIONS(328), [anon_sym_LBRACE] = ACTIONS(326), + [anon_sym_LPAREN2] = ACTIONS(326), [anon_sym_STAR] = ACTIONS(326), [anon_sym_static] = ACTIONS(328), [anon_sym_auto] = ACTIONS(328), @@ -13186,82 +13174,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(328), [sym_comment] = ACTIONS(39), }, - [287] = { + [285] = { [aux_sym_string_literal_repeat1] = STATE(136), - [anon_sym_DQUOTE] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1229), [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(332), [sym_escape_sequence] = ACTIONS(334), [sym_comment] = ACTIONS(49), }, - [288] = { - [sym_preproc_arg] = ACTIONS(1237), - [sym_comment] = ACTIONS(49), - }, - [289] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(340), - [sym_preproc_directive] = ACTIONS(340), - [anon_sym_SEMI] = ACTIONS(338), - [anon_sym_typedef] = ACTIONS(340), - [anon_sym_extern] = ACTIONS(340), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_static] = ACTIONS(340), - [anon_sym_auto] = ACTIONS(340), - [anon_sym_register] = ACTIONS(340), - [anon_sym_inline] = ACTIONS(340), - [anon_sym_const] = ACTIONS(340), - [anon_sym_restrict] = ACTIONS(340), - [anon_sym_volatile] = ACTIONS(340), - [anon_sym__Atomic] = ACTIONS(340), - [anon_sym_unsigned] = ACTIONS(340), - [anon_sym_long] = ACTIONS(340), - [anon_sym_short] = ACTIONS(340), - [sym_primitive_type] = ACTIONS(340), - [anon_sym_enum] = ACTIONS(340), - [anon_sym_struct] = ACTIONS(340), - [anon_sym_union] = ACTIONS(340), - [anon_sym_if] = ACTIONS(340), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(340), - [anon_sym_default] = ACTIONS(340), - [anon_sym_while] = ACTIONS(340), - [anon_sym_do] = ACTIONS(340), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(340), - [anon_sym_break] = ACTIONS(340), - [anon_sym_continue] = ACTIONS(340), - [anon_sym_goto] = ACTIONS(340), - [anon_sym_AMP] = ACTIONS(338), - [anon_sym_BANG] = ACTIONS(338), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(338), - [anon_sym_PLUS_PLUS] = ACTIONS(338), - [anon_sym_sizeof] = ACTIONS(340), - [sym_number_literal] = ACTIONS(338), - [anon_sym_SQUOTE] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(338), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), - [sym_identifier] = ACTIONS(340), + [286] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(338), + [sym_preproc_directive] = ACTIONS(338), + [anon_sym_SEMI] = ACTIONS(336), + [anon_sym_typedef] = ACTIONS(338), + [anon_sym_extern] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_LPAREN2] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(336), + [anon_sym_static] = ACTIONS(338), + [anon_sym_auto] = ACTIONS(338), + [anon_sym_register] = ACTIONS(338), + [anon_sym_inline] = ACTIONS(338), + [anon_sym_const] = ACTIONS(338), + [anon_sym_restrict] = ACTIONS(338), + [anon_sym_volatile] = ACTIONS(338), + [anon_sym__Atomic] = ACTIONS(338), + [anon_sym_unsigned] = ACTIONS(338), + [anon_sym_long] = ACTIONS(338), + [anon_sym_short] = ACTIONS(338), + [sym_primitive_type] = ACTIONS(338), + [anon_sym_enum] = ACTIONS(338), + [anon_sym_struct] = ACTIONS(338), + [anon_sym_union] = ACTIONS(338), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(338), + [anon_sym_case] = ACTIONS(338), + [anon_sym_default] = ACTIONS(338), + [anon_sym_while] = ACTIONS(338), + [anon_sym_do] = ACTIONS(338), + [anon_sym_for] = ACTIONS(338), + [anon_sym_return] = ACTIONS(338), + [anon_sym_break] = ACTIONS(338), + [anon_sym_continue] = ACTIONS(338), + [anon_sym_goto] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(336), + [anon_sym_TILDE] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_DASH_DASH] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_sizeof] = ACTIONS(338), + [sym_number_literal] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(336), + [sym_true] = ACTIONS(338), + [sym_false] = ACTIONS(338), + [sym_null] = ACTIONS(338), + [sym_identifier] = ACTIONS(338), [sym_comment] = ACTIONS(39), }, - [290] = { - [anon_sym_LF] = ACTIONS(1239), - [sym_preproc_arg] = ACTIONS(1241), + [287] = { + [anon_sym_LF] = ACTIONS(1231), [sym_comment] = ACTIONS(49), }, - [291] = { + [288] = { + [anon_sym_LF] = ACTIONS(1233), + [sym_preproc_arg] = ACTIONS(1235), + [sym_comment] = ACTIONS(49), + }, + [289] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(360), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(360), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(360), @@ -13291,11 +13279,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(360), [sym_comment] = ACTIONS(39), }, - [292] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1243), + [290] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1237), [sym_comment] = ACTIONS(39), }, - [293] = { + [291] = { [sym_preproc_include] = STATE(169), [sym_preproc_def] = STATE(169), [sym_preproc_function_def] = STATE(169), @@ -13324,7 +13312,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1245), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1239), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), @@ -13350,7 +13338,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [294] = { + [292] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(402), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(402), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(402), @@ -13380,11 +13368,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(402), [sym_comment] = ACTIONS(39), }, - [295] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1247), + [293] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1241), [sym_comment] = ACTIONS(39), }, - [296] = { + [294] = { [sym_preproc_include] = STATE(169), [sym_preproc_def] = STATE(169), [sym_preproc_function_def] = STATE(169), @@ -13413,7 +13401,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1249), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1243), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), @@ -13439,7 +13427,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [297] = { + [295] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(410), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(410), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(410), @@ -13469,11 +13457,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(410), [sym_comment] = ACTIONS(39), }, - [298] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1251), + [296] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1245), [sym_comment] = ACTIONS(39), }, - [299] = { + [297] = { [sym_preproc_include] = STATE(169), [sym_preproc_def] = STATE(169), [sym_preproc_function_def] = STATE(169), @@ -13502,7 +13490,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1247), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), @@ -13528,17 +13516,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [300] = { + [298] = { [aux_sym_string_literal_repeat1] = STATE(521), - [anon_sym_DQUOTE] = ACTIONS(1255), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1257), - [sym_escape_sequence] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(1249), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1251), + [sym_escape_sequence] = ACTIONS(1253), [sym_comment] = ACTIONS(49), }, - [301] = { + [299] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(125), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(125), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(125), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(125), @@ -13548,6 +13535,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(125), [anon_sym_extern] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LPAREN2] = ACTIONS(123), [anon_sym_STAR] = ACTIONS(123), [anon_sym_static] = ACTIONS(125), [anon_sym_auto] = ACTIONS(125), @@ -13592,14 +13580,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(125), [sym_comment] = ACTIONS(39), }, - [302] = { + [300] = { [sym_preproc_params] = STATE(524), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(1261), - [anon_sym_LF] = ACTIONS(1263), - [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_LF] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(129), + [sym_preproc_arg] = ACTIONS(1257), [sym_comment] = ACTIONS(49), }, - [303] = { + [301] = { [sym_preproc_include] = STATE(527), [sym_preproc_def] = STATE(527), [sym_preproc_function_def] = STATE(527), @@ -13628,7 +13616,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1265), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1259), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), @@ -13654,7 +13642,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [304] = { + [302] = { [sym_preproc_include] = STATE(530), [sym_preproc_def] = STATE(530), [sym_preproc_function_def] = STATE(530), @@ -13683,7 +13671,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1267), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1261), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), @@ -13709,7 +13697,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [305] = { + [303] = { [sym_preproc_include] = STATE(533), [sym_preproc_def] = STATE(533), [sym_preproc_function_def] = STATE(533), @@ -13738,7 +13726,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1263), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), @@ -13764,78 +13752,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [306] = { - [sym_preproc_arg] = ACTIONS(1271), - [sym_comment] = ACTIONS(49), - }, - [307] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(163), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(161), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(163), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(163), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(163), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(163), - [sym_preproc_directive] = ACTIONS(163), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(161), - [anon_sym_static] = ACTIONS(163), - [anon_sym_auto] = ACTIONS(163), - [anon_sym_register] = ACTIONS(163), - [anon_sym_inline] = ACTIONS(163), - [anon_sym_const] = ACTIONS(163), - [anon_sym_restrict] = ACTIONS(163), - [anon_sym_volatile] = ACTIONS(163), - [anon_sym__Atomic] = ACTIONS(163), - [anon_sym_unsigned] = ACTIONS(163), - [anon_sym_long] = ACTIONS(163), - [anon_sym_short] = ACTIONS(163), - [sym_primitive_type] = ACTIONS(163), - [anon_sym_enum] = ACTIONS(163), - [anon_sym_struct] = ACTIONS(163), - [anon_sym_union] = ACTIONS(163), - [anon_sym_if] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(163), - [anon_sym_case] = ACTIONS(163), - [anon_sym_default] = ACTIONS(163), - [anon_sym_while] = ACTIONS(163), - [anon_sym_do] = ACTIONS(163), - [anon_sym_for] = ACTIONS(163), - [anon_sym_return] = ACTIONS(163), - [anon_sym_break] = ACTIONS(163), - [anon_sym_continue] = ACTIONS(163), - [anon_sym_goto] = ACTIONS(163), - [anon_sym_AMP] = ACTIONS(161), - [anon_sym_BANG] = ACTIONS(161), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_DASH_DASH] = ACTIONS(161), - [anon_sym_PLUS_PLUS] = ACTIONS(161), - [anon_sym_sizeof] = ACTIONS(163), - [sym_number_literal] = ACTIONS(161), - [anon_sym_SQUOTE] = ACTIONS(161), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_true] = ACTIONS(163), - [sym_false] = ACTIONS(163), - [sym_null] = ACTIONS(163), - [sym_identifier] = ACTIONS(163), + [304] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(161), + [sym_preproc_directive] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(161), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_LPAREN2] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(159), + [anon_sym_static] = ACTIONS(161), + [anon_sym_auto] = ACTIONS(161), + [anon_sym_register] = ACTIONS(161), + [anon_sym_inline] = ACTIONS(161), + [anon_sym_const] = ACTIONS(161), + [anon_sym_restrict] = ACTIONS(161), + [anon_sym_volatile] = ACTIONS(161), + [anon_sym__Atomic] = ACTIONS(161), + [anon_sym_unsigned] = ACTIONS(161), + [anon_sym_long] = ACTIONS(161), + [anon_sym_short] = ACTIONS(161), + [sym_primitive_type] = ACTIONS(161), + [anon_sym_enum] = ACTIONS(161), + [anon_sym_struct] = ACTIONS(161), + [anon_sym_union] = ACTIONS(161), + [anon_sym_if] = ACTIONS(161), + [anon_sym_switch] = ACTIONS(161), + [anon_sym_case] = ACTIONS(161), + [anon_sym_default] = ACTIONS(161), + [anon_sym_while] = ACTIONS(161), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(161), + [anon_sym_return] = ACTIONS(161), + [anon_sym_break] = ACTIONS(161), + [anon_sym_continue] = ACTIONS(161), + [anon_sym_goto] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(159), + [anon_sym_TILDE] = ACTIONS(159), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_DASH_DASH] = ACTIONS(159), + [anon_sym_PLUS_PLUS] = ACTIONS(159), + [anon_sym_sizeof] = ACTIONS(161), + [sym_number_literal] = ACTIONS(159), + [anon_sym_SQUOTE] = ACTIONS(159), + [anon_sym_DQUOTE] = ACTIONS(159), + [sym_true] = ACTIONS(161), + [sym_false] = ACTIONS(161), + [sym_null] = ACTIONS(161), + [sym_identifier] = ACTIONS(161), [sym_comment] = ACTIONS(39), }, - [308] = { + [305] = { + [anon_sym_LF] = ACTIONS(1265), + [sym_comment] = ACTIONS(49), + }, + [306] = { [sym__type_declarator] = STATE(535), [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(167), [sym_identifier] = ACTIONS(169), [sym_comment] = ACTIONS(39), }, - [309] = { + [307] = { [sym_type_qualifier] = STATE(90), [sym__type_specifier] = STATE(536), [sym_sized_type_specifier] = STATE(536), @@ -13852,14 +13840,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(1273), + [sym_primitive_type] = ACTIONS(1267), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [310] = { + [308] = { [sym_function_definition] = STATE(538), [sym_declaration] = STATE(538), [sym__declaration_specifiers] = STATE(539), @@ -13875,7 +13863,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1269), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -13894,93 +13882,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [311] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(231), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(233), - [sym_preproc_directive] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(231), - [anon_sym_typedef] = ACTIONS(233), - [anon_sym_extern] = ACTIONS(233), - [anon_sym_LBRACE] = ACTIONS(231), - [anon_sym_STAR] = ACTIONS(231), - [anon_sym_static] = ACTIONS(233), - [anon_sym_auto] = ACTIONS(233), - [anon_sym_register] = ACTIONS(233), - [anon_sym_inline] = ACTIONS(233), - [anon_sym_const] = ACTIONS(233), - [anon_sym_restrict] = ACTIONS(233), - [anon_sym_volatile] = ACTIONS(233), - [anon_sym__Atomic] = ACTIONS(233), - [anon_sym_unsigned] = ACTIONS(233), - [anon_sym_long] = ACTIONS(233), - [anon_sym_short] = ACTIONS(233), - [sym_primitive_type] = ACTIONS(233), - [anon_sym_enum] = ACTIONS(233), - [anon_sym_struct] = ACTIONS(233), - [anon_sym_union] = ACTIONS(233), - [anon_sym_if] = ACTIONS(233), - [anon_sym_switch] = ACTIONS(233), - [anon_sym_case] = ACTIONS(233), - [anon_sym_default] = ACTIONS(233), - [anon_sym_while] = ACTIONS(233), - [anon_sym_do] = ACTIONS(233), - [anon_sym_for] = ACTIONS(233), - [anon_sym_return] = ACTIONS(233), - [anon_sym_break] = ACTIONS(233), - [anon_sym_continue] = ACTIONS(233), - [anon_sym_goto] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(231), - [anon_sym_BANG] = ACTIONS(231), - [anon_sym_TILDE] = ACTIONS(231), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(231), - [anon_sym_SQUOTE] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(231), - [sym_true] = ACTIONS(233), - [sym_false] = ACTIONS(233), - [sym_null] = ACTIONS(233), - [sym_identifier] = ACTIONS(233), + [309] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(229), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(229), + [sym_preproc_directive] = ACTIONS(229), + [anon_sym_SEMI] = ACTIONS(227), + [anon_sym_typedef] = ACTIONS(229), + [anon_sym_extern] = ACTIONS(229), + [anon_sym_LBRACE] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(227), + [anon_sym_STAR] = ACTIONS(227), + [anon_sym_static] = ACTIONS(229), + [anon_sym_auto] = ACTIONS(229), + [anon_sym_register] = ACTIONS(229), + [anon_sym_inline] = ACTIONS(229), + [anon_sym_const] = ACTIONS(229), + [anon_sym_restrict] = ACTIONS(229), + [anon_sym_volatile] = ACTIONS(229), + [anon_sym__Atomic] = ACTIONS(229), + [anon_sym_unsigned] = ACTIONS(229), + [anon_sym_long] = ACTIONS(229), + [anon_sym_short] = ACTIONS(229), + [sym_primitive_type] = ACTIONS(229), + [anon_sym_enum] = ACTIONS(229), + [anon_sym_struct] = ACTIONS(229), + [anon_sym_union] = ACTIONS(229), + [anon_sym_if] = ACTIONS(229), + [anon_sym_switch] = ACTIONS(229), + [anon_sym_case] = ACTIONS(229), + [anon_sym_default] = ACTIONS(229), + [anon_sym_while] = ACTIONS(229), + [anon_sym_do] = ACTIONS(229), + [anon_sym_for] = ACTIONS(229), + [anon_sym_return] = ACTIONS(229), + [anon_sym_break] = ACTIONS(229), + [anon_sym_continue] = ACTIONS(229), + [anon_sym_goto] = ACTIONS(229), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_BANG] = ACTIONS(227), + [anon_sym_TILDE] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_DASH_DASH] = ACTIONS(227), + [anon_sym_PLUS_PLUS] = ACTIONS(227), + [anon_sym_sizeof] = ACTIONS(229), + [sym_number_literal] = ACTIONS(227), + [anon_sym_SQUOTE] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(227), + [sym_true] = ACTIONS(229), + [sym_false] = ACTIONS(229), + [sym_null] = ACTIONS(229), + [sym_identifier] = ACTIONS(229), [sym_comment] = ACTIONS(39), }, - [312] = { + [310] = { [sym_compound_statement] = STATE(542), [sym_parameter_list] = STATE(131), [aux_sym_declaration_repeat1] = STATE(543), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1279), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(245), [anon_sym_EQ] = ACTIONS(247), [sym_comment] = ACTIONS(39), }, - [313] = { + [311] = { [aux_sym_declaration_repeat1] = STATE(543), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(1271), [sym_comment] = ACTIONS(39), }, - [314] = { - [sym_preproc_include] = STATE(314), - [sym_preproc_def] = STATE(314), - [sym_preproc_function_def] = STATE(314), - [sym_preproc_call] = STATE(314), - [sym_preproc_if] = STATE(314), - [sym_preproc_ifdef] = STATE(314), - [sym_function_definition] = STATE(314), - [sym_declaration] = STATE(314), - [sym_type_definition] = STATE(314), + [312] = { + [sym_preproc_include] = STATE(312), + [sym_preproc_def] = STATE(312), + [sym_preproc_function_def] = STATE(312), + [sym_preproc_call] = STATE(312), + [sym_preproc_if] = STATE(312), + [sym_preproc_ifdef] = STATE(312), + [sym_function_definition] = STATE(312), + [sym_declaration] = STATE(312), + [sym_type_definition] = STATE(312), [sym__declaration_specifiers] = STATE(156), - [sym_linkage_specification] = STATE(314), + [sym_linkage_specification] = STATE(312), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -13988,20 +13976,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(314), + [sym__empty_declaration] = STATE(312), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(314), + [aux_sym_translation_unit_repeat1] = STATE(312), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1281), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1284), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1287), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(743), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1290), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1293), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1299), - [anon_sym_extern] = ACTIONS(1302), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1275), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1281), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(747), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1284), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1296), [anon_sym_static] = ACTIONS(279), [anon_sym_auto] = ACTIONS(279), [anon_sym_register] = ACTIONS(279), @@ -14020,11 +14008,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(300), [sym_comment] = ACTIONS(39), }, - [315] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1305), + [313] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1299), [sym_comment] = ACTIONS(39), }, - [316] = { + [314] = { [sym_preproc_include] = STATE(169), [sym_preproc_def] = STATE(169), [sym_preproc_function_def] = STATE(169), @@ -14053,7 +14041,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1301), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), @@ -14079,39 +14067,94 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [317] = { - [anon_sym_LF] = ACTIONS(1309), - [sym_comment] = ACTIONS(49), + [315] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(418), + [sym_preproc_directive] = ACTIONS(418), + [anon_sym_SEMI] = ACTIONS(416), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_extern] = ACTIONS(418), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_LPAREN2] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(416), + [anon_sym_static] = ACTIONS(418), + [anon_sym_auto] = ACTIONS(418), + [anon_sym_register] = ACTIONS(418), + [anon_sym_inline] = ACTIONS(418), + [anon_sym_const] = ACTIONS(418), + [anon_sym_restrict] = ACTIONS(418), + [anon_sym_volatile] = ACTIONS(418), + [anon_sym__Atomic] = ACTIONS(418), + [anon_sym_unsigned] = ACTIONS(418), + [anon_sym_long] = ACTIONS(418), + [anon_sym_short] = ACTIONS(418), + [sym_primitive_type] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(418), + [anon_sym_struct] = ACTIONS(418), + [anon_sym_union] = ACTIONS(418), + [anon_sym_if] = ACTIONS(418), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_case] = ACTIONS(418), + [anon_sym_default] = ACTIONS(418), + [anon_sym_while] = ACTIONS(418), + [anon_sym_do] = ACTIONS(418), + [anon_sym_for] = ACTIONS(418), + [anon_sym_return] = ACTIONS(418), + [anon_sym_break] = ACTIONS(418), + [anon_sym_continue] = ACTIONS(418), + [anon_sym_goto] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(416), + [anon_sym_TILDE] = ACTIONS(416), + [anon_sym_PLUS] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(416), + [anon_sym_sizeof] = ACTIONS(418), + [sym_number_literal] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(416), + [anon_sym_DQUOTE] = ACTIONS(416), + [sym_true] = ACTIONS(418), + [sym_false] = ACTIONS(418), + [sym_null] = ACTIONS(418), + [sym_identifier] = ACTIONS(418), + [sym_comment] = ACTIONS(39), }, - [318] = { - [sym_parameter_list] = STATE(181), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(426), + [316] = { + [sym_parameter_list] = STATE(180), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym_LPAREN2] = ACTIONS(243), + [anon_sym_LBRACK] = ACTIONS(428), [sym_comment] = ACTIONS(39), }, - [319] = { - [sym__type_declarator] = STATE(547), + [317] = { + [sym__type_declarator] = STATE(546), [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(167), [sym_identifier] = ACTIONS(169), [sym_comment] = ACTIONS(39), }, - [320] = { - [sym_preproc_include] = STATE(549), - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if] = STATE(549), - [sym_preproc_ifdef] = STATE(549), - [sym_function_definition] = STATE(549), - [sym_declaration] = STATE(549), - [sym_type_definition] = STATE(549), + [318] = { + [sym_preproc_include] = STATE(548), + [sym_preproc_def] = STATE(548), + [sym_preproc_function_def] = STATE(548), + [sym_preproc_call] = STATE(548), + [sym_preproc_if] = STATE(548), + [sym_preproc_ifdef] = STATE(548), + [sym_function_definition] = STATE(548), + [sym_declaration] = STATE(548), + [sym_type_definition] = STATE(548), [sym__declaration_specifiers] = STATE(17), - [sym_linkage_specification] = STATE(549), + [sym_linkage_specification] = STATE(548), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -14119,9 +14162,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(549), + [sym__empty_declaration] = STATE(548), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(549), + [aux_sym_translation_unit_repeat1] = STATE(548), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), @@ -14132,7 +14175,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1305), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -14151,118 +14194,118 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [321] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(446), - [sym_preproc_directive] = ACTIONS(446), - [anon_sym_typedef] = ACTIONS(446), - [anon_sym_extern] = ACTIONS(446), - [anon_sym_static] = ACTIONS(446), - [anon_sym_auto] = ACTIONS(446), - [anon_sym_register] = ACTIONS(446), - [anon_sym_inline] = ACTIONS(446), - [anon_sym_const] = ACTIONS(446), - [anon_sym_restrict] = ACTIONS(446), - [anon_sym_volatile] = ACTIONS(446), - [anon_sym__Atomic] = ACTIONS(446), - [anon_sym_unsigned] = ACTIONS(446), - [anon_sym_long] = ACTIONS(446), - [anon_sym_short] = ACTIONS(446), - [sym_primitive_type] = ACTIONS(446), - [anon_sym_enum] = ACTIONS(446), - [anon_sym_struct] = ACTIONS(446), - [anon_sym_union] = ACTIONS(446), - [sym_identifier] = ACTIONS(446), + [319] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(448), + [anon_sym_typedef] = ACTIONS(448), + [anon_sym_extern] = ACTIONS(448), + [anon_sym_static] = ACTIONS(448), + [anon_sym_auto] = ACTIONS(448), + [anon_sym_register] = ACTIONS(448), + [anon_sym_inline] = ACTIONS(448), + [anon_sym_const] = ACTIONS(448), + [anon_sym_restrict] = ACTIONS(448), + [anon_sym_volatile] = ACTIONS(448), + [anon_sym__Atomic] = ACTIONS(448), + [anon_sym_unsigned] = ACTIONS(448), + [anon_sym_long] = ACTIONS(448), + [anon_sym_short] = ACTIONS(448), + [sym_primitive_type] = ACTIONS(448), + [anon_sym_enum] = ACTIONS(448), + [anon_sym_struct] = ACTIONS(448), + [anon_sym_union] = ACTIONS(448), + [sym_identifier] = ACTIONS(448), [sym_comment] = ACTIONS(39), }, - [322] = { + [320] = { [sym__declarator] = STATE(166), [sym_pointer_declarator] = STATE(166), [sym_function_declarator] = STATE(166), [sym_array_declarator] = STATE(166), [sym_init_declarator] = STATE(167), - [anon_sym_LPAREN] = ACTIONS(90), + [anon_sym_LPAREN2] = ACTIONS(92), [anon_sym_STAR] = ACTIONS(94), [sym_identifier] = ACTIONS(396), [sym_comment] = ACTIONS(39), }, - [323] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(546), - [anon_sym_LPAREN] = ACTIONS(544), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(546), - [sym_preproc_directive] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_typedef] = ACTIONS(546), - [anon_sym_extern] = ACTIONS(546), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_static] = ACTIONS(546), - [anon_sym_auto] = ACTIONS(546), - [anon_sym_register] = ACTIONS(546), - [anon_sym_inline] = ACTIONS(546), - [anon_sym_const] = ACTIONS(546), - [anon_sym_restrict] = ACTIONS(546), - [anon_sym_volatile] = ACTIONS(546), - [anon_sym__Atomic] = ACTIONS(546), - [anon_sym_unsigned] = ACTIONS(546), - [anon_sym_long] = ACTIONS(546), - [anon_sym_short] = ACTIONS(546), - [sym_primitive_type] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(546), - [anon_sym_struct] = ACTIONS(546), - [anon_sym_union] = ACTIONS(546), - [anon_sym_if] = ACTIONS(546), - [anon_sym_else] = ACTIONS(546), - [anon_sym_switch] = ACTIONS(546), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(546), - [anon_sym_while] = ACTIONS(546), - [anon_sym_do] = ACTIONS(546), - [anon_sym_for] = ACTIONS(546), - [anon_sym_return] = ACTIONS(546), - [anon_sym_break] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(546), - [anon_sym_goto] = ACTIONS(546), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_sizeof] = ACTIONS(546), - [sym_number_literal] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(544), - [sym_true] = ACTIONS(546), - [sym_false] = ACTIONS(546), - [sym_null] = ACTIONS(546), - [sym_identifier] = ACTIONS(546), + [321] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(540), + [sym_preproc_directive] = ACTIONS(540), + [anon_sym_SEMI] = ACTIONS(538), + [anon_sym_typedef] = ACTIONS(540), + [anon_sym_extern] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(538), + [anon_sym_LPAREN2] = ACTIONS(538), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_static] = ACTIONS(540), + [anon_sym_auto] = ACTIONS(540), + [anon_sym_register] = ACTIONS(540), + [anon_sym_inline] = ACTIONS(540), + [anon_sym_const] = ACTIONS(540), + [anon_sym_restrict] = ACTIONS(540), + [anon_sym_volatile] = ACTIONS(540), + [anon_sym__Atomic] = ACTIONS(540), + [anon_sym_unsigned] = ACTIONS(540), + [anon_sym_long] = ACTIONS(540), + [anon_sym_short] = ACTIONS(540), + [sym_primitive_type] = ACTIONS(540), + [anon_sym_enum] = ACTIONS(540), + [anon_sym_struct] = ACTIONS(540), + [anon_sym_union] = ACTIONS(540), + [anon_sym_if] = ACTIONS(540), + [anon_sym_else] = ACTIONS(540), + [anon_sym_switch] = ACTIONS(540), + [anon_sym_case] = ACTIONS(540), + [anon_sym_default] = ACTIONS(540), + [anon_sym_while] = ACTIONS(540), + [anon_sym_do] = ACTIONS(540), + [anon_sym_for] = ACTIONS(540), + [anon_sym_return] = ACTIONS(540), + [anon_sym_break] = ACTIONS(540), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_goto] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_BANG] = ACTIONS(538), + [anon_sym_TILDE] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_DASH_DASH] = ACTIONS(538), + [anon_sym_PLUS_PLUS] = ACTIONS(538), + [anon_sym_sizeof] = ACTIONS(540), + [sym_number_literal] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE] = ACTIONS(538), + [sym_true] = ACTIONS(540), + [sym_false] = ACTIONS(540), + [sym_null] = ACTIONS(540), + [sym_identifier] = ACTIONS(540), [sym_comment] = ACTIONS(39), }, - [324] = { - [sym_preproc_include] = STATE(551), - [sym_preproc_def] = STATE(551), - [sym_preproc_function_def] = STATE(551), - [sym_preproc_call] = STATE(551), - [sym_preproc_if_in_compound_statement] = STATE(255), - [sym_preproc_ifdef_in_compound_statement] = STATE(256), - [sym_declaration] = STATE(551), - [sym_type_definition] = STATE(551), - [sym__declaration_specifiers] = STATE(257), - [sym_compound_statement] = STATE(551), + [322] = { + [sym_preproc_include] = STATE(550), + [sym_preproc_def] = STATE(550), + [sym_preproc_function_def] = STATE(550), + [sym_preproc_call] = STATE(550), + [sym_preproc_if_in_compound_statement] = STATE(248), + [sym_preproc_ifdef_in_compound_statement] = STATE(249), + [sym_declaration] = STATE(550), + [sym_type_definition] = STATE(550), + [sym__declaration_specifiers] = STATE(250), + [sym_compound_statement] = STATE(550), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -14270,57 +14313,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(551), - [sym_expression_statement] = STATE(551), - [sym_if_statement] = STATE(551), - [sym_switch_statement] = STATE(551), - [sym_case_statement] = STATE(551), - [sym_while_statement] = STATE(551), - [sym_do_statement] = STATE(551), - [sym_for_statement] = STATE(551), - [sym_return_statement] = STATE(551), - [sym_break_statement] = STATE(551), - [sym_continue_statement] = STATE(551), - [sym_goto_statement] = STATE(551), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [sym__empty_declaration] = STATE(551), + [sym_labeled_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_case_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_goto_statement] = STATE(550), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(550), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(551), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(550), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(548), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(542), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(552), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(544), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(546), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(548), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(550), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_RBRACE] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -14336,68 +14379,126 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(596), + [sym_comment] = ACTIONS(39), + }, + [323] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(640), + [sym_preproc_directive] = ACTIONS(640), + [anon_sym_typedef] = ACTIONS(640), + [anon_sym_extern] = ACTIONS(640), + [anon_sym_static] = ACTIONS(640), + [anon_sym_auto] = ACTIONS(640), + [anon_sym_register] = ACTIONS(640), + [anon_sym_inline] = ACTIONS(640), + [anon_sym_const] = ACTIONS(640), + [anon_sym_restrict] = ACTIONS(640), + [anon_sym_volatile] = ACTIONS(640), + [anon_sym__Atomic] = ACTIONS(640), + [anon_sym_unsigned] = ACTIONS(640), + [anon_sym_long] = ACTIONS(640), + [anon_sym_short] = ACTIONS(640), + [sym_primitive_type] = ACTIONS(640), + [anon_sym_enum] = ACTIONS(640), + [anon_sym_struct] = ACTIONS(640), + [anon_sym_union] = ACTIONS(640), + [sym_identifier] = ACTIONS(640), + [sym_comment] = ACTIONS(39), + }, + [324] = { + [aux_sym_declaration_repeat1] = STATE(279), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(1309), [sym_comment] = ACTIONS(39), }, [325] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(638), - [sym_preproc_directive] = ACTIONS(638), - [anon_sym_typedef] = ACTIONS(638), - [anon_sym_extern] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_auto] = ACTIONS(638), - [anon_sym_register] = ACTIONS(638), - [anon_sym_inline] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_restrict] = ACTIONS(638), - [anon_sym_volatile] = ACTIONS(638), - [anon_sym__Atomic] = ACTIONS(638), - [anon_sym_unsigned] = ACTIONS(638), - [anon_sym_long] = ACTIONS(638), - [anon_sym_short] = ACTIONS(638), - [sym_primitive_type] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [sym_identifier] = ACTIONS(638), + [ts_builtin_sym_end] = ACTIONS(1311), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1313), + [sym_preproc_directive] = ACTIONS(1313), + [anon_sym_typedef] = ACTIONS(1313), + [anon_sym_extern] = ACTIONS(1313), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1313), + [anon_sym_auto] = ACTIONS(1313), + [anon_sym_register] = ACTIONS(1313), + [anon_sym_inline] = ACTIONS(1313), + [anon_sym_const] = ACTIONS(1313), + [anon_sym_restrict] = ACTIONS(1313), + [anon_sym_volatile] = ACTIONS(1313), + [anon_sym__Atomic] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(1313), + [anon_sym_long] = ACTIONS(1313), + [anon_sym_short] = ACTIONS(1313), + [sym_primitive_type] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1313), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_union] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1313), [sym_comment] = ACTIONS(39), }, [326] = { - [aux_sym_declaration_repeat1] = STATE(280), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(1317), + [ts_builtin_sym_end] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1317), + [sym_preproc_directive] = ACTIONS(1317), + [anon_sym_typedef] = ACTIONS(1317), + [anon_sym_extern] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1317), + [anon_sym_auto] = ACTIONS(1317), + [anon_sym_register] = ACTIONS(1317), + [anon_sym_inline] = ACTIONS(1317), + [anon_sym_const] = ACTIONS(1317), + [anon_sym_restrict] = ACTIONS(1317), + [anon_sym_volatile] = ACTIONS(1317), + [anon_sym__Atomic] = ACTIONS(1317), + [anon_sym_unsigned] = ACTIONS(1317), + [anon_sym_long] = ACTIONS(1317), + [anon_sym_short] = ACTIONS(1317), + [sym_primitive_type] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1317), + [anon_sym_struct] = ACTIONS(1317), + [anon_sym_union] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1317), [sym_comment] = ACTIONS(39), }, [327] = { @@ -14430,283 +14531,225 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1325), - [sym_preproc_directive] = ACTIONS(1325), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [sym_identifier] = ACTIONS(1325), - [sym_comment] = ACTIONS(39), - }, - [329] = { - [ts_builtin_sym_end] = ACTIONS(1327), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1329), - [sym_preproc_directive] = ACTIONS(1329), - [anon_sym_typedef] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_auto] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_inline] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_restrict] = ACTIONS(1329), - [anon_sym_volatile] = ACTIONS(1329), - [anon_sym__Atomic] = ACTIONS(1329), - [anon_sym_unsigned] = ACTIONS(1329), - [anon_sym_long] = ACTIONS(1329), - [anon_sym_short] = ACTIONS(1329), - [sym_primitive_type] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [sym_identifier] = ACTIONS(1329), - [sym_comment] = ACTIONS(39), - }, - [330] = { - [sym__type_declarator] = STATE(332), + [sym__type_declarator] = STATE(330), [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [sym_type_qualifier] = STATE(220), - [aux_sym_type_definition_repeat1] = STATE(220), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(418), + [sym_type_qualifier] = STATE(219), + [aux_sym_type_definition_repeat1] = STATE(219), + [anon_sym_LPAREN2] = ACTIONS(165), + [anon_sym_STAR] = ACTIONS(420), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(420), + [sym_identifier] = ACTIONS(422), + [sym_comment] = ACTIONS(39), + }, + [329] = { + [anon_sym_RPAREN] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1323), + [sym_comment] = ACTIONS(39), + }, + [330] = { + [sym_parameter_list] = STATE(180), + [anon_sym_RPAREN] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(243), + [anon_sym_LBRACK] = ACTIONS(428), [sym_comment] = ACTIONS(39), }, [331] = { - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RPAREN] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1327), [sym_comment] = ACTIONS(39), }, [332] = { - [sym_parameter_list] = STATE(181), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_RPAREN] = ACTIONS(1333), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(426), + [sym__expression] = STATE(553), + [sym_conditional_expression] = STATE(553), + [sym_assignment_expression] = STATE(553), + [sym_pointer_expression] = STATE(553), + [sym_logical_expression] = STATE(553), + [sym_bitwise_expression] = STATE(553), + [sym_equality_expression] = STATE(553), + [sym_relational_expression] = STATE(553), + [sym_shift_expression] = STATE(553), + [sym_math_expression] = STATE(553), + [sym_cast_expression] = STATE(553), + [sym_sizeof_expression] = STATE(553), + [sym_subscript_expression] = STATE(553), + [sym_call_expression] = STATE(553), + [sym_field_expression] = STATE(553), + [sym_compound_literal_expression] = STATE(553), + [sym_parenthesized_expression] = STATE(553), + [sym_char_literal] = STATE(553), + [sym_concatenated_string] = STATE(553), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_RBRACK] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1331), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1333), + [sym_false] = ACTIONS(1333), + [sym_null] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1333), [sym_comment] = ACTIONS(39), }, [333] = { - [anon_sym_LPAREN] = ACTIONS(1335), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [334] = { - [sym__expression] = STATE(554), - [sym_conditional_expression] = STATE(554), - [sym_assignment_expression] = STATE(554), - [sym_pointer_expression] = STATE(554), - [sym_logical_expression] = STATE(554), - [sym_bitwise_expression] = STATE(554), - [sym_equality_expression] = STATE(554), - [sym_relational_expression] = STATE(554), - [sym_shift_expression] = STATE(554), - [sym_math_expression] = STATE(554), - [sym_cast_expression] = STATE(554), - [sym_sizeof_expression] = STATE(554), - [sym_subscript_expression] = STATE(554), - [sym_call_expression] = STATE(554), - [sym_field_expression] = STATE(554), - [sym_compound_literal_expression] = STATE(554), - [sym_parenthesized_expression] = STATE(554), - [sym_char_literal] = STATE(554), - [sym_concatenated_string] = STATE(554), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_RBRACK] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1341), - [sym_false] = ACTIONS(1341), - [sym_null] = ACTIONS(1341), - [sym_identifier] = ACTIONS(1341), + [ts_builtin_sym_end] = ACTIONS(1335), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1337), + [sym_preproc_directive] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1337), + [anon_sym_auto] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_inline] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_restrict] = ACTIONS(1337), + [anon_sym_volatile] = ACTIONS(1337), + [anon_sym__Atomic] = ACTIONS(1337), + [anon_sym_unsigned] = ACTIONS(1337), + [anon_sym_long] = ACTIONS(1337), + [anon_sym_short] = ACTIONS(1337), + [sym_primitive_type] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_struct] = ACTIONS(1337), + [anon_sym_union] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1337), + [anon_sym_switch] = ACTIONS(1337), + [anon_sym_case] = ACTIONS(1337), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_goto] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(1335), + [anon_sym_sizeof] = ACTIONS(1337), + [sym_number_literal] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_true] = ACTIONS(1337), + [sym_false] = ACTIONS(1337), + [sym_null] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1337), [sym_comment] = ACTIONS(39), }, [335] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(1337), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [ts_builtin_sym_end] = ACTIONS(1339), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1341), + [sym_preproc_directive] = ACTIONS(1341), + [anon_sym_typedef] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_auto] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_inline] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_restrict] = ACTIONS(1341), + [anon_sym_volatile] = ACTIONS(1341), + [anon_sym__Atomic] = ACTIONS(1341), + [anon_sym_unsigned] = ACTIONS(1341), + [anon_sym_long] = ACTIONS(1341), + [anon_sym_short] = ACTIONS(1341), + [sym_primitive_type] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_struct] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1341), + [sym_identifier] = ACTIONS(1341), [sym_comment] = ACTIONS(39), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1345), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1345), - [anon_sym_LPAREN] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1345), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1345), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1345), - [sym_preproc_directive] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1345), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_RBRACE] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_static] = ACTIONS(1345), - [anon_sym_auto] = ACTIONS(1345), - [anon_sym_register] = ACTIONS(1345), - [anon_sym_inline] = ACTIONS(1345), - [anon_sym_const] = ACTIONS(1345), - [anon_sym_restrict] = ACTIONS(1345), - [anon_sym_volatile] = ACTIONS(1345), - [anon_sym__Atomic] = ACTIONS(1345), - [anon_sym_unsigned] = ACTIONS(1345), - [anon_sym_long] = ACTIONS(1345), - [anon_sym_short] = ACTIONS(1345), - [sym_primitive_type] = ACTIONS(1345), - [anon_sym_enum] = ACTIONS(1345), - [anon_sym_struct] = ACTIONS(1345), - [anon_sym_union] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_switch] = ACTIONS(1345), - [anon_sym_case] = ACTIONS(1345), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_goto] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [anon_sym_TILDE] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_sizeof] = ACTIONS(1345), - [sym_number_literal] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), - [sym_true] = ACTIONS(1345), - [sym_false] = ACTIONS(1345), - [sym_null] = ACTIONS(1345), - [sym_identifier] = ACTIONS(1345), - [sym_comment] = ACTIONS(39), - }, - [337] = { - [ts_builtin_sym_end] = ACTIONS(1347), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1349), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1349), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_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), - [sym_preproc_directive] = ACTIONS(1349), - [anon_sym_typedef] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_static] = ACTIONS(1349), - [anon_sym_auto] = ACTIONS(1349), - [anon_sym_register] = ACTIONS(1349), - [anon_sym_inline] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [anon_sym_restrict] = ACTIONS(1349), - [anon_sym_volatile] = ACTIONS(1349), - [anon_sym__Atomic] = ACTIONS(1349), - [anon_sym_unsigned] = ACTIONS(1349), - [anon_sym_long] = ACTIONS(1349), - [anon_sym_short] = ACTIONS(1349), - [sym_primitive_type] = ACTIONS(1349), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_struct] = ACTIONS(1349), - [anon_sym_union] = ACTIONS(1349), - [sym_identifier] = ACTIONS(1349), - [sym_comment] = ACTIONS(39), - }, - [338] = { - [sym_preproc_include] = STATE(338), - [sym_preproc_def] = STATE(338), - [sym_preproc_function_def] = STATE(338), - [sym_preproc_call] = STATE(338), - [sym_preproc_if] = STATE(338), - [sym_preproc_ifdef] = STATE(338), - [sym_function_definition] = STATE(338), - [sym_declaration] = STATE(338), - [sym_type_definition] = STATE(338), + [sym_preproc_include] = STATE(336), + [sym_preproc_def] = STATE(336), + [sym_preproc_function_def] = STATE(336), + [sym_preproc_call] = STATE(336), + [sym_preproc_if] = STATE(336), + [sym_preproc_ifdef] = STATE(336), + [sym_function_definition] = STATE(336), + [sym_declaration] = STATE(336), + [sym_type_definition] = STATE(336), [sym__declaration_specifiers] = STATE(17), - [sym_linkage_specification] = STATE(338), + [sym_linkage_specification] = STATE(336), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -14714,9 +14757,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(338), + [sym__empty_declaration] = STATE(336), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(338), + [aux_sym_translation_unit_repeat1] = STATE(336), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(255), @@ -14746,13 +14789,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(300), [sym_comment] = ACTIONS(39), }, - [339] = { - [sym_storage_class_specifier] = STATE(339), - [sym_type_qualifier] = STATE(339), - [aux_sym__declaration_specifiers_repeat1] = STATE(339), - [anon_sym_LPAREN] = ACTIONS(644), + [337] = { + [sym_storage_class_specifier] = STATE(337), + [sym_type_qualifier] = STATE(337), + [aux_sym__declaration_specifiers_repeat1] = STATE(337), [anon_sym_extern] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LPAREN2] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), [anon_sym_static] = ACTIONS(303), [anon_sym_auto] = ACTIONS(303), [anon_sym_register] = ACTIONS(303), @@ -14764,13 +14807,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(309), [sym_comment] = ACTIONS(39), }, - [340] = { - [sym_storage_class_specifier] = STATE(339), - [sym_type_qualifier] = STATE(339), - [aux_sym__declaration_specifiers_repeat1] = STATE(339), - [anon_sym_LPAREN] = ACTIONS(646), + [338] = { + [sym_storage_class_specifier] = STATE(337), + [sym_type_qualifier] = STATE(337), + [aux_sym__declaration_specifiers_repeat1] = STATE(337), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LPAREN2] = ACTIONS(648), + [anon_sym_STAR] = ACTIONS(648), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -14779,43 +14822,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(648), + [sym_identifier] = ACTIONS(650), [sym_comment] = ACTIONS(39), }, - [341] = { + [339] = { [sym_type_qualifier] = STATE(118), [sym__type_specifier] = STATE(116), [sym_sized_type_specifier] = STATE(116), [sym_enum_specifier] = STATE(116), [sym_struct_specifier] = STATE(116), [sym_union_specifier] = STATE(116), - [sym__expression] = STATE(415), - [sym_comma_expression] = STATE(416), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_pointer_expression] = STATE(415), - [sym_logical_expression] = STATE(415), - [sym_bitwise_expression] = STATE(415), - [sym_equality_expression] = STATE(415), - [sym_relational_expression] = STATE(415), - [sym_shift_expression] = STATE(415), - [sym_math_expression] = STATE(415), - [sym_cast_expression] = STATE(415), - [sym_type_descriptor] = STATE(555), - [sym_sizeof_expression] = STATE(415), - [sym_subscript_expression] = STATE(415), - [sym_call_expression] = STATE(415), - [sym_field_expression] = STATE(415), - [sym_compound_literal_expression] = STATE(415), - [sym_parenthesized_expression] = STATE(415), - [sym_char_literal] = STATE(415), - [sym_concatenated_string] = STATE(415), - [sym_string_literal] = STATE(418), + [sym__expression] = STATE(406), + [sym_comma_expression] = STATE(407), + [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_type_descriptor] = STATE(554), + [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(409), [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -14827,45 +14870,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_identifier] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), [sym_comment] = ACTIONS(39), }, - [342] = { - [sym__expression] = STATE(422), - [sym_conditional_expression] = STATE(422), - [sym_assignment_expression] = STATE(422), - [sym_pointer_expression] = STATE(422), - [sym_logical_expression] = STATE(422), - [sym_bitwise_expression] = STATE(422), - [sym_equality_expression] = STATE(422), - [sym_relational_expression] = STATE(422), - [sym_shift_expression] = STATE(422), - [sym_math_expression] = STATE(422), - [sym_cast_expression] = STATE(422), - [sym_sizeof_expression] = STATE(422), - [sym_subscript_expression] = STATE(422), - [sym_call_expression] = STATE(422), - [sym_field_expression] = STATE(422), - [sym_compound_literal_expression] = STATE(422), - [sym_parenthesized_expression] = STATE(422), - [sym_char_literal] = STATE(422), - [sym_concatenated_string] = STATE(422), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [340] = { + [sym__expression] = STATE(410), + [sym_conditional_expression] = STATE(410), + [sym_assignment_expression] = STATE(410), + [sym_pointer_expression] = STATE(410), + [sym_logical_expression] = STATE(410), + [sym_bitwise_expression] = STATE(410), + [sym_equality_expression] = STATE(410), + [sym_relational_expression] = STATE(410), + [sym_shift_expression] = STATE(410), + [sym_math_expression] = STATE(410), + [sym_cast_expression] = STATE(410), + [sym_sizeof_expression] = STATE(410), + [sym_subscript_expression] = STATE(410), + [sym_call_expression] = STATE(410), + [sym_field_expression] = STATE(410), + [sym_compound_literal_expression] = STATE(410), + [sym_parenthesized_expression] = STATE(410), + [sym_char_literal] = STATE(410), + [sym_concatenated_string] = STATE(410), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -14875,37 +14918,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(1008), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1010), - [sym_false] = ACTIONS(1010), - [sym_null] = ACTIONS(1010), - [sym_identifier] = ACTIONS(1010), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_identifier] = ACTIONS(992), [sym_comment] = ACTIONS(39), }, - [343] = { - [sym__expression] = STATE(449), - [sym_conditional_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_pointer_expression] = STATE(449), - [sym_logical_expression] = STATE(449), - [sym_bitwise_expression] = STATE(449), - [sym_equality_expression] = STATE(449), - [sym_relational_expression] = STATE(449), - [sym_shift_expression] = STATE(449), - [sym_math_expression] = STATE(449), - [sym_cast_expression] = STATE(449), - [sym_sizeof_expression] = STATE(449), - [sym_subscript_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_field_expression] = STATE(449), - [sym_compound_literal_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_char_literal] = STATE(449), - [sym_concatenated_string] = STATE(449), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [341] = { + [sym__expression] = STATE(439), + [sym_conditional_expression] = STATE(439), + [sym_assignment_expression] = STATE(439), + [sym_pointer_expression] = STATE(439), + [sym_logical_expression] = STATE(439), + [sym_bitwise_expression] = STATE(439), + [sym_equality_expression] = STATE(439), + [sym_relational_expression] = STATE(439), + [sym_shift_expression] = STATE(439), + [sym_math_expression] = STATE(439), + [sym_cast_expression] = STATE(439), + [sym_sizeof_expression] = STATE(439), + [sym_subscript_expression] = STATE(439), + [sym_call_expression] = STATE(439), + [sym_field_expression] = STATE(439), + [sym_compound_literal_expression] = STATE(439), + [sym_parenthesized_expression] = STATE(439), + [sym_char_literal] = STATE(439), + [sym_concatenated_string] = STATE(439), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -14915,37 +14958,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), - [sym_identifier] = ACTIONS(1068), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1048), [sym_comment] = ACTIONS(39), }, - [344] = { - [sym__expression] = STATE(450), - [sym_conditional_expression] = STATE(450), - [sym_assignment_expression] = STATE(450), - [sym_pointer_expression] = STATE(450), - [sym_logical_expression] = STATE(450), - [sym_bitwise_expression] = STATE(450), - [sym_equality_expression] = STATE(450), - [sym_relational_expression] = STATE(450), - [sym_shift_expression] = STATE(450), - [sym_math_expression] = STATE(450), - [sym_cast_expression] = STATE(450), - [sym_sizeof_expression] = STATE(450), - [sym_subscript_expression] = STATE(450), - [sym_call_expression] = STATE(450), - [sym_field_expression] = STATE(450), - [sym_compound_literal_expression] = STATE(450), - [sym_parenthesized_expression] = STATE(450), - [sym_char_literal] = STATE(450), - [sym_concatenated_string] = STATE(450), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [342] = { + [sym__expression] = STATE(440), + [sym_conditional_expression] = STATE(440), + [sym_assignment_expression] = STATE(440), + [sym_pointer_expression] = STATE(440), + [sym_logical_expression] = STATE(440), + [sym_bitwise_expression] = STATE(440), + [sym_equality_expression] = STATE(440), + [sym_relational_expression] = STATE(440), + [sym_shift_expression] = STATE(440), + [sym_math_expression] = STATE(440), + [sym_cast_expression] = STATE(440), + [sym_sizeof_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_call_expression] = STATE(440), + [sym_field_expression] = STATE(440), + [sym_compound_literal_expression] = STATE(440), + [sym_parenthesized_expression] = STATE(440), + [sym_char_literal] = STATE(440), + [sym_concatenated_string] = STATE(440), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -14955,37 +14998,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), - [sym_identifier] = ACTIONS(1072), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1052), [sym_comment] = ACTIONS(39), }, - [345] = { - [sym__expression] = STATE(451), - [sym_conditional_expression] = STATE(451), - [sym_assignment_expression] = STATE(451), - [sym_pointer_expression] = STATE(451), - [sym_logical_expression] = STATE(451), - [sym_bitwise_expression] = STATE(451), - [sym_equality_expression] = STATE(451), - [sym_relational_expression] = STATE(451), - [sym_shift_expression] = STATE(451), - [sym_math_expression] = STATE(451), - [sym_cast_expression] = STATE(451), - [sym_sizeof_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_call_expression] = STATE(451), - [sym_field_expression] = STATE(451), - [sym_compound_literal_expression] = STATE(451), - [sym_parenthesized_expression] = STATE(451), - [sym_char_literal] = STATE(451), - [sym_concatenated_string] = STATE(451), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [343] = { + [sym__expression] = STATE(441), + [sym_conditional_expression] = STATE(441), + [sym_assignment_expression] = STATE(441), + [sym_pointer_expression] = STATE(441), + [sym_logical_expression] = STATE(441), + [sym_bitwise_expression] = STATE(441), + [sym_equality_expression] = STATE(441), + [sym_relational_expression] = STATE(441), + [sym_shift_expression] = STATE(441), + [sym_math_expression] = STATE(441), + [sym_cast_expression] = STATE(441), + [sym_sizeof_expression] = STATE(441), + [sym_subscript_expression] = STATE(441), + [sym_call_expression] = STATE(441), + [sym_field_expression] = STATE(441), + [sym_compound_literal_expression] = STATE(441), + [sym_parenthesized_expression] = STATE(441), + [sym_char_literal] = STATE(441), + [sym_concatenated_string] = STATE(441), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -14995,37 +15038,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), - [sym_identifier] = ACTIONS(1076), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1056), [sym_comment] = ACTIONS(39), }, - [346] = { - [sym__expression] = STATE(557), - [sym_conditional_expression] = STATE(557), - [sym_assignment_expression] = STATE(557), - [sym_pointer_expression] = STATE(557), - [sym_logical_expression] = STATE(557), - [sym_bitwise_expression] = STATE(557), - [sym_equality_expression] = STATE(557), - [sym_relational_expression] = STATE(557), - [sym_shift_expression] = STATE(557), - [sym_math_expression] = STATE(557), - [sym_cast_expression] = STATE(557), - [sym_sizeof_expression] = STATE(557), - [sym_subscript_expression] = STATE(557), - [sym_call_expression] = STATE(557), - [sym_field_expression] = STATE(557), - [sym_compound_literal_expression] = STATE(557), - [sym_parenthesized_expression] = STATE(557), - [sym_char_literal] = STATE(557), - [sym_concatenated_string] = STATE(557), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(1351), + [344] = { + [sym__expression] = STATE(556), + [sym_conditional_expression] = STATE(556), + [sym_assignment_expression] = STATE(556), + [sym_pointer_expression] = STATE(556), + [sym_logical_expression] = STATE(556), + [sym_bitwise_expression] = STATE(556), + [sym_equality_expression] = STATE(556), + [sym_relational_expression] = STATE(556), + [sym_shift_expression] = STATE(556), + [sym_math_expression] = STATE(556), + [sym_cast_expression] = STATE(556), + [sym_sizeof_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym_call_expression] = STATE(556), + [sym_field_expression] = STATE(556), + [sym_compound_literal_expression] = STATE(556), + [sym_parenthesized_expression] = STATE(556), + [sym_char_literal] = STATE(556), + [sym_concatenated_string] = STATE(556), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(1343), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -15035,181 +15078,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(1345), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1355), - [sym_false] = ACTIONS(1355), - [sym_null] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1355), + [sym_true] = ACTIONS(1347), + [sym_false] = ACTIONS(1347), + [sym_null] = ACTIONS(1347), + [sym_identifier] = ACTIONS(1347), [sym_comment] = ACTIONS(39), }, - [347] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1361), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_STAR_EQ] = ACTIONS(1365), - [anon_sym_SLASH_EQ] = ACTIONS(1365), - [anon_sym_PERCENT_EQ] = ACTIONS(1365), - [anon_sym_PLUS_EQ] = ACTIONS(1365), - [anon_sym_DASH_EQ] = ACTIONS(1365), - [anon_sym_LT_LT_EQ] = ACTIONS(1365), - [anon_sym_GT_GT_EQ] = ACTIONS(1365), - [anon_sym_AMP_EQ] = ACTIONS(1365), - [anon_sym_CARET_EQ] = ACTIONS(1365), - [anon_sym_PIPE_EQ] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1371), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_EQ_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(1381), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [345] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(1355), + [anon_sym_STAR_EQ] = ACTIONS(1357), + [anon_sym_SLASH_EQ] = ACTIONS(1357), + [anon_sym_PERCENT_EQ] = ACTIONS(1357), + [anon_sym_PLUS_EQ] = ACTIONS(1357), + [anon_sym_DASH_EQ] = ACTIONS(1357), + [anon_sym_LT_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_GT_EQ] = ACTIONS(1357), + [anon_sym_AMP_EQ] = ACTIONS(1357), + [anon_sym_CARET_EQ] = ACTIONS(1357), + [anon_sym_PIPE_EQ] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1365), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [348] = { - [sym_string_literal] = STATE(570), - [aux_sym_concatenated_string_repeat1] = STATE(570), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), + [346] = { + [sym_string_literal] = STATE(569), + [aux_sym_concatenated_string_repeat1] = STATE(569), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, - [349] = { - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_COMMA] = ACTIONS(1387), - [anon_sym_RPAREN] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_extern] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_RBRACK] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_auto] = ACTIONS(1389), - [anon_sym_register] = ACTIONS(1389), - [anon_sym_inline] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_restrict] = ACTIONS(1389), - [anon_sym_volatile] = ACTIONS(1389), - [anon_sym__Atomic] = ACTIONS(1389), - [anon_sym_COLON] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1387), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_DASH_DASH] = ACTIONS(1387), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_sizeof] = ACTIONS(1389), - [sym_number_literal] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(1387), - [sym_true] = ACTIONS(1389), - [sym_false] = ACTIONS(1389), - [sym_null] = ACTIONS(1389), - [sym_identifier] = ACTIONS(1389), + [347] = { + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_RPAREN] = ACTIONS(1379), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_LPAREN2] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_RBRACK] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_auto] = ACTIONS(1381), + [anon_sym_register] = ACTIONS(1381), + [anon_sym_inline] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_restrict] = ACTIONS(1381), + [anon_sym_volatile] = ACTIONS(1381), + [anon_sym__Atomic] = ACTIONS(1381), + [anon_sym_COLON] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_sizeof] = ACTIONS(1381), + [sym_number_literal] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [sym_true] = ACTIONS(1381), + [sym_false] = ACTIONS(1381), + [sym_null] = ACTIONS(1381), + [sym_identifier] = ACTIONS(1381), [sym_comment] = ACTIONS(39), }, - [350] = { - [anon_sym_COMMA] = ACTIONS(1391), - [anon_sym_RBRACE] = ACTIONS(1391), + [348] = { + [anon_sym_COMMA] = ACTIONS(1383), + [anon_sym_RBRACE] = ACTIONS(1383), [sym_comment] = ACTIONS(39), }, - [351] = { - [sym_enumerator] = STATE(350), - [anon_sym_RBRACE] = ACTIONS(1393), + [349] = { + [sym_enumerator] = STATE(348), + [anon_sym_RBRACE] = ACTIONS(1385), [sym_identifier] = ACTIONS(185), [sym_comment] = ACTIONS(39), }, - [352] = { - [aux_sym_enumerator_list_repeat1] = STATE(352), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1391), + [350] = { + [aux_sym_enumerator_list_repeat1] = STATE(350), + [anon_sym_COMMA] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1383), [sym_comment] = ACTIONS(39), }, - [353] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1398), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1400), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1400), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1400), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1400), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [sym_identifier] = ACTIONS(1398), + [351] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1390), [sym_comment] = ACTIONS(39), }, - [354] = { + [352] = { [sym_preproc_if_in_field_declaration_list] = STATE(107), [sym_preproc_ifdef_in_field_declaration_list] = STATE(108), [sym__declaration_specifiers] = STATE(109), @@ -15220,14 +15263,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(110), [sym_struct_specifier] = STATE(110), [sym_union_specifier] = STATE(110), - [sym__field_declaration_list_item] = STATE(573), - [sym_field_declaration] = STATE(573), + [sym__field_declaration_list_item] = STATE(572), + [sym_field_declaration] = STATE(572), [sym_macro_type_specifier] = STATE(110), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(573), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(572), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1402), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1394), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), [anon_sym_extern] = ACTIONS(23), @@ -15249,23 +15292,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [355] = { - [sym_preproc_arg] = ACTIONS(1404), + [353] = { + [sym_preproc_arg] = ACTIONS(1396), [sym_comment] = ACTIONS(49), }, - [356] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1406), + [354] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1398), [sym_comment] = ACTIONS(39), }, - [357] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1408), + [355] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1400), [sym_comment] = ACTIONS(39), }, - [358] = { + [356] = { [sym_preproc_if_in_field_declaration_list] = STATE(107), [sym_preproc_ifdef_in_field_declaration_list] = STATE(108), - [sym_preproc_else_in_field_declaration_list] = STATE(578), - [sym_preproc_elif_in_field_declaration_list] = STATE(579), + [sym_preproc_else_in_field_declaration_list] = STATE(577), + [sym_preproc_elif_in_field_declaration_list] = STATE(578), [sym__declaration_specifiers] = STATE(109), [sym_storage_class_specifier] = STATE(112), [sym_type_qualifier] = STATE(112), @@ -15274,14 +15317,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(110), [sym_struct_specifier] = STATE(110), [sym_union_specifier] = STATE(110), - [sym__field_declaration_list_item] = STATE(580), - [sym_field_declaration] = STATE(580), + [sym__field_declaration_list_item] = STATE(579), + [sym_field_declaration] = STATE(579), [sym_macro_type_specifier] = STATE(110), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(580), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(579), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1410), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1402), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(831), @@ -15305,46 +15348,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [359] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1412), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1414), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_auto] = ACTIONS(1412), - [anon_sym_register] = ACTIONS(1412), - [anon_sym_inline] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_restrict] = ACTIONS(1412), - [anon_sym_volatile] = ACTIONS(1412), - [anon_sym__Atomic] = ACTIONS(1412), - [anon_sym_unsigned] = ACTIONS(1412), - [anon_sym_long] = ACTIONS(1412), - [anon_sym_short] = ACTIONS(1412), - [sym_primitive_type] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1412), + [357] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1404), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1406), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_auto] = ACTIONS(1404), + [anon_sym_register] = ACTIONS(1404), + [anon_sym_inline] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_restrict] = ACTIONS(1404), + [anon_sym_volatile] = ACTIONS(1404), + [anon_sym__Atomic] = ACTIONS(1404), + [anon_sym_unsigned] = ACTIONS(1404), + [anon_sym_long] = ACTIONS(1404), + [anon_sym_short] = ACTIONS(1404), + [sym_primitive_type] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [sym_identifier] = ACTIONS(1404), [sym_comment] = ACTIONS(39), }, - [360] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1416), + [358] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1408), [sym_comment] = ACTIONS(39), }, - [361] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1418), + [359] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1410), [sym_comment] = ACTIONS(39), }, - [362] = { + [360] = { [sym_preproc_if_in_field_declaration_list] = STATE(107), [sym_preproc_ifdef_in_field_declaration_list] = STATE(108), - [sym_preproc_else_in_field_declaration_list] = STATE(584), - [sym_preproc_elif_in_field_declaration_list] = STATE(585), + [sym_preproc_else_in_field_declaration_list] = STATE(583), + [sym_preproc_elif_in_field_declaration_list] = STATE(584), [sym__declaration_specifiers] = STATE(109), [sym_storage_class_specifier] = STATE(112), [sym_type_qualifier] = STATE(112), @@ -15353,14 +15396,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(110), [sym_struct_specifier] = STATE(110), [sym_union_specifier] = STATE(110), - [sym__field_declaration_list_item] = STATE(580), - [sym_field_declaration] = STATE(580), + [sym__field_declaration_list_item] = STATE(579), + [sym_field_declaration] = STATE(579), [sym_macro_type_specifier] = STATE(110), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(580), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(579), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1420), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1412), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(831), @@ -15384,46 +15427,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [363] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1424), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1424), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1424), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1424), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1422), + [361] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1416), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1416), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1416), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1416), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1414), [sym_comment] = ACTIONS(39), }, - [364] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1426), + [362] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1418), [sym_comment] = ACTIONS(39), }, - [365] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1428), + [363] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1420), [sym_comment] = ACTIONS(39), }, - [366] = { + [364] = { [sym_preproc_if_in_field_declaration_list] = STATE(107), [sym_preproc_ifdef_in_field_declaration_list] = STATE(108), - [sym_preproc_else_in_field_declaration_list] = STATE(589), - [sym_preproc_elif_in_field_declaration_list] = STATE(590), + [sym_preproc_else_in_field_declaration_list] = STATE(588), + [sym_preproc_elif_in_field_declaration_list] = STATE(589), [sym__declaration_specifiers] = STATE(109), [sym_storage_class_specifier] = STATE(112), [sym_type_qualifier] = STATE(112), @@ -15432,14 +15475,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(110), [sym_struct_specifier] = STATE(110), [sym_union_specifier] = STATE(110), - [sym__field_declaration_list_item] = STATE(580), - [sym_field_declaration] = STATE(580), + [sym__field_declaration_list_item] = STATE(579), + [sym_field_declaration] = STATE(579), [sym_macro_type_specifier] = STATE(110), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(580), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(579), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1422), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(831), @@ -15463,15 +15506,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [367] = { - [sym__field_declarator] = STATE(369), - [sym_pointer_field_declarator] = STATE(201), - [sym_function_field_declarator] = STATE(202), - [sym_array_field_declarator] = STATE(203), - [sym_type_qualifier] = STATE(591), - [aux_sym_type_definition_repeat1] = STATE(591), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(839), + [365] = { + [sym__field_declarator] = STATE(367), + [sym_pointer_field_declarator] = STATE(200), + [sym_function_field_declarator] = STATE(201), + [sym_array_field_declarator] = STATE(202), + [sym_type_qualifier] = STATE(590), + [aux_sym_type_definition_repeat1] = STATE(590), + [anon_sym_LPAREN2] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(843), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -15479,32 +15522,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(845), [sym_comment] = ACTIONS(39), }, - [368] = { - [sym_parameter_list] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_RPAREN] = ACTIONS(1432), + [366] = { + [sym_parameter_list] = STATE(381), + [anon_sym_RPAREN] = ACTIONS(1424), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(871), [sym_comment] = ACTIONS(39), }, - [369] = { - [sym_parameter_list] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), + [367] = { + [sym_parameter_list] = STATE(381), + [anon_sym_COMMA] = ACTIONS(1426), + [anon_sym_RPAREN] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(871), - [anon_sym_COLON] = ACTIONS(1434), + [anon_sym_COLON] = ACTIONS(1426), [sym_comment] = ACTIONS(39), }, - [370] = { - [sym__field_declarator] = STATE(593), - [sym_pointer_field_declarator] = STATE(201), - [sym_function_field_declarator] = STATE(202), - [sym_array_field_declarator] = STATE(203), - [sym_type_qualifier] = STATE(220), - [aux_sym_type_definition_repeat1] = STATE(220), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(490), + [368] = { + [sym__field_declarator] = STATE(592), + [sym_pointer_field_declarator] = STATE(200), + [sym_function_field_declarator] = STATE(201), + [sym_array_field_declarator] = STATE(202), + [sym_type_qualifier] = STATE(219), + [aux_sym_type_definition_repeat1] = STATE(219), + [anon_sym_LPAREN2] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(492), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -15512,40 +15555,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(845), [sym_comment] = ACTIONS(39), }, - [371] = { + [369] = { [sym_type_qualifier] = STATE(118), [sym__type_specifier] = STATE(116), [sym_sized_type_specifier] = STATE(116), [sym_enum_specifier] = STATE(116), [sym_struct_specifier] = STATE(116), [sym_union_specifier] = STATE(116), - [sym__expression] = STATE(415), - [sym_comma_expression] = STATE(416), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_pointer_expression] = STATE(415), - [sym_logical_expression] = STATE(415), - [sym_bitwise_expression] = STATE(415), - [sym_equality_expression] = STATE(415), - [sym_relational_expression] = STATE(415), - [sym_shift_expression] = STATE(415), - [sym_math_expression] = STATE(415), - [sym_cast_expression] = STATE(415), - [sym_type_descriptor] = STATE(594), - [sym_sizeof_expression] = STATE(415), - [sym_subscript_expression] = STATE(415), - [sym_call_expression] = STATE(415), - [sym_field_expression] = STATE(415), - [sym_compound_literal_expression] = STATE(415), - [sym_parenthesized_expression] = STATE(415), - [sym_char_literal] = STATE(415), - [sym_concatenated_string] = STATE(415), - [sym_string_literal] = STATE(418), + [sym__expression] = STATE(406), + [sym_comma_expression] = STATE(407), + [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_type_descriptor] = STATE(593), + [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(409), [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -15557,45 +15600,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_identifier] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), [sym_comment] = ACTIONS(39), }, - [372] = { - [sym__expression] = STATE(422), - [sym_conditional_expression] = STATE(422), - [sym_assignment_expression] = STATE(422), - [sym_pointer_expression] = STATE(422), - [sym_logical_expression] = STATE(422), - [sym_bitwise_expression] = STATE(422), - [sym_equality_expression] = STATE(422), - [sym_relational_expression] = STATE(422), - [sym_shift_expression] = STATE(422), - [sym_math_expression] = STATE(422), - [sym_cast_expression] = STATE(422), - [sym_sizeof_expression] = STATE(422), - [sym_subscript_expression] = STATE(422), - [sym_call_expression] = STATE(422), - [sym_field_expression] = STATE(422), - [sym_compound_literal_expression] = STATE(422), - [sym_parenthesized_expression] = STATE(422), - [sym_char_literal] = STATE(422), - [sym_concatenated_string] = STATE(422), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [370] = { + [sym__expression] = STATE(410), + [sym_conditional_expression] = STATE(410), + [sym_assignment_expression] = STATE(410), + [sym_pointer_expression] = STATE(410), + [sym_logical_expression] = STATE(410), + [sym_bitwise_expression] = STATE(410), + [sym_equality_expression] = STATE(410), + [sym_relational_expression] = STATE(410), + [sym_shift_expression] = STATE(410), + [sym_math_expression] = STATE(410), + [sym_cast_expression] = STATE(410), + [sym_sizeof_expression] = STATE(410), + [sym_subscript_expression] = STATE(410), + [sym_call_expression] = STATE(410), + [sym_field_expression] = STATE(410), + [sym_compound_literal_expression] = STATE(410), + [sym_parenthesized_expression] = STATE(410), + [sym_char_literal] = STATE(410), + [sym_concatenated_string] = STATE(410), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -15605,37 +15648,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1008), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1010), - [sym_false] = ACTIONS(1010), - [sym_null] = ACTIONS(1010), - [sym_identifier] = ACTIONS(1010), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_identifier] = ACTIONS(992), [sym_comment] = ACTIONS(39), }, - [373] = { - [sym__expression] = STATE(449), - [sym_conditional_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_pointer_expression] = STATE(449), - [sym_logical_expression] = STATE(449), - [sym_bitwise_expression] = STATE(449), - [sym_equality_expression] = STATE(449), - [sym_relational_expression] = STATE(449), - [sym_shift_expression] = STATE(449), - [sym_math_expression] = STATE(449), - [sym_cast_expression] = STATE(449), - [sym_sizeof_expression] = STATE(449), - [sym_subscript_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_field_expression] = STATE(449), - [sym_compound_literal_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_char_literal] = STATE(449), - [sym_concatenated_string] = STATE(449), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [371] = { + [sym__expression] = STATE(439), + [sym_conditional_expression] = STATE(439), + [sym_assignment_expression] = STATE(439), + [sym_pointer_expression] = STATE(439), + [sym_logical_expression] = STATE(439), + [sym_bitwise_expression] = STATE(439), + [sym_equality_expression] = STATE(439), + [sym_relational_expression] = STATE(439), + [sym_shift_expression] = STATE(439), + [sym_math_expression] = STATE(439), + [sym_cast_expression] = STATE(439), + [sym_sizeof_expression] = STATE(439), + [sym_subscript_expression] = STATE(439), + [sym_call_expression] = STATE(439), + [sym_field_expression] = STATE(439), + [sym_compound_literal_expression] = STATE(439), + [sym_parenthesized_expression] = STATE(439), + [sym_char_literal] = STATE(439), + [sym_concatenated_string] = STATE(439), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -15645,37 +15688,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), - [sym_identifier] = ACTIONS(1068), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1048), [sym_comment] = ACTIONS(39), }, - [374] = { - [sym__expression] = STATE(450), - [sym_conditional_expression] = STATE(450), - [sym_assignment_expression] = STATE(450), - [sym_pointer_expression] = STATE(450), - [sym_logical_expression] = STATE(450), - [sym_bitwise_expression] = STATE(450), - [sym_equality_expression] = STATE(450), - [sym_relational_expression] = STATE(450), - [sym_shift_expression] = STATE(450), - [sym_math_expression] = STATE(450), - [sym_cast_expression] = STATE(450), - [sym_sizeof_expression] = STATE(450), - [sym_subscript_expression] = STATE(450), - [sym_call_expression] = STATE(450), - [sym_field_expression] = STATE(450), - [sym_compound_literal_expression] = STATE(450), - [sym_parenthesized_expression] = STATE(450), - [sym_char_literal] = STATE(450), - [sym_concatenated_string] = STATE(450), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [372] = { + [sym__expression] = STATE(440), + [sym_conditional_expression] = STATE(440), + [sym_assignment_expression] = STATE(440), + [sym_pointer_expression] = STATE(440), + [sym_logical_expression] = STATE(440), + [sym_bitwise_expression] = STATE(440), + [sym_equality_expression] = STATE(440), + [sym_relational_expression] = STATE(440), + [sym_shift_expression] = STATE(440), + [sym_math_expression] = STATE(440), + [sym_cast_expression] = STATE(440), + [sym_sizeof_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_call_expression] = STATE(440), + [sym_field_expression] = STATE(440), + [sym_compound_literal_expression] = STATE(440), + [sym_parenthesized_expression] = STATE(440), + [sym_char_literal] = STATE(440), + [sym_concatenated_string] = STATE(440), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -15685,37 +15728,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), - [sym_identifier] = ACTIONS(1072), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1052), [sym_comment] = ACTIONS(39), }, - [375] = { - [sym__expression] = STATE(451), - [sym_conditional_expression] = STATE(451), - [sym_assignment_expression] = STATE(451), - [sym_pointer_expression] = STATE(451), - [sym_logical_expression] = STATE(451), - [sym_bitwise_expression] = STATE(451), - [sym_equality_expression] = STATE(451), - [sym_relational_expression] = STATE(451), - [sym_shift_expression] = STATE(451), - [sym_math_expression] = STATE(451), - [sym_cast_expression] = STATE(451), - [sym_sizeof_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_call_expression] = STATE(451), - [sym_field_expression] = STATE(451), - [sym_compound_literal_expression] = STATE(451), - [sym_parenthesized_expression] = STATE(451), - [sym_char_literal] = STATE(451), - [sym_concatenated_string] = STATE(451), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [373] = { + [sym__expression] = STATE(441), + [sym_conditional_expression] = STATE(441), + [sym_assignment_expression] = STATE(441), + [sym_pointer_expression] = STATE(441), + [sym_logical_expression] = STATE(441), + [sym_bitwise_expression] = STATE(441), + [sym_equality_expression] = STATE(441), + [sym_relational_expression] = STATE(441), + [sym_shift_expression] = STATE(441), + [sym_math_expression] = STATE(441), + [sym_cast_expression] = STATE(441), + [sym_sizeof_expression] = STATE(441), + [sym_subscript_expression] = STATE(441), + [sym_call_expression] = STATE(441), + [sym_field_expression] = STATE(441), + [sym_compound_literal_expression] = STATE(441), + [sym_parenthesized_expression] = STATE(441), + [sym_char_literal] = STATE(441), + [sym_concatenated_string] = STATE(441), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -15725,37 +15768,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), - [sym_identifier] = ACTIONS(1076), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1056), [sym_comment] = ACTIONS(39), }, - [376] = { - [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(378), - [anon_sym_LPAREN] = ACTIONS(1436), + [374] = { + [sym__expression] = STATE(595), + [sym_conditional_expression] = STATE(595), + [sym_assignment_expression] = STATE(595), + [sym_pointer_expression] = STATE(595), + [sym_logical_expression] = STATE(595), + [sym_bitwise_expression] = STATE(595), + [sym_equality_expression] = STATE(595), + [sym_relational_expression] = STATE(595), + [sym_shift_expression] = STATE(595), + [sym_math_expression] = STATE(595), + [sym_cast_expression] = STATE(595), + [sym_sizeof_expression] = STATE(595), + [sym_subscript_expression] = STATE(595), + [sym_call_expression] = STATE(595), + [sym_field_expression] = STATE(595), + [sym_compound_literal_expression] = STATE(595), + [sym_parenthesized_expression] = STATE(595), + [sym_char_literal] = STATE(595), + [sym_concatenated_string] = STATE(595), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(1428), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -15765,145 +15808,205 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [sym_null] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1432), + [sym_comment] = ACTIONS(39), + }, + [375] = { + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [376] = { + [sym_string_literal] = STATE(609), + [aux_sym_concatenated_string_repeat1] = STATE(609), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [sym_null] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1440), [sym_comment] = ACTIONS(39), }, [377] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym__field_declarator] = STATE(610), + [sym_pointer_field_declarator] = STATE(200), + [sym_function_field_declarator] = STATE(201), + [sym_array_field_declarator] = STATE(202), + [anon_sym_LPAREN2] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(492), + [sym_identifier] = ACTIONS(496), [sym_comment] = ACTIONS(39), }, [378] = { - [sym_string_literal] = STATE(610), - [aux_sym_concatenated_string_repeat1] = STATE(610), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(41), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1466), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1466), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1466), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1466), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [sym_primitive_type] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1464), [sym_comment] = ACTIONS(39), }, [379] = { - [sym__field_declarator] = STATE(611), - [sym_pointer_field_declarator] = STATE(201), - [sym_function_field_declarator] = STATE(202), - [sym_array_field_declarator] = STATE(203), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(490), - [sym_identifier] = ACTIONS(494), + [sym__declaration_specifiers] = STATE(612), + [sym_storage_class_specifier] = STATE(273), + [sym_type_qualifier] = STATE(273), + [sym__type_specifier] = STATE(270), + [sym_sized_type_specifier] = STATE(270), + [sym_enum_specifier] = STATE(270), + [sym_struct_specifier] = STATE(270), + [sym_union_specifier] = STATE(270), + [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(272), + [sym_macro_type_specifier] = STATE(270), + [aux_sym__declaration_specifiers_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(274), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_RBRACK] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(612), + [anon_sym_long] = ACTIONS(612), + [anon_sym_short] = ACTIONS(612), + [sym_primitive_type] = ACTIONS(614), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1472), + [sym_false] = ACTIONS(1472), + [sym_null] = ACTIONS(1472), + [sym_identifier] = ACTIONS(630), [sym_comment] = ACTIONS(39), }, [380] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1472), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1474), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1474), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1474), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1474), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [sym_identifier] = ACTIONS(1472), - [sym_comment] = ACTIONS(39), - }, - [381] = { - [sym__declaration_specifiers] = STATE(613), - [sym_storage_class_specifier] = STATE(274), - [sym_type_qualifier] = STATE(274), - [sym__type_specifier] = STATE(271), - [sym_sized_type_specifier] = STATE(271), - [sym_enum_specifier] = STATE(271), - [sym_struct_specifier] = STATE(271), - [sym_union_specifier] = STATE(271), [sym__expression] = STATE(614), [sym_conditional_expression] = STATE(614), [sym_assignment_expression] = STATE(614), @@ -15923,68 +16026,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(614), [sym_char_literal] = STATE(614), [sym_concatenated_string] = STATE(614), - [sym_string_literal] = STATE(273), - [sym_macro_type_specifier] = STATE(271), - [aux_sym__declaration_specifiers_repeat1] = STATE(274), - [aux_sym_sized_type_specifier_repeat1] = STATE(275), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_RBRACK] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(610), - [anon_sym_long] = ACTIONS(610), - [anon_sym_short] = ACTIONS(610), - [sym_primitive_type] = ACTIONS(612), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [sym_null] = ACTIONS(1480), - [sym_identifier] = ACTIONS(628), - [sym_comment] = ACTIONS(39), - }, - [382] = { - [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(378), - [anon_sym_LPAREN] = ACTIONS(847), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -15994,39 +16037,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [sym_null] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1484), + [sym_true] = ACTIONS(1476), + [sym_false] = ACTIONS(1476), + [sym_null] = ACTIONS(1476), + [sym_identifier] = ACTIONS(1476), [sym_comment] = ACTIONS(39), }, - [383] = { - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_COMMA] = ACTIONS(1486), - [anon_sym_RPAREN] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_COLON] = ACTIONS(1486), + [381] = { + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_COLON] = ACTIONS(1478), [sym_comment] = ACTIONS(39), }, - [384] = { - [aux_sym_field_declaration_repeat1] = STATE(617), + [382] = { + [aux_sym_field_declaration_repeat1] = STATE(616), [anon_sym_COMMA] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_COLON] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_COLON] = ACTIONS(1480), [sym_comment] = ACTIONS(39), }, - [385] = { - [sym_storage_class_specifier] = STATE(385), - [sym_type_qualifier] = STATE(385), - [aux_sym__declaration_specifiers_repeat1] = STATE(385), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_SEMI] = ACTIONS(644), + [383] = { + [sym_storage_class_specifier] = STATE(383), + [sym_type_qualifier] = STATE(383), + [aux_sym__declaration_specifiers_repeat1] = STATE(383), + [anon_sym_SEMI] = ACTIONS(646), [anon_sym_extern] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LPAREN2] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), [anon_sym_static] = ACTIONS(303), [anon_sym_auto] = ACTIONS(303), [anon_sym_register] = ACTIONS(303), @@ -16035,18 +16078,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(306), [anon_sym_volatile] = ACTIONS(306), [anon_sym__Atomic] = ACTIONS(306), - [anon_sym_COLON] = ACTIONS(644), + [anon_sym_COLON] = ACTIONS(646), [sym_identifier] = ACTIONS(309), [sym_comment] = ACTIONS(39), }, - [386] = { - [sym_storage_class_specifier] = STATE(385), - [sym_type_qualifier] = STATE(385), - [aux_sym__declaration_specifiers_repeat1] = STATE(385), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_SEMI] = ACTIONS(646), + [384] = { + [sym_storage_class_specifier] = STATE(383), + [sym_type_qualifier] = STATE(383), + [aux_sym__declaration_specifiers_repeat1] = STATE(383), + [anon_sym_SEMI] = ACTIONS(648), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LPAREN2] = ACTIONS(648), + [anon_sym_STAR] = ACTIONS(648), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -16055,168 +16098,168 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_COLON] = ACTIONS(646), - [sym_identifier] = ACTIONS(648), + [anon_sym_COLON] = ACTIONS(648), + [sym_identifier] = ACTIONS(650), [sym_comment] = ACTIONS(39), }, - [387] = { - [sym_parameter_list] = STATE(394), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_RPAREN] = ACTIONS(1490), + [385] = { + [sym_parameter_list] = STATE(392), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(935), [sym_comment] = ACTIONS(39), }, - [388] = { - [sym_parameter_list] = STATE(394), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1492), + [386] = { + [sym_parameter_list] = STATE(392), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(935), [sym_comment] = ACTIONS(39), }, - [389] = { - [sym__abstract_declarator] = STATE(619), - [sym_abstract_pointer_declarator] = STATE(619), - [sym_abstract_function_declarator] = STATE(619), - [sym_abstract_array_declarator] = STATE(619), - [sym_type_qualifier] = STATE(620), - [sym_parameter_list] = STATE(213), - [aux_sym_type_definition_repeat1] = STATE(620), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_LBRACK] = ACTIONS(516), + [387] = { + [sym__abstract_declarator] = STATE(618), + [sym_abstract_pointer_declarator] = STATE(618), + [sym_abstract_function_declarator] = STATE(618), + [sym_abstract_array_declarator] = STATE(618), + [sym_type_qualifier] = STATE(619), + [sym_parameter_list] = STATE(212), + [aux_sym_type_definition_repeat1] = STATE(619), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(514), + [anon_sym_STAR] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(518), [anon_sym_const] = ACTIONS(925), [anon_sym_restrict] = ACTIONS(925), [anon_sym_volatile] = ACTIONS(925), [anon_sym__Atomic] = ACTIONS(925), [sym_comment] = ACTIONS(39), }, - [390] = { - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1494), + [388] = { + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), [sym_comment] = ACTIONS(39), }, - [391] = { - [sym__expression] = STATE(622), - [sym_conditional_expression] = STATE(622), - [sym_assignment_expression] = STATE(622), - [sym_pointer_expression] = STATE(622), - [sym_logical_expression] = STATE(622), - [sym_bitwise_expression] = STATE(622), - [sym_equality_expression] = STATE(622), - [sym_relational_expression] = STATE(622), - [sym_shift_expression] = STATE(622), - [sym_math_expression] = STATE(622), - [sym_cast_expression] = STATE(622), - [sym_sizeof_expression] = STATE(622), - [sym_subscript_expression] = STATE(622), - [sym_call_expression] = STATE(622), - [sym_field_expression] = STATE(622), - [sym_compound_literal_expression] = STATE(622), - [sym_parenthesized_expression] = STATE(622), - [sym_char_literal] = STATE(622), - [sym_concatenated_string] = STATE(622), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_RBRACK] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [sym_null] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1500), + [389] = { + [sym__expression] = STATE(621), + [sym_conditional_expression] = STATE(621), + [sym_assignment_expression] = STATE(621), + [sym_pointer_expression] = STATE(621), + [sym_logical_expression] = STATE(621), + [sym_bitwise_expression] = STATE(621), + [sym_equality_expression] = STATE(621), + [sym_relational_expression] = STATE(621), + [sym_shift_expression] = STATE(621), + [sym_math_expression] = STATE(621), + [sym_cast_expression] = STATE(621), + [sym_sizeof_expression] = STATE(621), + [sym_subscript_expression] = STATE(621), + [sym_call_expression] = STATE(621), + [sym_field_expression] = STATE(621), + [sym_compound_literal_expression] = STATE(621), + [sym_parenthesized_expression] = STATE(621), + [sym_char_literal] = STATE(621), + [sym_concatenated_string] = STATE(621), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [sym_null] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1492), [sym_comment] = ACTIONS(39), }, - [392] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(1496), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [390] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [393] = { - [sym__declaration_specifiers] = STATE(623), - [sym_storage_class_specifier] = STATE(274), - [sym_type_qualifier] = STATE(274), - [sym__type_specifier] = STATE(271), - [sym_sized_type_specifier] = STATE(271), - [sym_enum_specifier] = STATE(271), - [sym_struct_specifier] = STATE(271), - [sym_union_specifier] = STATE(271), - [sym__expression] = STATE(622), - [sym_conditional_expression] = STATE(622), - [sym_assignment_expression] = STATE(622), - [sym_pointer_expression] = STATE(622), - [sym_logical_expression] = STATE(622), - [sym_bitwise_expression] = STATE(622), - [sym_equality_expression] = STATE(622), - [sym_relational_expression] = STATE(622), - [sym_shift_expression] = STATE(622), - [sym_math_expression] = STATE(622), - [sym_cast_expression] = STATE(622), - [sym_sizeof_expression] = STATE(622), - [sym_subscript_expression] = STATE(622), - [sym_call_expression] = STATE(622), - [sym_field_expression] = STATE(622), - [sym_compound_literal_expression] = STATE(622), - [sym_parenthesized_expression] = STATE(622), - [sym_char_literal] = STATE(622), - [sym_concatenated_string] = STATE(622), - [sym_string_literal] = STATE(273), - [sym_macro_type_specifier] = STATE(271), - [aux_sym__declaration_specifiers_repeat1] = STATE(274), - [aux_sym_sized_type_specifier_repeat1] = STATE(275), - [anon_sym_LPAREN] = ACTIONS(604), + [391] = { + [sym__declaration_specifiers] = STATE(622), + [sym_storage_class_specifier] = STATE(273), + [sym_type_qualifier] = STATE(273), + [sym__type_specifier] = STATE(270), + [sym_sized_type_specifier] = STATE(270), + [sym_enum_specifier] = STATE(270), + [sym_struct_specifier] = STATE(270), + [sym_union_specifier] = STATE(270), + [sym__expression] = STATE(621), + [sym_conditional_expression] = STATE(621), + [sym_assignment_expression] = STATE(621), + [sym_pointer_expression] = STATE(621), + [sym_logical_expression] = STATE(621), + [sym_bitwise_expression] = STATE(621), + [sym_equality_expression] = STATE(621), + [sym_relational_expression] = STATE(621), + [sym_shift_expression] = STATE(621), + [sym_math_expression] = STATE(621), + [sym_cast_expression] = STATE(621), + [sym_sizeof_expression] = STATE(621), + [sym_subscript_expression] = STATE(621), + [sym_call_expression] = STATE(621), + [sym_field_expression] = STATE(621), + [sym_compound_literal_expression] = STATE(621), + [sym_parenthesized_expression] = STATE(621), + [sym_char_literal] = STATE(621), + [sym_concatenated_string] = STATE(621), + [sym_string_literal] = STATE(272), + [sym_macro_type_specifier] = STATE(270), + [aux_sym__declaration_specifiers_repeat1] = STATE(273), + [aux_sym_sized_type_specifier_repeat1] = STATE(274), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_RBRACK] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_RBRACK] = ACTIONS(1488), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -16225,122 +16268,140 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(610), - [anon_sym_long] = ACTIONS(610), - [anon_sym_short] = ACTIONS(610), - [sym_primitive_type] = ACTIONS(612), + [anon_sym_unsigned] = ACTIONS(612), + [anon_sym_long] = ACTIONS(612), + [anon_sym_short] = ACTIONS(612), + [sym_primitive_type] = ACTIONS(614), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [sym_null] = ACTIONS(1500), - [sym_identifier] = ACTIONS(628), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [sym_null] = ACTIONS(1492), + [sym_identifier] = ACTIONS(630), [sym_comment] = ACTIONS(39), }, - [394] = { - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_COMMA] = ACTIONS(1502), - [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym_LBRACK] = ACTIONS(1502), + [392] = { + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), [sym_comment] = ACTIONS(39), }, - [395] = { - [sym_parameter_list] = STATE(394), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_RPAREN] = ACTIONS(1504), + [393] = { + [sym_parameter_list] = STATE(392), + [anon_sym_RPAREN] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(935), [sym_comment] = ACTIONS(39), }, - [396] = { - [sym__declaration_specifiers] = STATE(223), - [sym_storage_class_specifier] = STATE(225), - [sym_type_qualifier] = STATE(225), - [sym__type_specifier] = STATE(224), - [sym_sized_type_specifier] = STATE(224), - [sym_enum_specifier] = STATE(224), - [sym_struct_specifier] = STATE(224), - [sym_union_specifier] = STATE(224), - [sym_parameter_declaration] = STATE(624), - [sym_macro_type_specifier] = STATE(224), - [aux_sym__declaration_specifiers_repeat1] = STATE(225), - [aux_sym_sized_type_specifier_repeat1] = STATE(226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1506), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), + [394] = { + [sym__declarator] = STATE(218), + [sym_pointer_declarator] = STATE(218), + [sym_function_declarator] = STATE(218), + [sym_array_declarator] = STATE(218), + [sym_type_qualifier] = STATE(219), + [aux_sym_type_definition_repeat1] = STATE(219), + [anon_sym_LPAREN2] = ACTIONS(92), + [anon_sym_STAR] = ACTIONS(534), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(536), - [anon_sym_long] = ACTIONS(536), - [anon_sym_short] = ACTIONS(536), - [sym_primitive_type] = ACTIONS(538), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [sym_identifier] = ACTIONS(37), - [sym_comment] = ACTIONS(39), - }, - [397] = { - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_COMMA] = ACTIONS(1508), - [anon_sym_RPAREN] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_COLON] = ACTIONS(1508), + [sym_identifier] = ACTIONS(532), [sym_comment] = ACTIONS(39), }, - [398] = { - [aux_sym_parameter_list_repeat1] = STATE(626), - [anon_sym_COMMA] = ACTIONS(952), - [anon_sym_RPAREN] = ACTIONS(1510), - [sym_comment] = ACTIONS(39), + [395] = { + [aux_sym_string_literal_repeat1] = STATE(624), + [anon_sym_DQUOTE] = ACTIONS(1498), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1500), + [sym_escape_sequence] = ACTIONS(1502), + [sym_comment] = ACTIONS(49), }, - [399] = { - [sym__declaration_specifiers] = STATE(223), - [sym__declarator] = STATE(121), - [sym__abstract_declarator] = STATE(387), - [sym_pointer_declarator] = STATE(121), - [sym_abstract_pointer_declarator] = STATE(387), - [sym_function_declarator] = STATE(121), - [sym_abstract_function_declarator] = STATE(387), - [sym_array_declarator] = STATE(121), - [sym_abstract_array_declarator] = STATE(387), - [sym_storage_class_specifier] = STATE(225), - [sym_type_qualifier] = STATE(225), - [sym__type_specifier] = STATE(224), - [sym_sized_type_specifier] = STATE(224), - [sym_enum_specifier] = STATE(224), - [sym_struct_specifier] = STATE(224), - [sym_union_specifier] = STATE(224), - [sym_parameter_list] = STATE(213), - [sym_parameter_declaration] = STATE(221), - [sym_macro_type_specifier] = STATE(224), - [aux_sym__declaration_specifiers_repeat1] = STATE(225), - [aux_sym_sized_type_specifier_repeat1] = STATE(226), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(534), + [396] = { + [sym_preproc_include] = STATE(651), + [sym_preproc_def] = STATE(651), + [sym_preproc_function_def] = STATE(651), + [sym_preproc_call] = STATE(651), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(646), + [sym_preproc_elif_in_compound_statement] = STATE(647), + [sym_declaration] = STATE(651), + [sym_type_definition] = STATE(651), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(651), + [sym_storage_class_specifier] = STATE(20), + [sym_type_qualifier] = STATE(20), + [sym__type_specifier] = STATE(18), + [sym_sized_type_specifier] = STATE(18), + [sym_enum_specifier] = STATE(18), + [sym_struct_specifier] = STATE(18), + [sym_union_specifier] = STATE(18), + [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(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(651), + [sym_macro_type_specifier] = STATE(18), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(651), + [aux_sym__declaration_specifiers_repeat1] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(21), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), + [sym_preproc_directive] = ACTIONS(149), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -16349,66 +16410,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(536), - [anon_sym_long] = ACTIONS(536), - [anon_sym_short] = ACTIONS(536), - [sym_primitive_type] = ACTIONS(538), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_long] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [sym_primitive_type] = ACTIONS(29), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [sym_identifier] = ACTIONS(1514), - [sym_comment] = ACTIONS(39), - }, - [400] = { - [sym__declarator] = STATE(122), - [sym__abstract_declarator] = STATE(388), - [sym_pointer_declarator] = STATE(122), - [sym_abstract_pointer_declarator] = STATE(388), - [sym_function_declarator] = STATE(122), - [sym_abstract_function_declarator] = STATE(388), - [sym_array_declarator] = STATE(122), - [sym_abstract_array_declarator] = STATE(388), - [sym_type_qualifier] = STATE(629), - [sym_parameter_list] = STATE(213), - [aux_sym_type_definition_repeat1] = STATE(629), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_COMMA] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(516), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(235), - [sym_comment] = ACTIONS(39), - }, - [401] = { - [sym_parameter_list] = STATE(131), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(245), - [sym_comment] = ACTIONS(39), - }, - [402] = { - [sym_parameter_list] = STATE(394), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(1516), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [403] = { - [sym_storage_class_specifier] = STATE(630), - [sym_type_qualifier] = STATE(630), - [aux_sym__declaration_specifiers_repeat1] = STATE(630), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(249), + [397] = { + [sym_preproc_include] = STATE(655), + [sym_preproc_def] = STATE(655), + [sym_preproc_function_def] = STATE(655), + [sym_preproc_call] = STATE(655), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(653), + [sym_preproc_elif_in_compound_statement] = STATE(654), + [sym_declaration] = STATE(655), + [sym_type_definition] = STATE(655), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(655), + [sym_storage_class_specifier] = STATE(20), + [sym_type_qualifier] = STATE(20), + [sym__type_specifier] = STATE(18), + [sym_sized_type_specifier] = STATE(18), + [sym_enum_specifier] = STATE(18), + [sym_struct_specifier] = STATE(18), + [sym_union_specifier] = STATE(18), + [sym_labeled_statement] = STATE(655), + [sym_expression_statement] = STATE(655), + [sym_if_statement] = STATE(655), + [sym_switch_statement] = STATE(655), + [sym_case_statement] = STATE(655), + [sym_while_statement] = STATE(655), + [sym_do_statement] = STATE(655), + [sym_for_statement] = STATE(655), + [sym_return_statement] = STATE(655), + [sym_break_statement] = STATE(655), + [sym_continue_statement] = STATE(655), + [sym_goto_statement] = STATE(655), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(655), + [sym_macro_type_specifier] = STATE(18), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(655), + [aux_sym__declaration_specifiers_repeat1] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(21), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1546), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), + [sym_preproc_directive] = ACTIONS(149), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -16417,19 +16526,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(251), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_long] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [sym_primitive_type] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [404] = { - [sym_storage_class_specifier] = STATE(631), - [sym_type_qualifier] = STATE(631), - [aux_sym__declaration_specifiers_repeat1] = STATE(631), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(249), + [398] = { + [sym_preproc_include] = STATE(659), + [sym_preproc_def] = STATE(659), + [sym_preproc_function_def] = STATE(659), + [sym_preproc_call] = STATE(659), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(657), + [sym_preproc_elif_in_compound_statement] = STATE(658), + [sym_declaration] = STATE(659), + [sym_type_definition] = STATE(659), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(659), + [sym_storage_class_specifier] = STATE(20), + [sym_type_qualifier] = STATE(20), + [sym__type_specifier] = STATE(18), + [sym_sized_type_specifier] = STATE(18), + [sym_enum_specifier] = STATE(18), + [sym_struct_specifier] = STATE(18), + [sym_union_specifier] = STATE(18), + [sym_labeled_statement] = STATE(659), + [sym_expression_statement] = STATE(659), + [sym_if_statement] = STATE(659), + [sym_switch_statement] = STATE(659), + [sym_case_statement] = STATE(659), + [sym_while_statement] = STATE(659), + [sym_do_statement] = STATE(659), + [sym_for_statement] = STATE(659), + [sym_return_statement] = STATE(659), + [sym_break_statement] = STATE(659), + [sym_continue_statement] = STATE(659), + [sym_goto_statement] = STATE(659), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(659), + [sym_macro_type_specifier] = STATE(18), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(659), + [aux_sym__declaration_specifiers_repeat1] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(21), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1548), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), + [sym_preproc_directive] = ACTIONS(149), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -16438,89 +16642,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(251), - [sym_comment] = ACTIONS(39), - }, - [405] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(405), - [anon_sym_LPAREN] = ACTIONS(319), - [anon_sym_COMMA] = ACTIONS(319), - [anon_sym_RPAREN] = ACTIONS(319), - [anon_sym_extern] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_LBRACK] = ACTIONS(319), - [anon_sym_static] = ACTIONS(321), - [anon_sym_auto] = ACTIONS(321), - [anon_sym_register] = ACTIONS(321), - [anon_sym_inline] = ACTIONS(321), - [anon_sym_const] = ACTIONS(321), - [anon_sym_restrict] = ACTIONS(321), - [anon_sym_volatile] = ACTIONS(321), - [anon_sym__Atomic] = ACTIONS(321), - [anon_sym_unsigned] = ACTIONS(1518), - [anon_sym_long] = ACTIONS(1518), - [anon_sym_short] = ACTIONS(1518), - [sym_primitive_type] = ACTIONS(321), - [sym_identifier] = ACTIONS(321), - [sym_comment] = ACTIONS(39), - }, - [406] = { - [sym__declarator] = STATE(219), - [sym_pointer_declarator] = STATE(219), - [sym_function_declarator] = STATE(219), - [sym_array_declarator] = STATE(219), - [sym_type_qualifier] = STATE(220), - [aux_sym_type_definition_repeat1] = STATE(220), - [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(530), + [anon_sym_unsigned] = ACTIONS(27), + [anon_sym_long] = ACTIONS(27), + [anon_sym_short] = ACTIONS(27), + [sym_primitive_type] = ACTIONS(29), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [407] = { - [aux_sym_string_literal_repeat1] = STATE(633), - [anon_sym_DQUOTE] = ACTIONS(1521), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1523), - [sym_escape_sequence] = ACTIONS(1525), - [sym_comment] = ACTIONS(49), - }, - [408] = { + [399] = { [sym_type_qualifier] = STATE(118), [sym__type_specifier] = STATE(116), [sym_sized_type_specifier] = STATE(116), [sym_enum_specifier] = STATE(116), [sym_struct_specifier] = STATE(116), [sym_union_specifier] = STATE(116), - [sym__expression] = STATE(415), - [sym_comma_expression] = STATE(416), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_pointer_expression] = STATE(415), - [sym_logical_expression] = STATE(415), - [sym_bitwise_expression] = STATE(415), - [sym_equality_expression] = STATE(415), - [sym_relational_expression] = STATE(415), - [sym_shift_expression] = STATE(415), - [sym_math_expression] = STATE(415), - [sym_cast_expression] = STATE(415), - [sym_type_descriptor] = STATE(634), - [sym_sizeof_expression] = STATE(415), - [sym_subscript_expression] = STATE(415), - [sym_call_expression] = STATE(415), - [sym_field_expression] = STATE(415), - [sym_compound_literal_expression] = STATE(415), - [sym_parenthesized_expression] = STATE(415), - [sym_char_literal] = STATE(415), - [sym_concatenated_string] = STATE(415), - [sym_string_literal] = STATE(418), + [sym__expression] = STATE(406), + [sym_comma_expression] = STATE(407), + [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_type_descriptor] = STATE(660), + [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(409), [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -16532,866 +16722,613 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_identifier] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), [sym_comment] = ACTIONS(39), }, - [409] = { - [sym__expression] = STATE(422), - [sym_conditional_expression] = STATE(422), - [sym_assignment_expression] = STATE(422), - [sym_pointer_expression] = STATE(422), - [sym_logical_expression] = STATE(422), - [sym_bitwise_expression] = STATE(422), - [sym_equality_expression] = STATE(422), - [sym_relational_expression] = STATE(422), - [sym_shift_expression] = STATE(422), - [sym_math_expression] = STATE(422), - [sym_cast_expression] = STATE(422), - [sym_sizeof_expression] = STATE(422), - [sym_subscript_expression] = STATE(422), - [sym_call_expression] = STATE(422), - [sym_field_expression] = STATE(422), - [sym_compound_literal_expression] = STATE(422), - [sym_parenthesized_expression] = STATE(422), - [sym_char_literal] = STATE(422), - [sym_concatenated_string] = STATE(422), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(1008), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1010), - [sym_false] = ACTIONS(1010), - [sym_null] = ACTIONS(1010), - [sym_identifier] = ACTIONS(1010), + [400] = { + [sym__expression] = STATE(410), + [sym_conditional_expression] = STATE(410), + [sym_assignment_expression] = STATE(410), + [sym_pointer_expression] = STATE(410), + [sym_logical_expression] = STATE(410), + [sym_bitwise_expression] = STATE(410), + [sym_equality_expression] = STATE(410), + [sym_relational_expression] = STATE(410), + [sym_shift_expression] = STATE(410), + [sym_math_expression] = STATE(410), + [sym_cast_expression] = STATE(410), + [sym_sizeof_expression] = STATE(410), + [sym_subscript_expression] = STATE(410), + [sym_call_expression] = STATE(410), + [sym_field_expression] = STATE(410), + [sym_compound_literal_expression] = STATE(410), + [sym_parenthesized_expression] = STATE(410), + [sym_char_literal] = STATE(410), + [sym_concatenated_string] = STATE(410), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_identifier] = ACTIONS(992), [sym_comment] = ACTIONS(39), }, - [410] = { - [sym__expression] = STATE(449), - [sym_conditional_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_pointer_expression] = STATE(449), - [sym_logical_expression] = STATE(449), - [sym_bitwise_expression] = STATE(449), - [sym_equality_expression] = STATE(449), - [sym_relational_expression] = STATE(449), - [sym_shift_expression] = STATE(449), - [sym_math_expression] = STATE(449), - [sym_cast_expression] = STATE(449), - [sym_sizeof_expression] = STATE(449), - [sym_subscript_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_field_expression] = STATE(449), - [sym_compound_literal_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_char_literal] = STATE(449), - [sym_concatenated_string] = STATE(449), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), - [sym_identifier] = ACTIONS(1068), + [401] = { + [sym__expression] = STATE(439), + [sym_conditional_expression] = STATE(439), + [sym_assignment_expression] = STATE(439), + [sym_pointer_expression] = STATE(439), + [sym_logical_expression] = STATE(439), + [sym_bitwise_expression] = STATE(439), + [sym_equality_expression] = STATE(439), + [sym_relational_expression] = STATE(439), + [sym_shift_expression] = STATE(439), + [sym_math_expression] = STATE(439), + [sym_cast_expression] = STATE(439), + [sym_sizeof_expression] = STATE(439), + [sym_subscript_expression] = STATE(439), + [sym_call_expression] = STATE(439), + [sym_field_expression] = STATE(439), + [sym_compound_literal_expression] = STATE(439), + [sym_parenthesized_expression] = STATE(439), + [sym_char_literal] = STATE(439), + [sym_concatenated_string] = STATE(439), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1048), [sym_comment] = ACTIONS(39), }, - [411] = { - [sym__expression] = STATE(450), - [sym_conditional_expression] = STATE(450), - [sym_assignment_expression] = STATE(450), - [sym_pointer_expression] = STATE(450), - [sym_logical_expression] = STATE(450), - [sym_bitwise_expression] = STATE(450), - [sym_equality_expression] = STATE(450), - [sym_relational_expression] = STATE(450), - [sym_shift_expression] = STATE(450), - [sym_math_expression] = STATE(450), - [sym_cast_expression] = STATE(450), - [sym_sizeof_expression] = STATE(450), - [sym_subscript_expression] = STATE(450), - [sym_call_expression] = STATE(450), - [sym_field_expression] = STATE(450), - [sym_compound_literal_expression] = STATE(450), - [sym_parenthesized_expression] = STATE(450), - [sym_char_literal] = STATE(450), - [sym_concatenated_string] = STATE(450), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), - [sym_identifier] = ACTIONS(1072), + [402] = { + [sym__expression] = STATE(440), + [sym_conditional_expression] = STATE(440), + [sym_assignment_expression] = STATE(440), + [sym_pointer_expression] = STATE(440), + [sym_logical_expression] = STATE(440), + [sym_bitwise_expression] = STATE(440), + [sym_equality_expression] = STATE(440), + [sym_relational_expression] = STATE(440), + [sym_shift_expression] = STATE(440), + [sym_math_expression] = STATE(440), + [sym_cast_expression] = STATE(440), + [sym_sizeof_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_call_expression] = STATE(440), + [sym_field_expression] = STATE(440), + [sym_compound_literal_expression] = STATE(440), + [sym_parenthesized_expression] = STATE(440), + [sym_char_literal] = STATE(440), + [sym_concatenated_string] = STATE(440), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1052), [sym_comment] = ACTIONS(39), }, - [412] = { - [sym__expression] = STATE(451), - [sym_conditional_expression] = STATE(451), - [sym_assignment_expression] = STATE(451), - [sym_pointer_expression] = STATE(451), - [sym_logical_expression] = STATE(451), - [sym_bitwise_expression] = STATE(451), - [sym_equality_expression] = STATE(451), - [sym_relational_expression] = STATE(451), - [sym_shift_expression] = STATE(451), - [sym_math_expression] = STATE(451), - [sym_cast_expression] = STATE(451), - [sym_sizeof_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_call_expression] = STATE(451), - [sym_field_expression] = STATE(451), - [sym_compound_literal_expression] = STATE(451), - [sym_parenthesized_expression] = STATE(451), - [sym_char_literal] = STATE(451), - [sym_concatenated_string] = STATE(451), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), - [sym_identifier] = ACTIONS(1076), + [403] = { + [sym__expression] = STATE(441), + [sym_conditional_expression] = STATE(441), + [sym_assignment_expression] = STATE(441), + [sym_pointer_expression] = STATE(441), + [sym_logical_expression] = STATE(441), + [sym_bitwise_expression] = STATE(441), + [sym_equality_expression] = STATE(441), + [sym_relational_expression] = STATE(441), + [sym_shift_expression] = STATE(441), + [sym_math_expression] = STATE(441), + [sym_cast_expression] = STATE(441), + [sym_sizeof_expression] = STATE(441), + [sym_subscript_expression] = STATE(441), + [sym_call_expression] = STATE(441), + [sym_field_expression] = STATE(441), + [sym_compound_literal_expression] = STATE(441), + [sym_parenthesized_expression] = STATE(441), + [sym_char_literal] = STATE(441), + [sym_concatenated_string] = STATE(441), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1056), [sym_comment] = ACTIONS(39), }, - [413] = { - [sym__expression] = STATE(636), - [sym_conditional_expression] = STATE(636), - [sym_assignment_expression] = STATE(636), - [sym_pointer_expression] = STATE(636), - [sym_logical_expression] = STATE(636), - [sym_bitwise_expression] = STATE(636), - [sym_equality_expression] = STATE(636), - [sym_relational_expression] = STATE(636), - [sym_shift_expression] = STATE(636), - [sym_math_expression] = STATE(636), - [sym_cast_expression] = STATE(636), - [sym_sizeof_expression] = STATE(636), - [sym_subscript_expression] = STATE(636), - [sym_call_expression] = STATE(636), - [sym_field_expression] = STATE(636), - [sym_compound_literal_expression] = STATE(636), - [sym_parenthesized_expression] = STATE(636), - [sym_char_literal] = STATE(636), - [sym_concatenated_string] = STATE(636), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1531), - [sym_false] = ACTIONS(1531), - [sym_null] = ACTIONS(1531), - [sym_identifier] = ACTIONS(1531), + [404] = { + [sym__expression] = STATE(662), + [sym_conditional_expression] = STATE(662), + [sym_assignment_expression] = STATE(662), + [sym_pointer_expression] = STATE(662), + [sym_logical_expression] = STATE(662), + [sym_bitwise_expression] = STATE(662), + [sym_equality_expression] = STATE(662), + [sym_relational_expression] = STATE(662), + [sym_shift_expression] = STATE(662), + [sym_math_expression] = STATE(662), + [sym_cast_expression] = STATE(662), + [sym_sizeof_expression] = STATE(662), + [sym_subscript_expression] = STATE(662), + [sym_call_expression] = STATE(662), + [sym_field_expression] = STATE(662), + [sym_compound_literal_expression] = STATE(662), + [sym_parenthesized_expression] = STATE(662), + [sym_char_literal] = STATE(662), + [sym_concatenated_string] = STATE(662), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(1550), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(1552), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1554), + [sym_false] = ACTIONS(1554), + [sym_null] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1554), [sym_comment] = ACTIONS(39), }, - [414] = { - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1092), - [anon_sym_EQ] = ACTIONS(1098), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), + [405] = { + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), [sym_comment] = ACTIONS(39), }, - [415] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1533), - [anon_sym_RPAREN] = ACTIONS(1535), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [406] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(1558), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [416] = { - [anon_sym_RPAREN] = ACTIONS(1535), + [407] = { + [anon_sym_RPAREN] = ACTIONS(1558), [sym_comment] = ACTIONS(39), }, - [417] = { - [anon_sym_RPAREN] = ACTIONS(1565), + [408] = { + [anon_sym_RPAREN] = ACTIONS(1588), [sym_comment] = ACTIONS(39), }, - [418] = { - [sym_string_literal] = STATE(652), - [aux_sym_concatenated_string_repeat1] = STATE(652), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_RPAREN] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), + [409] = { + [sym_string_literal] = STATE(678), + [aux_sym_concatenated_string_repeat1] = STATE(678), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, - [419] = { - [sym_preproc_include] = STATE(679), - [sym_preproc_def] = STATE(679), - [sym_preproc_function_def] = STATE(679), - [sym_preproc_call] = STATE(679), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(674), - [sym_preproc_elif_in_compound_statement] = STATE(675), - [sym_declaration] = STATE(679), - [sym_type_definition] = STATE(679), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(679), - [sym_storage_class_specifier] = STATE(20), - [sym_type_qualifier] = STATE(20), - [sym__type_specifier] = STATE(18), - [sym_sized_type_specifier] = STATE(18), - [sym_enum_specifier] = STATE(18), - [sym_struct_specifier] = STATE(18), - [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(679), - [sym_expression_statement] = STATE(679), - [sym_if_statement] = STATE(679), - [sym_switch_statement] = STATE(679), - [sym_case_statement] = STATE(679), - [sym_while_statement] = STATE(679), - [sym_do_statement] = STATE(679), - [sym_for_statement] = STATE(679), - [sym_return_statement] = STATE(679), - [sym_break_statement] = STATE(679), - [sym_continue_statement] = STATE(679), - [sym_goto_statement] = STATE(679), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(679), - [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(679), - [aux_sym__declaration_specifiers_repeat1] = STATE(20), - [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1569), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_long] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [sym_primitive_type] = ACTIONS(29), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), - [sym_comment] = ACTIONS(39), - }, - [420] = { - [sym_preproc_include] = STATE(683), - [sym_preproc_def] = STATE(683), - [sym_preproc_function_def] = STATE(683), - [sym_preproc_call] = STATE(683), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(681), - [sym_preproc_elif_in_compound_statement] = STATE(682), - [sym_declaration] = STATE(683), - [sym_type_definition] = STATE(683), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(683), - [sym_storage_class_specifier] = STATE(20), - [sym_type_qualifier] = STATE(20), - [sym__type_specifier] = STATE(18), - [sym_sized_type_specifier] = STATE(18), - [sym_enum_specifier] = STATE(18), - [sym_struct_specifier] = STATE(18), - [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(683), - [sym_expression_statement] = STATE(683), - [sym_if_statement] = STATE(683), - [sym_switch_statement] = STATE(683), - [sym_case_statement] = STATE(683), - [sym_while_statement] = STATE(683), - [sym_do_statement] = STATE(683), - [sym_for_statement] = STATE(683), - [sym_return_statement] = STATE(683), - [sym_break_statement] = STATE(683), - [sym_continue_statement] = STATE(683), - [sym_goto_statement] = STATE(683), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(683), - [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(683), - [aux_sym__declaration_specifiers_repeat1] = STATE(20), - [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_long] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [sym_primitive_type] = ACTIONS(29), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), - [sym_comment] = ACTIONS(39), - }, - [421] = { - [sym_preproc_include] = STATE(687), - [sym_preproc_def] = STATE(687), - [sym_preproc_function_def] = STATE(687), - [sym_preproc_call] = STATE(687), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(685), - [sym_preproc_elif_in_compound_statement] = STATE(686), - [sym_declaration] = STATE(687), - [sym_type_definition] = STATE(687), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(687), - [sym_storage_class_specifier] = STATE(20), - [sym_type_qualifier] = STATE(20), - [sym__type_specifier] = STATE(18), - [sym_sized_type_specifier] = STATE(18), - [sym_enum_specifier] = STATE(18), - [sym_struct_specifier] = STATE(18), - [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(687), - [sym_expression_statement] = STATE(687), - [sym_if_statement] = STATE(687), - [sym_switch_statement] = STATE(687), - [sym_case_statement] = STATE(687), - [sym_while_statement] = STATE(687), - [sym_do_statement] = STATE(687), - [sym_for_statement] = STATE(687), - [sym_return_statement] = STATE(687), - [sym_break_statement] = STATE(687), - [sym_continue_statement] = STATE(687), - [sym_goto_statement] = STATE(687), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(687), - [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(687), - [aux_sym__declaration_specifiers_repeat1] = STATE(20), - [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1611), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), - [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(27), - [anon_sym_long] = ACTIONS(27), - [anon_sym_short] = ACTIONS(27), - [sym_primitive_type] = ACTIONS(29), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [410] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(1590), + [anon_sym_EQ] = ACTIONS(1592), + [anon_sym_COLON] = ACTIONS(1590), + [anon_sym_QMARK] = ACTIONS(1590), + [anon_sym_STAR_EQ] = ACTIONS(1590), + [anon_sym_SLASH_EQ] = ACTIONS(1590), + [anon_sym_PERCENT_EQ] = ACTIONS(1590), + [anon_sym_PLUS_EQ] = ACTIONS(1590), + [anon_sym_DASH_EQ] = ACTIONS(1590), + [anon_sym_LT_LT_EQ] = ACTIONS(1590), + [anon_sym_GT_GT_EQ] = ACTIONS(1590), + [anon_sym_AMP_EQ] = ACTIONS(1590), + [anon_sym_CARET_EQ] = ACTIONS(1590), + [anon_sym_PIPE_EQ] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_PIPE_PIPE] = ACTIONS(1590), + [anon_sym_AMP_AMP] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_CARET] = ACTIONS(1592), + [anon_sym_EQ_EQ] = ACTIONS(1590), + [anon_sym_BANG_EQ] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_GT] = ACTIONS(1592), + [anon_sym_LT_EQ] = ACTIONS(1590), + [anon_sym_GT_EQ] = ACTIONS(1590), + [anon_sym_LT_LT] = ACTIONS(1592), + [anon_sym_GT_GT] = ACTIONS(1592), + [anon_sym_PLUS] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_SLASH] = ACTIONS(1592), + [anon_sym_PERCENT] = ACTIONS(1592), + [anon_sym_DASH_DASH] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [422] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(1613), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_RBRACE] = ACTIONS(1613), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(1613), - [anon_sym_EQ] = ACTIONS(1615), - [anon_sym_COLON] = ACTIONS(1613), - [anon_sym_QMARK] = ACTIONS(1613), - [anon_sym_STAR_EQ] = ACTIONS(1613), - [anon_sym_SLASH_EQ] = ACTIONS(1613), - [anon_sym_PERCENT_EQ] = ACTIONS(1613), - [anon_sym_PLUS_EQ] = ACTIONS(1613), - [anon_sym_DASH_EQ] = ACTIONS(1613), - [anon_sym_LT_LT_EQ] = ACTIONS(1613), - [anon_sym_GT_GT_EQ] = ACTIONS(1613), - [anon_sym_AMP_EQ] = ACTIONS(1613), - [anon_sym_CARET_EQ] = ACTIONS(1613), - [anon_sym_PIPE_EQ] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1613), - [anon_sym_PIPE] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1615), - [anon_sym_EQ_EQ] = ACTIONS(1613), - [anon_sym_BANG_EQ] = ACTIONS(1613), - [anon_sym_LT] = ACTIONS(1615), - [anon_sym_GT] = ACTIONS(1615), - [anon_sym_LT_EQ] = ACTIONS(1613), - [anon_sym_GT_EQ] = ACTIONS(1613), - [anon_sym_LT_LT] = ACTIONS(1615), - [anon_sym_GT_GT] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_SLASH] = ACTIONS(1615), - [anon_sym_PERCENT] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1613), - [anon_sym_PLUS_PLUS] = ACTIONS(1613), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [411] = { + [sym__expression] = STATE(679), + [sym_comma_expression] = STATE(680), + [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(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1596), + [sym_false] = ACTIONS(1596), + [sym_null] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1596), [sym_comment] = ACTIONS(39), }, - [423] = { - [sym__expression] = STATE(694), - [sym_conditional_expression] = STATE(694), - [sym_assignment_expression] = STATE(694), - [sym_pointer_expression] = STATE(694), - [sym_logical_expression] = STATE(694), - [sym_bitwise_expression] = STATE(694), - [sym_equality_expression] = STATE(694), - [sym_relational_expression] = STATE(694), - [sym_shift_expression] = STATE(694), - [sym_math_expression] = STATE(694), - [sym_cast_expression] = STATE(694), - [sym_sizeof_expression] = STATE(694), - [sym_subscript_expression] = STATE(694), - [sym_call_expression] = STATE(694), - [sym_field_expression] = STATE(694), - [sym_compound_literal_expression] = STATE(694), - [sym_parenthesized_expression] = STATE(694), - [sym_char_literal] = STATE(694), - [sym_concatenated_string] = STATE(694), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1633), - [sym_false] = ACTIONS(1633), - [sym_null] = ACTIONS(1633), - [sym_identifier] = ACTIONS(1633), + [412] = { + [sym_compound_statement] = STATE(688), + [sym_labeled_statement] = STATE(688), + [sym_expression_statement] = STATE(688), + [sym_if_statement] = STATE(688), + [sym_switch_statement] = STATE(688), + [sym_case_statement] = STATE(688), + [sym_while_statement] = STATE(688), + [sym_do_statement] = STATE(688), + [sym_for_statement] = STATE(688), + [sym_return_statement] = STATE(688), + [sym_break_statement] = STATE(688), + [sym_continue_statement] = STATE(688), + [sym_goto_statement] = STATE(688), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1610), [sym_comment] = ACTIONS(39), }, - [424] = { - [sym__expression] = STATE(696), - [sym_conditional_expression] = STATE(696), - [sym_assignment_expression] = STATE(696), - [sym_pointer_expression] = STATE(696), - [sym_logical_expression] = STATE(696), - [sym_bitwise_expression] = STATE(696), - [sym_equality_expression] = STATE(696), - [sym_relational_expression] = STATE(696), - [sym_shift_expression] = STATE(696), - [sym_math_expression] = STATE(696), - [sym_cast_expression] = STATE(696), - [sym_sizeof_expression] = STATE(696), - [sym_subscript_expression] = STATE(696), - [sym_call_expression] = STATE(696), - [sym_field_expression] = STATE(696), - [sym_compound_literal_expression] = STATE(696), - [sym_parenthesized_expression] = STATE(696), - [sym_char_literal] = STATE(696), - [sym_concatenated_string] = STATE(696), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1637), - [sym_false] = ACTIONS(1637), - [sym_null] = ACTIONS(1637), - [sym_identifier] = ACTIONS(1637), + [413] = { + [sym_compound_statement] = STATE(690), + [sym_labeled_statement] = STATE(690), + [sym_expression_statement] = STATE(690), + [sym_if_statement] = STATE(690), + [sym_switch_statement] = STATE(690), + [sym_case_statement] = STATE(690), + [sym_while_statement] = STATE(690), + [sym_do_statement] = STATE(690), + [sym_for_statement] = STATE(690), + [sym_return_statement] = STATE(690), + [sym_break_statement] = STATE(690), + [sym_continue_statement] = STATE(690), + [sym_goto_statement] = STATE(690), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1612), [sym_comment] = ACTIONS(39), }, - [425] = { + [414] = { [sym_type_qualifier] = STATE(118), [sym__type_specifier] = STATE(116), [sym_sized_type_specifier] = STATE(116), [sym_enum_specifier] = STATE(116), [sym_struct_specifier] = STATE(116), [sym_union_specifier] = STATE(116), - [sym__expression] = STATE(415), - [sym_comma_expression] = STATE(416), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_pointer_expression] = STATE(415), - [sym_logical_expression] = STATE(415), - [sym_bitwise_expression] = STATE(415), - [sym_equality_expression] = STATE(415), - [sym_relational_expression] = STATE(415), - [sym_shift_expression] = STATE(415), - [sym_math_expression] = STATE(415), - [sym_cast_expression] = STATE(415), - [sym_type_descriptor] = STATE(697), - [sym_sizeof_expression] = STATE(415), - [sym_subscript_expression] = STATE(415), - [sym_call_expression] = STATE(415), - [sym_field_expression] = STATE(415), - [sym_compound_literal_expression] = STATE(415), - [sym_parenthesized_expression] = STATE(415), - [sym_char_literal] = STATE(415), - [sym_concatenated_string] = STATE(415), - [sym_string_literal] = STATE(418), + [sym__expression] = STATE(406), + [sym_comma_expression] = STATE(407), + [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_type_descriptor] = STATE(691), + [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(409), [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -17403,312 +17340,312 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_identifier] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), [sym_comment] = ACTIONS(39), }, - [426] = { - [sym__expression] = STATE(422), - [sym_conditional_expression] = STATE(422), - [sym_assignment_expression] = STATE(422), - [sym_pointer_expression] = STATE(422), - [sym_logical_expression] = STATE(422), - [sym_bitwise_expression] = STATE(422), - [sym_equality_expression] = STATE(422), - [sym_relational_expression] = STATE(422), - [sym_shift_expression] = STATE(422), - [sym_math_expression] = STATE(422), - [sym_cast_expression] = STATE(422), - [sym_sizeof_expression] = STATE(422), - [sym_subscript_expression] = STATE(422), - [sym_call_expression] = STATE(422), - [sym_field_expression] = STATE(422), - [sym_compound_literal_expression] = STATE(422), - [sym_parenthesized_expression] = STATE(422), - [sym_char_literal] = STATE(422), - [sym_concatenated_string] = STATE(422), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1008), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1010), - [sym_false] = ACTIONS(1010), - [sym_null] = ACTIONS(1010), - [sym_identifier] = ACTIONS(1010), + [415] = { + [sym__expression] = STATE(410), + [sym_conditional_expression] = STATE(410), + [sym_assignment_expression] = STATE(410), + [sym_pointer_expression] = STATE(410), + [sym_logical_expression] = STATE(410), + [sym_bitwise_expression] = STATE(410), + [sym_equality_expression] = STATE(410), + [sym_relational_expression] = STATE(410), + [sym_shift_expression] = STATE(410), + [sym_math_expression] = STATE(410), + [sym_cast_expression] = STATE(410), + [sym_sizeof_expression] = STATE(410), + [sym_subscript_expression] = STATE(410), + [sym_call_expression] = STATE(410), + [sym_field_expression] = STATE(410), + [sym_compound_literal_expression] = STATE(410), + [sym_parenthesized_expression] = STATE(410), + [sym_char_literal] = STATE(410), + [sym_concatenated_string] = STATE(410), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_null] = ACTIONS(992), + [sym_identifier] = ACTIONS(992), [sym_comment] = ACTIONS(39), }, - [427] = { - [sym__expression] = STATE(449), - [sym_conditional_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_pointer_expression] = STATE(449), - [sym_logical_expression] = STATE(449), - [sym_bitwise_expression] = STATE(449), - [sym_equality_expression] = STATE(449), - [sym_relational_expression] = STATE(449), - [sym_shift_expression] = STATE(449), - [sym_math_expression] = STATE(449), - [sym_cast_expression] = STATE(449), - [sym_sizeof_expression] = STATE(449), - [sym_subscript_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_field_expression] = STATE(449), - [sym_compound_literal_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_char_literal] = STATE(449), - [sym_concatenated_string] = STATE(449), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), - [sym_identifier] = ACTIONS(1068), + [416] = { + [sym__expression] = STATE(439), + [sym_conditional_expression] = STATE(439), + [sym_assignment_expression] = STATE(439), + [sym_pointer_expression] = STATE(439), + [sym_logical_expression] = STATE(439), + [sym_bitwise_expression] = STATE(439), + [sym_equality_expression] = STATE(439), + [sym_relational_expression] = STATE(439), + [sym_shift_expression] = STATE(439), + [sym_math_expression] = STATE(439), + [sym_cast_expression] = STATE(439), + [sym_sizeof_expression] = STATE(439), + [sym_subscript_expression] = STATE(439), + [sym_call_expression] = STATE(439), + [sym_field_expression] = STATE(439), + [sym_compound_literal_expression] = STATE(439), + [sym_parenthesized_expression] = STATE(439), + [sym_char_literal] = STATE(439), + [sym_concatenated_string] = STATE(439), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1046), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1048), [sym_comment] = ACTIONS(39), }, - [428] = { - [sym__expression] = STATE(450), - [sym_conditional_expression] = STATE(450), - [sym_assignment_expression] = STATE(450), - [sym_pointer_expression] = STATE(450), - [sym_logical_expression] = STATE(450), - [sym_bitwise_expression] = STATE(450), - [sym_equality_expression] = STATE(450), - [sym_relational_expression] = STATE(450), - [sym_shift_expression] = STATE(450), - [sym_math_expression] = STATE(450), - [sym_cast_expression] = STATE(450), - [sym_sizeof_expression] = STATE(450), - [sym_subscript_expression] = STATE(450), - [sym_call_expression] = STATE(450), - [sym_field_expression] = STATE(450), - [sym_compound_literal_expression] = STATE(450), - [sym_parenthesized_expression] = STATE(450), - [sym_char_literal] = STATE(450), - [sym_concatenated_string] = STATE(450), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), - [sym_identifier] = ACTIONS(1072), + [417] = { + [sym__expression] = STATE(440), + [sym_conditional_expression] = STATE(440), + [sym_assignment_expression] = STATE(440), + [sym_pointer_expression] = STATE(440), + [sym_logical_expression] = STATE(440), + [sym_bitwise_expression] = STATE(440), + [sym_equality_expression] = STATE(440), + [sym_relational_expression] = STATE(440), + [sym_shift_expression] = STATE(440), + [sym_math_expression] = STATE(440), + [sym_cast_expression] = STATE(440), + [sym_sizeof_expression] = STATE(440), + [sym_subscript_expression] = STATE(440), + [sym_call_expression] = STATE(440), + [sym_field_expression] = STATE(440), + [sym_compound_literal_expression] = STATE(440), + [sym_parenthesized_expression] = STATE(440), + [sym_char_literal] = STATE(440), + [sym_concatenated_string] = STATE(440), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1050), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1052), + [sym_false] = ACTIONS(1052), + [sym_null] = ACTIONS(1052), + [sym_identifier] = ACTIONS(1052), [sym_comment] = ACTIONS(39), }, - [429] = { - [sym__expression] = STATE(451), - [sym_conditional_expression] = STATE(451), - [sym_assignment_expression] = STATE(451), - [sym_pointer_expression] = STATE(451), - [sym_logical_expression] = STATE(451), - [sym_bitwise_expression] = STATE(451), - [sym_equality_expression] = STATE(451), - [sym_relational_expression] = STATE(451), - [sym_shift_expression] = STATE(451), - [sym_math_expression] = STATE(451), - [sym_cast_expression] = STATE(451), - [sym_sizeof_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_call_expression] = STATE(451), - [sym_field_expression] = STATE(451), - [sym_compound_literal_expression] = STATE(451), - [sym_parenthesized_expression] = STATE(451), - [sym_char_literal] = STATE(451), - [sym_concatenated_string] = STATE(451), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), - [sym_identifier] = ACTIONS(1076), + [418] = { + [sym__expression] = STATE(441), + [sym_conditional_expression] = STATE(441), + [sym_assignment_expression] = STATE(441), + [sym_pointer_expression] = STATE(441), + [sym_logical_expression] = STATE(441), + [sym_bitwise_expression] = STATE(441), + [sym_equality_expression] = STATE(441), + [sym_relational_expression] = STATE(441), + [sym_shift_expression] = STATE(441), + [sym_math_expression] = STATE(441), + [sym_cast_expression] = STATE(441), + [sym_sizeof_expression] = STATE(441), + [sym_subscript_expression] = STATE(441), + [sym_call_expression] = STATE(441), + [sym_field_expression] = STATE(441), + [sym_compound_literal_expression] = STATE(441), + [sym_parenthesized_expression] = STATE(441), + [sym_char_literal] = STATE(441), + [sym_concatenated_string] = STATE(441), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1054), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1056), + [sym_false] = ACTIONS(1056), + [sym_null] = ACTIONS(1056), + [sym_identifier] = ACTIONS(1056), [sym_comment] = ACTIONS(39), }, - [430] = { - [sym__expression] = STATE(699), - [sym_conditional_expression] = STATE(699), - [sym_assignment_expression] = STATE(699), - [sym_pointer_expression] = STATE(699), - [sym_logical_expression] = STATE(699), - [sym_bitwise_expression] = STATE(699), - [sym_equality_expression] = STATE(699), - [sym_relational_expression] = STATE(699), - [sym_shift_expression] = STATE(699), - [sym_math_expression] = STATE(699), - [sym_cast_expression] = STATE(699), - [sym_sizeof_expression] = STATE(699), - [sym_subscript_expression] = STATE(699), - [sym_call_expression] = STATE(699), - [sym_field_expression] = STATE(699), - [sym_compound_literal_expression] = STATE(699), - [sym_parenthesized_expression] = STATE(699), - [sym_char_literal] = STATE(699), - [sym_concatenated_string] = STATE(699), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1641), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1643), - [sym_false] = ACTIONS(1643), - [sym_null] = ACTIONS(1643), - [sym_identifier] = ACTIONS(1643), + [419] = { + [sym__expression] = STATE(693), + [sym_conditional_expression] = STATE(693), + [sym_assignment_expression] = STATE(693), + [sym_pointer_expression] = STATE(693), + [sym_logical_expression] = STATE(693), + [sym_bitwise_expression] = STATE(693), + [sym_equality_expression] = STATE(693), + [sym_relational_expression] = STATE(693), + [sym_shift_expression] = STATE(693), + [sym_math_expression] = STATE(693), + [sym_cast_expression] = STATE(693), + [sym_sizeof_expression] = STATE(693), + [sym_subscript_expression] = STATE(693), + [sym_call_expression] = STATE(693), + [sym_field_expression] = STATE(693), + [sym_compound_literal_expression] = STATE(693), + [sym_parenthesized_expression] = STATE(693), + [sym_char_literal] = STATE(693), + [sym_concatenated_string] = STATE(693), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1616), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1618), + [sym_false] = ACTIONS(1618), + [sym_null] = ACTIONS(1618), + [sym_identifier] = ACTIONS(1618), [sym_comment] = ACTIONS(39), }, - [431] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(1649), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [420] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [432] = { - [sym_string_literal] = STATE(713), - [aux_sym_concatenated_string_repeat1] = STATE(713), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), + [421] = { + [sym_string_literal] = STATE(707), + [aux_sym_concatenated_string_repeat1] = STATE(707), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1066), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, - [433] = { - [sym_declaration] = STATE(715), - [sym_type_definition] = STATE(715), - [sym__declaration_specifiers] = STATE(716), - [sym_compound_statement] = STATE(715), + [422] = { + [sym_declaration] = STATE(709), + [sym_type_definition] = STATE(709), + [sym__declaration_specifiers] = STATE(710), + [sym_compound_statement] = STATE(709), [sym_storage_class_specifier] = STATE(96), [sym_type_qualifier] = STATE(96), [sym__type_specifier] = STATE(95), @@ -17716,48 +17653,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(95), [sym_struct_specifier] = STATE(95), [sym_union_specifier] = STATE(95), - [sym_labeled_statement] = STATE(715), - [sym_expression_statement] = STATE(715), - [sym_if_statement] = STATE(715), - [sym_switch_statement] = STATE(715), - [sym_case_statement] = STATE(715), - [sym_while_statement] = STATE(715), - [sym_do_statement] = STATE(715), - [sym_for_statement] = STATE(715), - [sym_return_statement] = STATE(715), - [sym_break_statement] = STATE(715), - [sym_continue_statement] = STATE(715), - [sym_goto_statement] = STATE(715), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), + [sym_labeled_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_if_statement] = STATE(709), + [sym_switch_statement] = STATE(709), + [sym_case_statement] = STATE(709), + [sym_while_statement] = STATE(709), + [sym_do_statement] = STATE(709), + [sym_for_statement] = STATE(709), + [sym_return_statement] = STATE(709), + [sym_break_statement] = STATE(709), + [sym_continue_statement] = STATE(709), + [sym_goto_statement] = STATE(709), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(550), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -17773,183 +17710,280 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1650), [sym_comment] = ACTIONS(39), }, - [434] = { - [sym__expression] = STATE(717), - [sym_conditional_expression] = STATE(717), - [sym_assignment_expression] = STATE(717), - [sym_pointer_expression] = STATE(717), - [sym_logical_expression] = STATE(717), - [sym_bitwise_expression] = STATE(717), - [sym_equality_expression] = STATE(717), - [sym_relational_expression] = STATE(717), - [sym_shift_expression] = STATE(717), - [sym_math_expression] = STATE(717), - [sym_cast_expression] = STATE(717), - [sym_sizeof_expression] = STATE(717), - [sym_subscript_expression] = STATE(717), - [sym_call_expression] = STATE(717), - [sym_field_expression] = STATE(717), - [sym_compound_literal_expression] = STATE(717), - [sym_parenthesized_expression] = STATE(717), - [sym_char_literal] = STATE(717), - [sym_concatenated_string] = STATE(717), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(1677), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1679), - [sym_false] = ACTIONS(1679), - [sym_null] = ACTIONS(1679), - [sym_identifier] = ACTIONS(1679), + [423] = { + [sym_compound_statement] = STATE(711), + [sym_labeled_statement] = STATE(711), + [sym_expression_statement] = STATE(711), + [sym_if_statement] = STATE(711), + [sym_switch_statement] = STATE(711), + [sym_case_statement] = STATE(711), + [sym_while_statement] = STATE(711), + [sym_do_statement] = STATE(711), + [sym_for_statement] = STATE(711), + [sym_return_statement] = STATE(711), + [sym_break_statement] = STATE(711), + [sym_continue_statement] = STATE(711), + [sym_goto_statement] = STATE(711), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1612), [sym_comment] = ACTIONS(39), }, - [435] = { - [anon_sym_LPAREN] = ACTIONS(1681), + [424] = { + [sym_parenthesized_expression] = STATE(712), + [anon_sym_LPAREN2] = ACTIONS(994), [sym_comment] = ACTIONS(39), }, - [436] = { - [anon_sym_LPAREN] = ACTIONS(1683), + [425] = { + [sym_parenthesized_expression] = STATE(713), + [anon_sym_LPAREN2] = ACTIONS(994), [sym_comment] = ACTIONS(39), }, - [437] = { - [sym__expression] = STATE(720), - [sym_conditional_expression] = STATE(720), - [sym_assignment_expression] = STATE(720), - [sym_pointer_expression] = STATE(720), - [sym_logical_expression] = STATE(720), - [sym_bitwise_expression] = STATE(720), - [sym_equality_expression] = STATE(720), - [sym_relational_expression] = STATE(720), - [sym_shift_expression] = STATE(720), - [sym_math_expression] = STATE(720), - [sym_cast_expression] = STATE(720), - [sym_sizeof_expression] = STATE(720), - [sym_subscript_expression] = STATE(720), - [sym_call_expression] = STATE(720), - [sym_field_expression] = STATE(720), - [sym_compound_literal_expression] = STATE(720), - [sym_parenthesized_expression] = STATE(720), - [sym_char_literal] = STATE(720), - [sym_concatenated_string] = STATE(720), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1685), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1687), - [sym_false] = ACTIONS(1687), - [sym_null] = ACTIONS(1687), - [sym_identifier] = ACTIONS(1687), + [426] = { + [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(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1652), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1654), + [sym_false] = ACTIONS(1654), + [sym_null] = ACTIONS(1654), + [sym_identifier] = ACTIONS(1654), [sym_comment] = ACTIONS(39), }, - [438] = { - [anon_sym_COLON] = ACTIONS(1689), + [427] = { + [anon_sym_COLON] = ACTIONS(1656), [sym_comment] = ACTIONS(39), }, - [439] = { - [anon_sym_LPAREN] = ACTIONS(1691), + [428] = { + [sym_parenthesized_expression] = STATE(716), + [anon_sym_LPAREN2] = ACTIONS(994), [sym_comment] = ACTIONS(39), }, - [440] = { - [anon_sym_LPAREN] = ACTIONS(1693), + [429] = { + [sym_compound_statement] = STATE(717), + [sym_labeled_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_if_statement] = STATE(717), + [sym_switch_statement] = STATE(717), + [sym_case_statement] = STATE(717), + [sym_while_statement] = STATE(717), + [sym_do_statement] = STATE(717), + [sym_for_statement] = STATE(717), + [sym_return_statement] = STATE(717), + [sym_break_statement] = STATE(717), + [sym_continue_statement] = STATE(717), + [sym_goto_statement] = STATE(717), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1030), [sym_comment] = ACTIONS(39), }, - [441] = { - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_COLON] = ACTIONS(1695), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), + [430] = { + [anon_sym_LPAREN2] = ACTIONS(1658), [sym_comment] = ACTIONS(39), }, - [442] = { - [anon_sym_while] = ACTIONS(1697), + [431] = { + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1660), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), [sym_comment] = ACTIONS(39), }, - [443] = { - [sym_declaration] = STATE(726), - [sym__declaration_specifiers] = STATE(716), + [432] = { + [anon_sym_while] = ACTIONS(1662), + [sym_comment] = ACTIONS(39), + }, + [433] = { + [sym_declaration] = STATE(721), + [sym__declaration_specifiers] = STATE(710), [sym_storage_class_specifier] = STATE(96), [sym_type_qualifier] = STATE(96), [sym__type_specifier] = STATE(95), @@ -17957,32 +17991,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(95), [sym_struct_specifier] = STATE(95), [sym_union_specifier] = STATE(95), - [sym__expression] = STATE(728), - [sym_conditional_expression] = STATE(728), - [sym_assignment_expression] = STATE(728), - [sym_pointer_expression] = STATE(728), - [sym_logical_expression] = STATE(728), - [sym_bitwise_expression] = STATE(728), - [sym_equality_expression] = STATE(728), - [sym_relational_expression] = STATE(728), - [sym_shift_expression] = STATE(728), - [sym_math_expression] = STATE(728), - [sym_cast_expression] = STATE(728), - [sym_sizeof_expression] = STATE(728), - [sym_subscript_expression] = STATE(728), - [sym_call_expression] = STATE(728), - [sym_field_expression] = STATE(728), - [sym_compound_literal_expression] = STATE(728), - [sym_parenthesized_expression] = STATE(728), - [sym_char_literal] = STATE(728), - [sym_concatenated_string] = STATE(728), - [sym_string_literal] = STATE(378), + [sym__expression] = STATE(723), + [sym_conditional_expression] = STATE(723), + [sym_assignment_expression] = STATE(723), + [sym_pointer_expression] = STATE(723), + [sym_logical_expression] = STATE(723), + [sym_bitwise_expression] = STATE(723), + [sym_equality_expression] = STATE(723), + [sym_relational_expression] = STATE(723), + [sym_shift_expression] = STATE(723), + [sym_math_expression] = STATE(723), + [sym_cast_expression] = STATE(723), + [sym_sizeof_expression] = STATE(723), + [sym_subscript_expression] = STATE(723), + [sym_call_expression] = STATE(723), + [sym_field_expression] = STATE(723), + [sym_compound_literal_expression] = STATE(723), + [sym_parenthesized_expression] = STATE(723), + [sym_char_literal] = STATE(723), + [sym_concatenated_string] = STATE(723), + [sym_string_literal] = STATE(376), [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -18007,406 +18041,406 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1701), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1703), - [sym_false] = ACTIONS(1703), - [sym_null] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1705), + [sym_true] = ACTIONS(1668), + [sym_false] = ACTIONS(1668), + [sym_null] = ACTIONS(1668), + [sym_identifier] = ACTIONS(1670), [sym_comment] = ACTIONS(39), }, - [444] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1709), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1707), - [sym_preproc_directive] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_auto] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_case] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_goto] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1709), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_sizeof] = ACTIONS(1707), - [sym_number_literal] = ACTIONS(1709), - [anon_sym_SQUOTE] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1707), + [434] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1672), + [sym_preproc_directive] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_else] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1672), [sym_comment] = ACTIONS(39), }, - [445] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [435] = { + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [446] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1715), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1713), - [sym_preproc_directive] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_typedef] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1713), - [anon_sym_auto] = ACTIONS(1713), - [anon_sym_register] = ACTIONS(1713), - [anon_sym_inline] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_restrict] = ACTIONS(1713), - [anon_sym_volatile] = ACTIONS(1713), - [anon_sym__Atomic] = ACTIONS(1713), - [anon_sym_unsigned] = ACTIONS(1713), - [anon_sym_long] = ACTIONS(1713), - [anon_sym_short] = ACTIONS(1713), - [sym_primitive_type] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_else] = ACTIONS(1713), - [anon_sym_switch] = ACTIONS(1713), - [anon_sym_case] = ACTIONS(1713), - [anon_sym_default] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_do] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_goto] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1713), - [sym_number_literal] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym_true] = ACTIONS(1713), - [sym_false] = ACTIONS(1713), - [sym_null] = ACTIONS(1713), - [sym_identifier] = ACTIONS(1713), + [436] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1678), + [sym_preproc_directive] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_typedef] = ACTIONS(1678), + [anon_sym_extern] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_LPAREN2] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_static] = ACTIONS(1678), + [anon_sym_auto] = ACTIONS(1678), + [anon_sym_register] = ACTIONS(1678), + [anon_sym_inline] = ACTIONS(1678), + [anon_sym_const] = ACTIONS(1678), + [anon_sym_restrict] = ACTIONS(1678), + [anon_sym_volatile] = ACTIONS(1678), + [anon_sym__Atomic] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), + [sym_primitive_type] = ACTIONS(1678), + [anon_sym_enum] = ACTIONS(1678), + [anon_sym_struct] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_else] = ACTIONS(1678), + [anon_sym_switch] = ACTIONS(1678), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1678), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1678), + [anon_sym_break] = ACTIONS(1678), + [anon_sym_continue] = ACTIONS(1678), + [anon_sym_goto] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_TILDE] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_DASH_DASH] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_number_literal] = ACTIONS(1680), + [anon_sym_SQUOTE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1680), + [sym_true] = ACTIONS(1678), + [sym_false] = ACTIONS(1678), + [sym_null] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1678), [sym_comment] = ACTIONS(39), }, - [447] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1719), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1717), - [sym_preproc_directive] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_typedef] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_static] = ACTIONS(1717), - [anon_sym_auto] = ACTIONS(1717), - [anon_sym_register] = ACTIONS(1717), - [anon_sym_inline] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_restrict] = ACTIONS(1717), - [anon_sym_volatile] = ACTIONS(1717), - [anon_sym__Atomic] = ACTIONS(1717), - [anon_sym_unsigned] = ACTIONS(1717), - [anon_sym_long] = ACTIONS(1717), - [anon_sym_short] = ACTIONS(1717), - [sym_primitive_type] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_union] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_switch] = ACTIONS(1717), - [anon_sym_case] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_goto] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1719), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1719), - [anon_sym_SQUOTE] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym_true] = ACTIONS(1717), - [sym_false] = ACTIONS(1717), - [sym_null] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1717), + [437] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1682), + [sym_preproc_directive] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_typedef] = ACTIONS(1682), + [anon_sym_extern] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN2] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_static] = ACTIONS(1682), + [anon_sym_auto] = ACTIONS(1682), + [anon_sym_register] = ACTIONS(1682), + [anon_sym_inline] = ACTIONS(1682), + [anon_sym_const] = ACTIONS(1682), + [anon_sym_restrict] = ACTIONS(1682), + [anon_sym_volatile] = ACTIONS(1682), + [anon_sym__Atomic] = ACTIONS(1682), + [anon_sym_unsigned] = ACTIONS(1682), + [anon_sym_long] = ACTIONS(1682), + [anon_sym_short] = ACTIONS(1682), + [sym_primitive_type] = ACTIONS(1682), + [anon_sym_enum] = ACTIONS(1682), + [anon_sym_struct] = ACTIONS(1682), + [anon_sym_union] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_switch] = ACTIONS(1682), + [anon_sym_case] = ACTIONS(1682), + [anon_sym_default] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_do] = ACTIONS(1682), + [anon_sym_for] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_goto] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_TILDE] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_sizeof] = ACTIONS(1682), + [sym_number_literal] = ACTIONS(1684), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE] = ACTIONS(1684), + [sym_true] = ACTIONS(1682), + [sym_false] = ACTIONS(1682), + [sym_null] = ACTIONS(1682), + [sym_identifier] = ACTIONS(1682), [sym_comment] = ACTIONS(39), }, - [448] = { - [anon_sym_SEMI] = ACTIONS(1721), + [438] = { + [anon_sym_SEMI] = ACTIONS(1686), [sym_comment] = ACTIONS(39), }, - [449] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1723), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(1723), - [anon_sym_EQ] = ACTIONS(1725), - [anon_sym_COLON] = ACTIONS(1723), - [anon_sym_QMARK] = ACTIONS(1723), - [anon_sym_STAR_EQ] = ACTIONS(1723), - [anon_sym_SLASH_EQ] = ACTIONS(1723), - [anon_sym_PERCENT_EQ] = ACTIONS(1723), - [anon_sym_PLUS_EQ] = ACTIONS(1723), - [anon_sym_DASH_EQ] = ACTIONS(1723), - [anon_sym_LT_LT_EQ] = ACTIONS(1723), - [anon_sym_GT_GT_EQ] = ACTIONS(1723), - [anon_sym_AMP_EQ] = ACTIONS(1723), - [anon_sym_CARET_EQ] = ACTIONS(1723), - [anon_sym_PIPE_EQ] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_PIPE_PIPE] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_EQ_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_GT] = ACTIONS(1725), - [anon_sym_LT_EQ] = ACTIONS(1723), - [anon_sym_GT_EQ] = ACTIONS(1723), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_PLUS_PLUS] = ACTIONS(1723), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [439] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1688), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(1688), + [anon_sym_EQ] = ACTIONS(1690), + [anon_sym_COLON] = ACTIONS(1688), + [anon_sym_QMARK] = ACTIONS(1688), + [anon_sym_STAR_EQ] = ACTIONS(1688), + [anon_sym_SLASH_EQ] = ACTIONS(1688), + [anon_sym_PERCENT_EQ] = ACTIONS(1688), + [anon_sym_PLUS_EQ] = ACTIONS(1688), + [anon_sym_DASH_EQ] = ACTIONS(1688), + [anon_sym_LT_LT_EQ] = ACTIONS(1688), + [anon_sym_GT_GT_EQ] = ACTIONS(1688), + [anon_sym_AMP_EQ] = ACTIONS(1688), + [anon_sym_CARET_EQ] = ACTIONS(1688), + [anon_sym_PIPE_EQ] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_PIPE_PIPE] = ACTIONS(1688), + [anon_sym_AMP_AMP] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1690), + [anon_sym_CARET] = ACTIONS(1690), + [anon_sym_EQ_EQ] = ACTIONS(1688), + [anon_sym_BANG_EQ] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1690), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_LT_EQ] = ACTIONS(1688), + [anon_sym_GT_EQ] = ACTIONS(1688), + [anon_sym_LT_LT] = ACTIONS(1690), + [anon_sym_GT_GT] = ACTIONS(1690), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_SLASH] = ACTIONS(1690), + [anon_sym_PERCENT] = ACTIONS(1690), + [anon_sym_DASH_DASH] = ACTIONS(1688), + [anon_sym_PLUS_PLUS] = ACTIONS(1688), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [450] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(1727), - [anon_sym_EQ] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1727), - [anon_sym_QMARK] = ACTIONS(1727), - [anon_sym_STAR_EQ] = ACTIONS(1727), - [anon_sym_SLASH_EQ] = ACTIONS(1727), - [anon_sym_PERCENT_EQ] = ACTIONS(1727), - [anon_sym_PLUS_EQ] = ACTIONS(1727), - [anon_sym_DASH_EQ] = ACTIONS(1727), - [anon_sym_LT_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_GT_EQ] = ACTIONS(1727), - [anon_sym_AMP_EQ] = ACTIONS(1727), - [anon_sym_CARET_EQ] = ACTIONS(1727), - [anon_sym_PIPE_EQ] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1727), - [anon_sym_AMP_AMP] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [440] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1692), + [anon_sym_RPAREN] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(1692), + [anon_sym_EQ] = ACTIONS(1694), + [anon_sym_COLON] = ACTIONS(1692), + [anon_sym_QMARK] = ACTIONS(1692), + [anon_sym_STAR_EQ] = ACTIONS(1692), + [anon_sym_SLASH_EQ] = ACTIONS(1692), + [anon_sym_PERCENT_EQ] = ACTIONS(1692), + [anon_sym_PLUS_EQ] = ACTIONS(1692), + [anon_sym_DASH_EQ] = ACTIONS(1692), + [anon_sym_LT_LT_EQ] = ACTIONS(1692), + [anon_sym_GT_GT_EQ] = ACTIONS(1692), + [anon_sym_AMP_EQ] = ACTIONS(1692), + [anon_sym_CARET_EQ] = ACTIONS(1692), + [anon_sym_PIPE_EQ] = ACTIONS(1692), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_PIPE_PIPE] = ACTIONS(1692), + [anon_sym_AMP_AMP] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1694), + [anon_sym_CARET] = ACTIONS(1694), + [anon_sym_EQ_EQ] = ACTIONS(1692), + [anon_sym_BANG_EQ] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_GT] = ACTIONS(1694), + [anon_sym_LT_EQ] = ACTIONS(1692), + [anon_sym_GT_EQ] = ACTIONS(1692), + [anon_sym_LT_LT] = ACTIONS(1694), + [anon_sym_GT_GT] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_SLASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1694), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [451] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1731), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(1731), - [anon_sym_EQ] = ACTIONS(1733), - [anon_sym_COLON] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_STAR_EQ] = ACTIONS(1731), - [anon_sym_SLASH_EQ] = ACTIONS(1731), - [anon_sym_PERCENT_EQ] = ACTIONS(1731), - [anon_sym_PLUS_EQ] = ACTIONS(1731), - [anon_sym_DASH_EQ] = ACTIONS(1731), - [anon_sym_LT_LT_EQ] = ACTIONS(1731), - [anon_sym_GT_GT_EQ] = ACTIONS(1731), - [anon_sym_AMP_EQ] = ACTIONS(1731), - [anon_sym_CARET_EQ] = ACTIONS(1731), - [anon_sym_PIPE_EQ] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_EQ_EQ] = ACTIONS(1731), - [anon_sym_BANG_EQ] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1731), - [anon_sym_GT_EQ] = ACTIONS(1731), - [anon_sym_LT_LT] = ACTIONS(1733), - [anon_sym_GT_GT] = ACTIONS(1733), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_PERCENT] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [441] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_EQ] = ACTIONS(1698), + [anon_sym_COLON] = ACTIONS(1696), + [anon_sym_QMARK] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_LT_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_GT_EQ] = ACTIONS(1696), + [anon_sym_AMP_EQ] = ACTIONS(1696), + [anon_sym_CARET_EQ] = ACTIONS(1696), + [anon_sym_PIPE_EQ] = ACTIONS(1696), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1698), + [anon_sym_CARET] = ACTIONS(1698), + [anon_sym_EQ_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [452] = { + [442] = { [sym_type_qualifier] = STATE(118), [sym__type_specifier] = STATE(116), [sym_sized_type_specifier] = STATE(116), [sym_enum_specifier] = STATE(116), [sym_struct_specifier] = STATE(116), [sym_union_specifier] = STATE(116), - [sym__expression] = STATE(415), - [sym_comma_expression] = STATE(416), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_pointer_expression] = STATE(415), - [sym_logical_expression] = STATE(415), - [sym_bitwise_expression] = STATE(415), - [sym_equality_expression] = STATE(415), - [sym_relational_expression] = STATE(415), - [sym_shift_expression] = STATE(415), - [sym_math_expression] = STATE(415), - [sym_cast_expression] = STATE(415), - [sym_type_descriptor] = STATE(731), - [sym_sizeof_expression] = STATE(415), - [sym_subscript_expression] = STATE(415), - [sym_call_expression] = STATE(415), - [sym_field_expression] = STATE(415), - [sym_compound_literal_expression] = STATE(415), - [sym_parenthesized_expression] = STATE(415), - [sym_char_literal] = STATE(415), - [sym_concatenated_string] = STATE(415), - [sym_string_literal] = STATE(418), + [sym__expression] = STATE(406), + [sym_comma_expression] = STATE(407), + [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_type_descriptor] = STATE(726), + [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(409), [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -18418,147 +18452,407 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_identifier] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), [sym_comment] = ACTIONS(39), }, - [453] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1737), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_STAR_EQ] = ACTIONS(1735), - [anon_sym_SLASH_EQ] = ACTIONS(1735), - [anon_sym_PERCENT_EQ] = ACTIONS(1735), - [anon_sym_PLUS_EQ] = ACTIONS(1735), - [anon_sym_DASH_EQ] = ACTIONS(1735), - [anon_sym_LT_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_GT_EQ] = ACTIONS(1735), - [anon_sym_AMP_EQ] = ACTIONS(1735), - [anon_sym_CARET_EQ] = ACTIONS(1735), - [anon_sym_PIPE_EQ] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(1735), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [443] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1702), + [anon_sym_QMARK] = ACTIONS(1700), + [anon_sym_STAR_EQ] = ACTIONS(1700), + [anon_sym_SLASH_EQ] = ACTIONS(1700), + [anon_sym_PERCENT_EQ] = ACTIONS(1700), + [anon_sym_PLUS_EQ] = ACTIONS(1700), + [anon_sym_DASH_EQ] = ACTIONS(1700), + [anon_sym_LT_LT_EQ] = ACTIONS(1700), + [anon_sym_GT_GT_EQ] = ACTIONS(1700), + [anon_sym_AMP_EQ] = ACTIONS(1700), + [anon_sym_CARET_EQ] = ACTIONS(1700), + [anon_sym_PIPE_EQ] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1700), + [anon_sym_AMP_AMP] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym_EQ_EQ] = ACTIONS(1700), + [anon_sym_BANG_EQ] = ACTIONS(1700), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1700), + [anon_sym_GT_EQ] = ACTIONS(1700), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [454] = { - [anon_sym_SQUOTE] = ACTIONS(1739), + [444] = { + [anon_sym_SQUOTE] = ACTIONS(1704), [sym_comment] = ACTIONS(39), }, - [455] = { - [sym_compound_statement] = STATE(734), - [sym_labeled_statement] = STATE(734), - [sym_expression_statement] = STATE(734), - [sym_if_statement] = STATE(734), - [sym_switch_statement] = STATE(734), - [sym_case_statement] = STATE(734), - [sym_while_statement] = STATE(734), - [sym_do_statement] = STATE(734), - [sym_for_statement] = STATE(734), - [sym_return_statement] = STATE(734), - [sym_break_statement] = STATE(734), - [sym_continue_statement] = STATE(734), - [sym_goto_statement] = STATE(734), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1741), + [445] = { + [sym_compound_statement] = STATE(728), + [sym_labeled_statement] = STATE(728), + [sym_expression_statement] = STATE(728), + [sym_if_statement] = STATE(728), + [sym_switch_statement] = STATE(728), + [sym_case_statement] = STATE(728), + [sym_while_statement] = STATE(728), + [sym_do_statement] = STATE(728), + [sym_for_statement] = STATE(728), + [sym_return_statement] = STATE(728), + [sym_break_statement] = STATE(728), + [sym_continue_statement] = STATE(728), + [sym_goto_statement] = STATE(728), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1612), [sym_comment] = ACTIONS(39), }, - [456] = { + [446] = { [sym_parameter_list] = STATE(131), [aux_sym_declaration_repeat1] = STATE(132), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(241), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(245), [anon_sym_EQ] = ACTIONS(247), [sym_comment] = ACTIONS(39), }, - [457] = { + [447] = { + [sym__expression] = STATE(729), + [sym_comma_expression] = STATE(730), + [sym_conditional_expression] = STATE(729), + [sym_assignment_expression] = STATE(729), + [sym_pointer_expression] = STATE(729), + [sym_logical_expression] = STATE(729), + [sym_bitwise_expression] = STATE(729), + [sym_equality_expression] = STATE(729), + [sym_relational_expression] = STATE(729), + [sym_shift_expression] = STATE(729), + [sym_math_expression] = STATE(729), + [sym_cast_expression] = STATE(729), + [sym_sizeof_expression] = STATE(729), + [sym_subscript_expression] = STATE(729), + [sym_call_expression] = STATE(729), + [sym_field_expression] = STATE(729), + [sym_compound_literal_expression] = STATE(729), + [sym_parenthesized_expression] = STATE(729), + [sym_char_literal] = STATE(729), + [sym_concatenated_string] = STATE(729), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1708), + [sym_false] = ACTIONS(1708), + [sym_null] = ACTIONS(1708), + [sym_identifier] = ACTIONS(1708), + [sym_comment] = ACTIONS(39), + }, + [448] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1710), + [sym_preproc_directive] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_typedef] = ACTIONS(1710), + [anon_sym_extern] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1712), + [anon_sym_RBRACE] = ACTIONS(1712), + [anon_sym_LPAREN2] = ACTIONS(1712), + [anon_sym_STAR] = ACTIONS(1712), + [anon_sym_static] = ACTIONS(1710), + [anon_sym_auto] = ACTIONS(1710), + [anon_sym_register] = ACTIONS(1710), + [anon_sym_inline] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1710), + [anon_sym_restrict] = ACTIONS(1710), + [anon_sym_volatile] = ACTIONS(1710), + [anon_sym__Atomic] = ACTIONS(1710), + [anon_sym_unsigned] = ACTIONS(1710), + [anon_sym_long] = ACTIONS(1710), + [anon_sym_short] = ACTIONS(1710), + [sym_primitive_type] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1710), + [anon_sym_struct] = ACTIONS(1710), + [anon_sym_union] = ACTIONS(1710), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1710), + [anon_sym_case] = ACTIONS(1710), + [anon_sym_default] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1710), + [anon_sym_do] = ACTIONS(1710), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(1710), + [anon_sym_break] = ACTIONS(1710), + [anon_sym_continue] = ACTIONS(1710), + [anon_sym_goto] = ACTIONS(1710), + [anon_sym_AMP] = ACTIONS(1712), + [anon_sym_BANG] = ACTIONS(1712), + [anon_sym_TILDE] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1712), + [anon_sym_PLUS_PLUS] = ACTIONS(1712), + [anon_sym_sizeof] = ACTIONS(1710), + [sym_number_literal] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_DQUOTE] = ACTIONS(1712), + [sym_true] = ACTIONS(1710), + [sym_false] = ACTIONS(1710), + [sym_null] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1710), + [sym_comment] = ACTIONS(39), + }, + [449] = { + [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(409), + [anon_sym_RPAREN] = ACTIONS(1714), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1718), + [sym_false] = ACTIONS(1718), + [sym_null] = ACTIONS(1718), + [sym_identifier] = ACTIONS(1718), + [sym_comment] = ACTIONS(39), + }, + [450] = { + [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(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_null] = ACTIONS(1722), + [sym_identifier] = ACTIONS(1722), + [sym_comment] = ACTIONS(39), + }, + [451] = { + [sym__expression] = STATE(734), + [sym_conditional_expression] = STATE(734), + [sym_assignment_expression] = STATE(734), + [sym_pointer_expression] = STATE(734), + [sym_logical_expression] = STATE(734), + [sym_bitwise_expression] = STATE(734), + [sym_equality_expression] = STATE(734), + [sym_relational_expression] = STATE(734), + [sym_shift_expression] = STATE(734), + [sym_math_expression] = STATE(734), + [sym_cast_expression] = STATE(734), + [sym_sizeof_expression] = STATE(734), + [sym_subscript_expression] = STATE(734), + [sym_call_expression] = STATE(734), + [sym_field_expression] = STATE(734), + [sym_compound_literal_expression] = STATE(734), + [sym_parenthesized_expression] = STATE(734), + [sym_char_literal] = STATE(734), + [sym_concatenated_string] = STATE(734), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1724), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1726), + [sym_false] = ACTIONS(1726), + [sym_null] = ACTIONS(1726), + [sym_identifier] = ACTIONS(1726), + [sym_comment] = ACTIONS(39), + }, + [452] = { + [sym__expression] = STATE(735), + [sym_conditional_expression] = STATE(735), + [sym_assignment_expression] = STATE(735), + [sym_pointer_expression] = STATE(735), + [sym_logical_expression] = STATE(735), + [sym_bitwise_expression] = STATE(735), + [sym_equality_expression] = STATE(735), + [sym_relational_expression] = STATE(735), + [sym_shift_expression] = STATE(735), + [sym_math_expression] = STATE(735), + [sym_cast_expression] = STATE(735), + [sym_sizeof_expression] = STATE(735), + [sym_subscript_expression] = STATE(735), + [sym_call_expression] = STATE(735), + [sym_field_expression] = STATE(735), + [sym_compound_literal_expression] = STATE(735), + [sym_parenthesized_expression] = STATE(735), + [sym_char_literal] = STATE(735), + [sym_concatenated_string] = STATE(735), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1728), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1730), + [sym_false] = ACTIONS(1730), + [sym_null] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1730), + [sym_comment] = ACTIONS(39), + }, + [453] = { [sym__expression] = STATE(736), [sym_conditional_expression] = STATE(736), [sym_assignment_expression] = STATE(736), @@ -18578,30 +18872,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(736), [sym_char_literal] = STATE(736), [sym_concatenated_string] = STATE(736), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(1743), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(1745), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1747), - [sym_false] = ACTIONS(1747), - [sym_null] = ACTIONS(1747), - [sym_identifier] = ACTIONS(1747), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1734), + [sym_false] = ACTIONS(1734), + [sym_null] = ACTIONS(1734), + [sym_identifier] = ACTIONS(1734), [sym_comment] = ACTIONS(39), }, - [458] = { + [454] = { [sym__expression] = STATE(737), - [sym_comma_expression] = STATE(738), [sym_conditional_expression] = STATE(737), [sym_assignment_expression] = STATE(737), [sym_pointer_expression] = STATE(737), @@ -18620,85 +18912,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(737), [sym_char_literal] = STATE(737), [sym_concatenated_string] = STATE(737), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1749), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1751), - [sym_false] = ACTIONS(1751), - [sym_null] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1751), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1736), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1738), + [sym_false] = ACTIONS(1738), + [sym_null] = ACTIONS(1738), + [sym_identifier] = ACTIONS(1738), [sym_comment] = ACTIONS(39), }, - [459] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1753), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1755), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1753), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1753), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1753), - [sym_preproc_directive] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_typedef] = ACTIONS(1753), - [anon_sym_extern] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_auto] = ACTIONS(1753), - [anon_sym_register] = ACTIONS(1753), - [anon_sym_inline] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_restrict] = ACTIONS(1753), - [anon_sym_volatile] = ACTIONS(1753), - [anon_sym__Atomic] = ACTIONS(1753), - [anon_sym_unsigned] = ACTIONS(1753), - [anon_sym_long] = ACTIONS(1753), - [anon_sym_short] = ACTIONS(1753), - [sym_primitive_type] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_struct] = ACTIONS(1753), - [anon_sym_union] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_else] = ACTIONS(1753), - [anon_sym_switch] = ACTIONS(1753), - [anon_sym_case] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_do] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_goto] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1755), - [anon_sym_TILDE] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1755), - [anon_sym_PLUS_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1753), - [sym_number_literal] = ACTIONS(1755), - [anon_sym_SQUOTE] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [sym_null] = ACTIONS(1753), - [sym_identifier] = ACTIONS(1753), + [455] = { + [sym__expression] = STATE(738), + [sym_conditional_expression] = STATE(738), + [sym_assignment_expression] = STATE(738), + [sym_pointer_expression] = STATE(738), + [sym_logical_expression] = STATE(738), + [sym_bitwise_expression] = STATE(738), + [sym_equality_expression] = STATE(738), + [sym_relational_expression] = STATE(738), + [sym_shift_expression] = STATE(738), + [sym_math_expression] = STATE(738), + [sym_cast_expression] = STATE(738), + [sym_sizeof_expression] = STATE(738), + [sym_subscript_expression] = STATE(738), + [sym_call_expression] = STATE(738), + [sym_field_expression] = STATE(738), + [sym_compound_literal_expression] = STATE(738), + [sym_parenthesized_expression] = STATE(738), + [sym_char_literal] = STATE(738), + [sym_concatenated_string] = STATE(738), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1740), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1742), + [sym_false] = ACTIONS(1742), + [sym_null] = ACTIONS(1742), + [sym_identifier] = ACTIONS(1742), [sym_comment] = ACTIONS(39), }, - [460] = { + [456] = { [sym__expression] = STATE(739), [sym_conditional_expression] = STATE(739), [sym_assignment_expression] = STATE(739), @@ -18718,27 +18992,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(739), [sym_char_literal] = STATE(739), [sym_concatenated_string] = STATE(739), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_identifier] = ACTIONS(1759), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1746), + [sym_false] = ACTIONS(1746), + [sym_null] = ACTIONS(1746), + [sym_identifier] = ACTIONS(1746), [sym_comment] = ACTIONS(39), }, - [461] = { + [457] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -18758,27 +19032,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(740), [sym_char_literal] = STATE(740), [sym_concatenated_string] = STATE(740), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1761), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1763), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1748), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1750), + [sym_false] = ACTIONS(1750), + [sym_null] = ACTIONS(1750), + [sym_identifier] = ACTIONS(1750), [sym_comment] = ACTIONS(39), }, - [462] = { + [458] = { [sym__expression] = STATE(741), [sym_conditional_expression] = STATE(741), [sym_assignment_expression] = STATE(741), @@ -18798,27 +19072,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(741), [sym_char_literal] = STATE(741), [sym_concatenated_string] = STATE(741), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1765), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1767), - [sym_false] = ACTIONS(1767), - [sym_null] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1767), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [sym_null] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1754), [sym_comment] = ACTIONS(39), }, - [463] = { + [459] = { [sym__expression] = STATE(742), [sym_conditional_expression] = STATE(742), [sym_assignment_expression] = STATE(742), @@ -18838,27 +19112,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(742), [sym_char_literal] = STATE(742), [sym_concatenated_string] = STATE(742), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1769), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1771), - [sym_false] = ACTIONS(1771), - [sym_null] = ACTIONS(1771), - [sym_identifier] = ACTIONS(1771), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1756), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1758), + [sym_false] = ACTIONS(1758), + [sym_null] = ACTIONS(1758), + [sym_identifier] = ACTIONS(1758), [sym_comment] = ACTIONS(39), }, - [464] = { + [460] = { [sym__expression] = STATE(743), [sym_conditional_expression] = STATE(743), [sym_assignment_expression] = STATE(743), @@ -18878,27 +19152,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(743), [sym_char_literal] = STATE(743), [sym_concatenated_string] = STATE(743), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1773), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1775), - [sym_false] = ACTIONS(1775), - [sym_null] = ACTIONS(1775), - [sym_identifier] = ACTIONS(1775), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1762), + [sym_false] = ACTIONS(1762), + [sym_null] = ACTIONS(1762), + [sym_identifier] = ACTIONS(1762), [sym_comment] = ACTIONS(39), }, - [465] = { + [461] = { [sym__expression] = STATE(744), [sym_conditional_expression] = STATE(744), [sym_assignment_expression] = STATE(744), @@ -18918,27 +19192,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(744), [sym_char_literal] = STATE(744), [sym_concatenated_string] = STATE(744), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1777), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1779), - [sym_false] = ACTIONS(1779), - [sym_null] = ACTIONS(1779), - [sym_identifier] = ACTIONS(1779), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1766), + [sym_false] = ACTIONS(1766), + [sym_null] = ACTIONS(1766), + [sym_identifier] = ACTIONS(1766), [sym_comment] = ACTIONS(39), }, - [466] = { + [462] = { [sym__expression] = STATE(745), [sym_conditional_expression] = STATE(745), [sym_assignment_expression] = STATE(745), @@ -18958,577 +19232,538 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(745), [sym_char_literal] = STATE(745), [sym_concatenated_string] = STATE(745), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1781), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1783), - [sym_false] = ACTIONS(1783), - [sym_null] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1783), + [sym_string_literal] = STATE(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1770), + [sym_false] = ACTIONS(1770), + [sym_null] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1770), [sym_comment] = ACTIONS(39), }, - [467] = { - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1785), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1787), - [sym_false] = ACTIONS(1787), - [sym_null] = ACTIONS(1787), - [sym_identifier] = ACTIONS(1787), + [463] = { + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LPAREN2] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_EQ] = ACTIONS(1698), + [anon_sym_COLON] = ACTIONS(1696), + [anon_sym_QMARK] = ACTIONS(1696), + [anon_sym_STAR_EQ] = ACTIONS(1696), + [anon_sym_SLASH_EQ] = ACTIONS(1696), + [anon_sym_PERCENT_EQ] = ACTIONS(1696), + [anon_sym_PLUS_EQ] = ACTIONS(1696), + [anon_sym_DASH_EQ] = ACTIONS(1696), + [anon_sym_LT_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_GT_EQ] = ACTIONS(1696), + [anon_sym_AMP_EQ] = ACTIONS(1696), + [anon_sym_CARET_EQ] = ACTIONS(1696), + [anon_sym_PIPE_EQ] = ACTIONS(1696), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_PIPE_PIPE] = ACTIONS(1696), + [anon_sym_AMP_AMP] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1698), + [anon_sym_CARET] = ACTIONS(1698), + [anon_sym_EQ_EQ] = ACTIONS(1696), + [anon_sym_BANG_EQ] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_GT] = ACTIONS(1698), + [anon_sym_LT_EQ] = ACTIONS(1696), + [anon_sym_GT_EQ] = ACTIONS(1696), + [anon_sym_LT_LT] = ACTIONS(1698), + [anon_sym_GT_GT] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1696), + [anon_sym_DASH_GT] = ACTIONS(1696), [sym_comment] = ACTIONS(39), }, - [468] = { - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1789), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1791), - [sym_false] = ACTIONS(1791), - [sym_null] = ACTIONS(1791), - [sym_identifier] = ACTIONS(1791), + [464] = { + [sym_identifier] = ACTIONS(1772), [sym_comment] = ACTIONS(39), }, - [469] = { - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1793), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1795), - [sym_false] = ACTIONS(1795), - [sym_null] = ACTIONS(1795), - [sym_identifier] = ACTIONS(1795), + [465] = { + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1776), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_RBRACK] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1776), + [anon_sym_COLON] = ACTIONS(1774), + [anon_sym_QMARK] = ACTIONS(1774), + [anon_sym_STAR_EQ] = ACTIONS(1774), + [anon_sym_SLASH_EQ] = ACTIONS(1774), + [anon_sym_PERCENT_EQ] = ACTIONS(1774), + [anon_sym_PLUS_EQ] = ACTIONS(1774), + [anon_sym_DASH_EQ] = ACTIONS(1774), + [anon_sym_LT_LT_EQ] = ACTIONS(1774), + [anon_sym_GT_GT_EQ] = ACTIONS(1774), + [anon_sym_AMP_EQ] = ACTIONS(1774), + [anon_sym_CARET_EQ] = ACTIONS(1774), + [anon_sym_PIPE_EQ] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1776), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1776), + [anon_sym_CARET] = ACTIONS(1776), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1776), + [anon_sym_GT] = ACTIONS(1776), + [anon_sym_LT_EQ] = ACTIONS(1774), + [anon_sym_GT_EQ] = ACTIONS(1774), + [anon_sym_LT_LT] = ACTIONS(1776), + [anon_sym_GT_GT] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_SLASH] = ACTIONS(1776), + [anon_sym_PERCENT] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1774), + [anon_sym_DOT] = ACTIONS(1774), + [anon_sym_DASH_GT] = ACTIONS(1774), [sym_comment] = ACTIONS(39), }, - [470] = { - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1797), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_null] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1799), + [466] = { + [sym_string_literal] = STATE(747), + [aux_sym_concatenated_string_repeat1] = STATE(747), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_CARET] = ACTIONS(1780), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1780), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_comment] = ACTIONS(39), + }, + [467] = { + [ts_builtin_sym_end] = ACTIONS(1782), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1784), + [sym_preproc_directive] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_typedef] = ACTIONS(1784), + [anon_sym_extern] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LPAREN2] = ACTIONS(1782), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1784), + [anon_sym_auto] = ACTIONS(1784), + [anon_sym_register] = ACTIONS(1784), + [anon_sym_inline] = ACTIONS(1784), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_restrict] = ACTIONS(1784), + [anon_sym_volatile] = ACTIONS(1784), + [anon_sym__Atomic] = ACTIONS(1784), + [anon_sym_unsigned] = ACTIONS(1784), + [anon_sym_long] = ACTIONS(1784), + [anon_sym_short] = ACTIONS(1784), + [sym_primitive_type] = ACTIONS(1784), + [anon_sym_enum] = ACTIONS(1784), + [anon_sym_struct] = ACTIONS(1784), + [anon_sym_union] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_else] = ACTIONS(1784), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_case] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_goto] = ACTIONS(1784), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1784), + [sym_number_literal] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [sym_true] = ACTIONS(1784), + [sym_false] = ACTIONS(1784), + [sym_null] = ACTIONS(1784), + [sym_identifier] = ACTIONS(1784), + [sym_comment] = ACTIONS(39), + }, + [468] = { + [sym_preproc_include] = STATE(468), + [sym_preproc_def] = STATE(468), + [sym_preproc_function_def] = STATE(468), + [sym_preproc_call] = STATE(468), + [sym_preproc_if_in_compound_statement] = STATE(248), + [sym_preproc_ifdef_in_compound_statement] = STATE(249), + [sym_declaration] = STATE(468), + [sym_type_definition] = STATE(468), + [sym__declaration_specifiers] = STATE(250), + [sym_compound_statement] = STATE(468), + [sym_storage_class_specifier] = STATE(20), + [sym_type_qualifier] = STATE(20), + [sym__type_specifier] = STATE(18), + [sym_sized_type_specifier] = STATE(18), + [sym_enum_specifier] = STATE(18), + [sym_struct_specifier] = STATE(18), + [sym_union_specifier] = STATE(18), + [sym_labeled_statement] = STATE(468), + [sym_expression_statement] = STATE(468), + [sym_if_statement] = STATE(468), + [sym_switch_statement] = STATE(468), + [sym_case_statement] = STATE(468), + [sym_while_statement] = STATE(468), + [sym_do_statement] = STATE(468), + [sym_for_statement] = STATE(468), + [sym_return_statement] = STATE(468), + [sym_break_statement] = STATE(468), + [sym_continue_statement] = STATE(468), + [sym_goto_statement] = STATE(468), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(468), + [sym_macro_type_specifier] = STATE(18), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(468), + [aux_sym__declaration_specifiers_repeat1] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(21), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1789), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1792), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1795), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1798), + [sym_preproc_directive] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_typedef] = ACTIONS(1807), + [anon_sym_extern] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_RBRACE] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR] = ACTIONS(1821), + [anon_sym_static] = ACTIONS(1810), + [anon_sym_auto] = ACTIONS(1810), + [anon_sym_register] = ACTIONS(1810), + [anon_sym_inline] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(1824), + [anon_sym_restrict] = ACTIONS(1824), + [anon_sym_volatile] = ACTIONS(1824), + [anon_sym__Atomic] = ACTIONS(1824), + [anon_sym_unsigned] = ACTIONS(1827), + [anon_sym_long] = ACTIONS(1827), + [anon_sym_short] = ACTIONS(1827), + [sym_primitive_type] = ACTIONS(1830), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(1836), + [anon_sym_union] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_switch] = ACTIONS(1845), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1857), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1869), + [anon_sym_goto] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_BANG] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_sizeof] = ACTIONS(1887), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1896), + [sym_true] = ACTIONS(1899), + [sym_false] = ACTIONS(1899), + [sym_null] = ACTIONS(1899), + [sym_identifier] = ACTIONS(1902), + [sym_comment] = ACTIONS(39), + }, + [469] = { + [sym__declaration_specifiers] = STATE(257), + [sym_storage_class_specifier] = STATE(259), + [sym_type_qualifier] = STATE(259), + [sym__type_specifier] = STATE(258), + [sym_sized_type_specifier] = STATE(258), + [sym_enum_specifier] = STATE(258), + [sym_struct_specifier] = STATE(258), + [sym_union_specifier] = STATE(258), + [sym_parameter_declaration] = STATE(748), + [sym_macro_type_specifier] = STATE(258), + [aux_sym__declaration_specifiers_repeat1] = STATE(259), + [aux_sym_sized_type_specifier_repeat1] = STATE(260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(602), + [anon_sym_long] = ACTIONS(602), + [anon_sym_short] = ACTIONS(602), + [sym_primitive_type] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [sym_identifier] = ACTIONS(37), + [sym_comment] = ACTIONS(39), + }, + [470] = { + [anon_sym_COMMA] = ACTIONS(1907), + [anon_sym_RPAREN] = ACTIONS(1907), + [anon_sym_SEMI] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_LPAREN2] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1907), + [anon_sym_EQ] = ACTIONS(1907), + [anon_sym_COLON] = ACTIONS(1907), [sym_comment] = ACTIONS(39), }, [471] = { - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1803), - [sym_false] = ACTIONS(1803), - [sym_null] = ACTIONS(1803), - [sym_identifier] = ACTIONS(1803), + [aux_sym_parameter_list_repeat1] = STATE(750), + [anon_sym_COMMA] = ACTIONS(1134), + [anon_sym_RPAREN] = ACTIONS(1909), [sym_comment] = ACTIONS(39), }, [472] = { - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_null] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1807), + [sym__declaration_specifiers] = STATE(257), + [sym__declarator] = STATE(121), + [sym__abstract_declarator] = STATE(385), + [sym_pointer_declarator] = STATE(121), + [sym_abstract_pointer_declarator] = STATE(385), + [sym_function_declarator] = STATE(121), + [sym_abstract_function_declarator] = STATE(385), + [sym_array_declarator] = STATE(121), + [sym_abstract_array_declarator] = STATE(385), + [sym_storage_class_specifier] = STATE(259), + [sym_type_qualifier] = STATE(259), + [sym__type_specifier] = STATE(258), + [sym_sized_type_specifier] = STATE(258), + [sym_enum_specifier] = STATE(258), + [sym_struct_specifier] = STATE(258), + [sym_union_specifier] = STATE(258), + [sym_parameter_list] = STATE(212), + [sym_parameter_declaration] = STATE(255), + [sym_macro_type_specifier] = STATE(258), + [aux_sym__declaration_specifiers_repeat1] = STATE(259), + [aux_sym_sized_type_specifier_repeat1] = STATE(260), + [anon_sym_DOT_DOT_DOT] = ACTIONS(598), + [anon_sym_RPAREN] = ACTIONS(600), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(602), + [anon_sym_long] = ACTIONS(602), + [anon_sym_short] = ACTIONS(602), + [sym_primitive_type] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [sym_identifier] = ACTIONS(1913), [sym_comment] = ACTIONS(39), }, [473] = { - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_COMMA] = ACTIONS(1731), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_RBRACK] = ACTIONS(1731), - [anon_sym_EQ] = ACTIONS(1733), - [anon_sym_COLON] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_STAR_EQ] = ACTIONS(1731), - [anon_sym_SLASH_EQ] = ACTIONS(1731), - [anon_sym_PERCENT_EQ] = ACTIONS(1731), - [anon_sym_PLUS_EQ] = ACTIONS(1731), - [anon_sym_DASH_EQ] = ACTIONS(1731), - [anon_sym_LT_LT_EQ] = ACTIONS(1731), - [anon_sym_GT_GT_EQ] = ACTIONS(1731), - [anon_sym_AMP_EQ] = ACTIONS(1731), - [anon_sym_CARET_EQ] = ACTIONS(1731), - [anon_sym_PIPE_EQ] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1733), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_EQ_EQ] = ACTIONS(1731), - [anon_sym_BANG_EQ] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1731), - [anon_sym_GT_EQ] = ACTIONS(1731), - [anon_sym_LT_LT] = ACTIONS(1733), - [anon_sym_GT_GT] = ACTIONS(1733), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_PERCENT] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1731), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DOT] = ACTIONS(1731), - [anon_sym_DASH_GT] = ACTIONS(1731), + [sym__declarator] = STATE(122), + [sym__abstract_declarator] = STATE(386), + [sym_pointer_declarator] = STATE(122), + [sym_abstract_pointer_declarator] = STATE(386), + [sym_function_declarator] = STATE(122), + [sym_abstract_function_declarator] = STATE(386), + [sym_array_declarator] = STATE(122), + [sym_abstract_array_declarator] = STATE(386), + [sym_type_qualifier] = STATE(753), + [sym_parameter_list] = STATE(212), + [aux_sym_type_definition_repeat1] = STATE(753), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_LPAREN2] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(235), [sym_comment] = ACTIONS(39), }, [474] = { - [sym_identifier] = ACTIONS(1809), + [sym_parameter_list] = STATE(131), + [anon_sym_COMMA] = ACTIONS(1915), + [anon_sym_RPAREN] = ACTIONS(1915), + [anon_sym_LPAREN2] = ACTIONS(243), + [anon_sym_LBRACK] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, [475] = { - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_COMMA] = ACTIONS(1811), - [anon_sym_RPAREN] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_RBRACK] = ACTIONS(1811), - [anon_sym_EQ] = ACTIONS(1813), - [anon_sym_COLON] = ACTIONS(1811), - [anon_sym_QMARK] = ACTIONS(1811), - [anon_sym_STAR_EQ] = ACTIONS(1811), - [anon_sym_SLASH_EQ] = ACTIONS(1811), - [anon_sym_PERCENT_EQ] = ACTIONS(1811), - [anon_sym_PLUS_EQ] = ACTIONS(1811), - [anon_sym_DASH_EQ] = ACTIONS(1811), - [anon_sym_LT_LT_EQ] = ACTIONS(1811), - [anon_sym_GT_GT_EQ] = ACTIONS(1811), - [anon_sym_AMP_EQ] = ACTIONS(1811), - [anon_sym_CARET_EQ] = ACTIONS(1811), - [anon_sym_PIPE_EQ] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_PIPE_PIPE] = ACTIONS(1811), - [anon_sym_AMP_AMP] = ACTIONS(1811), - [anon_sym_PIPE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_EQ_EQ] = ACTIONS(1811), - [anon_sym_BANG_EQ] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_GT] = ACTIONS(1813), - [anon_sym_LT_EQ] = ACTIONS(1811), - [anon_sym_GT_EQ] = ACTIONS(1811), - [anon_sym_LT_LT] = ACTIONS(1813), - [anon_sym_GT_GT] = ACTIONS(1813), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_SLASH] = ACTIONS(1813), - [anon_sym_PERCENT] = ACTIONS(1813), - [anon_sym_DASH_DASH] = ACTIONS(1811), - [anon_sym_PLUS_PLUS] = ACTIONS(1811), - [anon_sym_DOT] = ACTIONS(1811), - [anon_sym_DASH_GT] = ACTIONS(1811), + [sym_parameter_list] = STATE(392), + [anon_sym_COMMA] = ACTIONS(1915), + [anon_sym_RPAREN] = ACTIONS(1915), + [anon_sym_LPAREN2] = ACTIONS(243), + [anon_sym_LBRACK] = ACTIONS(935), [sym_comment] = ACTIONS(39), }, [476] = { - [sym_string_literal] = STATE(753), - [aux_sym_concatenated_string_repeat1] = STATE(753), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_COMMA] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_QMARK] = ACTIONS(1815), - [anon_sym_STAR_EQ] = ACTIONS(1815), - [anon_sym_SLASH_EQ] = ACTIONS(1815), - [anon_sym_PERCENT_EQ] = ACTIONS(1815), - [anon_sym_PLUS_EQ] = ACTIONS(1815), - [anon_sym_DASH_EQ] = ACTIONS(1815), - [anon_sym_LT_LT_EQ] = ACTIONS(1815), - [anon_sym_GT_GT_EQ] = ACTIONS(1815), - [anon_sym_AMP_EQ] = ACTIONS(1815), - [anon_sym_CARET_EQ] = ACTIONS(1815), - [anon_sym_PIPE_EQ] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1815), - [anon_sym_AMP_AMP] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1815), - [anon_sym_BANG_EQ] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1815), - [anon_sym_GT_EQ] = ACTIONS(1815), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_DASH_GT] = ACTIONS(1815), - [anon_sym_DQUOTE] = ACTIONS(41), + [sym_storage_class_specifier] = STATE(754), + [sym_type_qualifier] = STATE(754), + [aux_sym__declaration_specifiers_repeat1] = STATE(754), + [anon_sym_COMMA] = ACTIONS(249), + [anon_sym_RPAREN] = ACTIONS(249), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(251), [sym_comment] = ACTIONS(39), }, [477] = { - [ts_builtin_sym_end] = ACTIONS(1819), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1821), - [anon_sym_LPAREN] = ACTIONS(1819), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1821), - [sym_preproc_directive] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_typedef] = ACTIONS(1821), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_static] = ACTIONS(1821), - [anon_sym_auto] = ACTIONS(1821), - [anon_sym_register] = ACTIONS(1821), - [anon_sym_inline] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_restrict] = ACTIONS(1821), - [anon_sym_volatile] = ACTIONS(1821), - [anon_sym__Atomic] = ACTIONS(1821), - [anon_sym_unsigned] = ACTIONS(1821), - [anon_sym_long] = ACTIONS(1821), - [anon_sym_short] = ACTIONS(1821), - [sym_primitive_type] = ACTIONS(1821), - [anon_sym_enum] = ACTIONS(1821), - [anon_sym_struct] = ACTIONS(1821), - [anon_sym_union] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_else] = ACTIONS(1821), - [anon_sym_switch] = ACTIONS(1821), - [anon_sym_case] = ACTIONS(1821), - [anon_sym_default] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_do] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_goto] = ACTIONS(1821), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1819), - [anon_sym_sizeof] = ACTIONS(1821), - [sym_number_literal] = ACTIONS(1819), - [anon_sym_SQUOTE] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym_true] = ACTIONS(1821), - [sym_false] = ACTIONS(1821), - [sym_null] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1821), + [sym_storage_class_specifier] = STATE(755), + [sym_type_qualifier] = STATE(755), + [aux_sym__declaration_specifiers_repeat1] = STATE(755), + [anon_sym_COMMA] = ACTIONS(249), + [anon_sym_RPAREN] = ACTIONS(249), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(249), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(251), [sym_comment] = ACTIONS(39), }, [478] = { - [sym_preproc_include] = STATE(478), - [sym_preproc_def] = STATE(478), - [sym_preproc_function_def] = STATE(478), - [sym_preproc_call] = STATE(478), - [sym_preproc_if_in_compound_statement] = STATE(255), - [sym_preproc_ifdef_in_compound_statement] = STATE(256), - [sym_declaration] = STATE(478), - [sym_type_definition] = STATE(478), - [sym__declaration_specifiers] = STATE(257), - [sym_compound_statement] = STATE(478), - [sym_storage_class_specifier] = STATE(20), - [sym_type_qualifier] = STATE(20), - [sym__type_specifier] = STATE(18), - [sym_sized_type_specifier] = STATE(18), - [sym_enum_specifier] = STATE(18), - [sym_struct_specifier] = STATE(18), - [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [sym__empty_declaration] = STATE(478), - [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(478), - [aux_sym__declaration_specifiers_repeat1] = STATE(20), - [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1829), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1832), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1835), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1838), - [sym_preproc_directive] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_typedef] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_static] = ACTIONS(1850), - [anon_sym_auto] = ACTIONS(1850), - [anon_sym_register] = ACTIONS(1850), - [anon_sym_inline] = ACTIONS(1850), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_restrict] = ACTIONS(1861), - [anon_sym_volatile] = ACTIONS(1861), - [anon_sym__Atomic] = ACTIONS(1861), - [anon_sym_unsigned] = ACTIONS(1864), - [anon_sym_long] = ACTIONS(1864), - [anon_sym_short] = ACTIONS(1864), - [sym_primitive_type] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1870), - [anon_sym_struct] = ACTIONS(1873), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_switch] = ACTIONS(1882), - [anon_sym_case] = ACTIONS(1885), - [anon_sym_default] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1906), - [anon_sym_goto] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_PLUS] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_sizeof] = ACTIONS(1924), - [sym_number_literal] = ACTIONS(1927), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym_true] = ACTIONS(1936), - [sym_false] = ACTIONS(1936), - [sym_null] = ACTIONS(1936), - [sym_identifier] = ACTIONS(1939), + [aux_sym_sized_type_specifier_repeat1] = STATE(478), + [anon_sym_COMMA] = ACTIONS(319), + [anon_sym_RPAREN] = ACTIONS(319), + [anon_sym_extern] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(319), + [anon_sym_static] = ACTIONS(321), + [anon_sym_auto] = ACTIONS(321), + [anon_sym_register] = ACTIONS(321), + [anon_sym_inline] = ACTIONS(321), + [anon_sym_const] = ACTIONS(321), + [anon_sym_restrict] = ACTIONS(321), + [anon_sym_volatile] = ACTIONS(321), + [anon_sym__Atomic] = ACTIONS(321), + [anon_sym_unsigned] = ACTIONS(1917), + [anon_sym_long] = ACTIONS(1917), + [anon_sym_short] = ACTIONS(1917), + [sym_primitive_type] = ACTIONS(321), + [sym_identifier] = ACTIONS(321), [sym_comment] = ACTIONS(39), }, [479] = { - [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1920), [sym_comment] = ACTIONS(39), }, [480] = { @@ -19538,33 +19773,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(116), [sym_struct_specifier] = STATE(116), [sym_union_specifier] = STATE(116), - [sym__expression] = STATE(415), - [sym_comma_expression] = STATE(416), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_pointer_expression] = STATE(415), - [sym_logical_expression] = STATE(415), - [sym_bitwise_expression] = STATE(415), - [sym_equality_expression] = STATE(415), - [sym_relational_expression] = STATE(415), - [sym_shift_expression] = STATE(415), - [sym_math_expression] = STATE(415), - [sym_cast_expression] = STATE(415), - [sym_type_descriptor] = STATE(755), - [sym_sizeof_expression] = STATE(415), - [sym_subscript_expression] = STATE(415), - [sym_call_expression] = STATE(415), - [sym_field_expression] = STATE(415), - [sym_compound_literal_expression] = STATE(415), - [sym_parenthesized_expression] = STATE(415), - [sym_char_literal] = STATE(415), - [sym_concatenated_string] = STATE(415), - [sym_string_literal] = STATE(418), + [sym__expression] = STATE(406), + [sym_comma_expression] = STATE(407), + [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_type_descriptor] = STATE(757), + [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(409), [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -19576,121 +19811,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_identifier] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), [sym_comment] = ACTIONS(39), }, [481] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(1735), - [anon_sym_EQ] = ACTIONS(1737), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_STAR_EQ] = ACTIONS(1735), - [anon_sym_SLASH_EQ] = ACTIONS(1735), - [anon_sym_PERCENT_EQ] = ACTIONS(1735), - [anon_sym_PLUS_EQ] = ACTIONS(1735), - [anon_sym_DASH_EQ] = ACTIONS(1735), - [anon_sym_LT_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_GT_EQ] = ACTIONS(1735), - [anon_sym_AMP_EQ] = ACTIONS(1735), - [anon_sym_CARET_EQ] = ACTIONS(1735), - [anon_sym_PIPE_EQ] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(1735), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(1700), + [anon_sym_EQ] = ACTIONS(1702), + [anon_sym_QMARK] = ACTIONS(1700), + [anon_sym_STAR_EQ] = ACTIONS(1700), + [anon_sym_SLASH_EQ] = ACTIONS(1700), + [anon_sym_PERCENT_EQ] = ACTIONS(1700), + [anon_sym_PLUS_EQ] = ACTIONS(1700), + [anon_sym_DASH_EQ] = ACTIONS(1700), + [anon_sym_LT_LT_EQ] = ACTIONS(1700), + [anon_sym_GT_GT_EQ] = ACTIONS(1700), + [anon_sym_AMP_EQ] = ACTIONS(1700), + [anon_sym_CARET_EQ] = ACTIONS(1700), + [anon_sym_PIPE_EQ] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1700), + [anon_sym_AMP_AMP] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym_EQ_EQ] = ACTIONS(1700), + [anon_sym_BANG_EQ] = ACTIONS(1700), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1700), + [anon_sym_GT_EQ] = ACTIONS(1700), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [482] = { - [anon_sym_LPAREN] = ACTIONS(1944), - [anon_sym_COMMA] = ACTIONS(1944), - [anon_sym_RPAREN] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1944), - [anon_sym_EQ] = ACTIONS(1944), + [anon_sym_COMMA] = ACTIONS(1922), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_LPAREN2] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_EQ] = ACTIONS(1922), [sym_comment] = ACTIONS(39), }, [483] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(1946), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(1924), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [484] = { - [sym_storage_class_specifier] = STATE(757), - [sym_type_qualifier] = STATE(757), - [aux_sym__declaration_specifiers_repeat1] = STATE(757), - [anon_sym_LPAREN] = ACTIONS(249), + [sym_storage_class_specifier] = STATE(759), + [sym_type_qualifier] = STATE(759), + [aux_sym__declaration_specifiers_repeat1] = STATE(759), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(249), [anon_sym_STAR] = ACTIONS(249), [anon_sym_RBRACK] = ACTIONS(249), [anon_sym_static] = ACTIONS(23), @@ -19719,126 +19954,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [485] = { - [sym__expression] = STATE(739), - [sym_conditional_expression] = STATE(739), - [sym_assignment_expression] = STATE(739), - [sym_pointer_expression] = STATE(739), - [sym_logical_expression] = STATE(739), - [sym_bitwise_expression] = STATE(739), - [sym_equality_expression] = STATE(739), - [sym_relational_expression] = STATE(739), - [sym_shift_expression] = STATE(739), - [sym_math_expression] = STATE(739), - [sym_cast_expression] = STATE(739), - [sym_sizeof_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_call_expression] = STATE(739), - [sym_field_expression] = STATE(739), - [sym_compound_literal_expression] = STATE(739), - [sym_parenthesized_expression] = STATE(739), - [sym_char_literal] = STATE(739), - [sym_concatenated_string] = STATE(739), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_identifier] = ACTIONS(1759), + [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(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_null] = ACTIONS(1722), + [sym_identifier] = ACTIONS(1722), [sym_comment] = ACTIONS(39), }, [486] = { - [sym__expression] = STATE(758), - [sym_conditional_expression] = STATE(758), - [sym_assignment_expression] = STATE(758), - [sym_pointer_expression] = STATE(758), - [sym_logical_expression] = STATE(758), - [sym_bitwise_expression] = STATE(758), - [sym_equality_expression] = STATE(758), - [sym_relational_expression] = STATE(758), - [sym_shift_expression] = STATE(758), - [sym_math_expression] = STATE(758), - [sym_cast_expression] = STATE(758), - [sym_sizeof_expression] = STATE(758), - [sym_subscript_expression] = STATE(758), - [sym_call_expression] = STATE(758), - [sym_field_expression] = STATE(758), - [sym_compound_literal_expression] = STATE(758), - [sym_parenthesized_expression] = STATE(758), - [sym_char_literal] = STATE(758), - [sym_concatenated_string] = STATE(758), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1950), - [sym_false] = ACTIONS(1950), - [sym_null] = ACTIONS(1950), - [sym_identifier] = ACTIONS(1950), - [sym_comment] = ACTIONS(39), - }, - [487] = { - [sym__expression] = STATE(759), - [sym_conditional_expression] = STATE(759), - [sym_assignment_expression] = STATE(759), - [sym_pointer_expression] = STATE(759), - [sym_logical_expression] = STATE(759), - [sym_bitwise_expression] = STATE(759), - [sym_equality_expression] = STATE(759), - [sym_relational_expression] = STATE(759), - [sym_shift_expression] = STATE(759), - [sym_math_expression] = STATE(759), - [sym_cast_expression] = STATE(759), - [sym_sizeof_expression] = STATE(759), - [sym_subscript_expression] = STATE(759), - [sym_call_expression] = STATE(759), - [sym_field_expression] = STATE(759), - [sym_compound_literal_expression] = STATE(759), - [sym_parenthesized_expression] = STATE(759), - [sym_char_literal] = STATE(759), - [sym_concatenated_string] = STATE(759), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1954), - [sym_false] = ACTIONS(1954), - [sym_null] = ACTIONS(1954), - [sym_identifier] = ACTIONS(1954), - [sym_comment] = ACTIONS(39), - }, - [488] = { [sym__expression] = STATE(760), [sym_conditional_expression] = STATE(760), [sym_assignment_expression] = STATE(760), @@ -19858,27 +20013,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(760), [sym_char_literal] = STATE(760), [sym_concatenated_string] = STATE(760), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1956), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1958), - [sym_false] = ACTIONS(1958), - [sym_null] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1958), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1928), + [sym_false] = ACTIONS(1928), + [sym_null] = ACTIONS(1928), + [sym_identifier] = ACTIONS(1928), [sym_comment] = ACTIONS(39), }, - [489] = { + [487] = { [sym__expression] = STATE(761), [sym_conditional_expression] = STATE(761), [sym_assignment_expression] = STATE(761), @@ -19898,27 +20053,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(761), [sym_char_literal] = STATE(761), [sym_concatenated_string] = STATE(761), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1960), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1962), - [sym_false] = ACTIONS(1962), - [sym_null] = ACTIONS(1962), - [sym_identifier] = ACTIONS(1962), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_identifier] = ACTIONS(1932), [sym_comment] = ACTIONS(39), }, - [490] = { + [488] = { [sym__expression] = STATE(762), [sym_conditional_expression] = STATE(762), [sym_assignment_expression] = STATE(762), @@ -19938,27 +20093,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(762), [sym_char_literal] = STATE(762), [sym_concatenated_string] = STATE(762), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1964), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1966), - [sym_false] = ACTIONS(1966), - [sym_null] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1966), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_null] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1936), [sym_comment] = ACTIONS(39), }, - [491] = { + [489] = { [sym__expression] = STATE(763), [sym_conditional_expression] = STATE(763), [sym_assignment_expression] = STATE(763), @@ -19978,27 +20133,27 @@ 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(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1968), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1970), - [sym_false] = ACTIONS(1970), - [sym_null] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1970), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_identifier] = ACTIONS(1940), [sym_comment] = ACTIONS(39), }, - [492] = { + [490] = { [sym__expression] = STATE(764), [sym_conditional_expression] = STATE(764), [sym_assignment_expression] = STATE(764), @@ -20018,27 +20173,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(764), [sym_char_literal] = STATE(764), [sym_concatenated_string] = STATE(764), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [sym_null] = ACTIONS(1974), - [sym_identifier] = ACTIONS(1974), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [sym_null] = ACTIONS(1944), + [sym_identifier] = ACTIONS(1944), [sym_comment] = ACTIONS(39), }, - [493] = { + [491] = { [sym__expression] = STATE(765), [sym_conditional_expression] = STATE(765), [sym_assignment_expression] = STATE(765), @@ -20058,27 +20213,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(765), [sym_char_literal] = STATE(765), [sym_concatenated_string] = STATE(765), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1976), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1978), - [sym_false] = ACTIONS(1978), - [sym_null] = ACTIONS(1978), - [sym_identifier] = ACTIONS(1978), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_identifier] = ACTIONS(1948), [sym_comment] = ACTIONS(39), }, - [494] = { + [492] = { [sym__expression] = STATE(766), [sym_conditional_expression] = STATE(766), [sym_assignment_expression] = STATE(766), @@ -20098,27 +20253,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(766), [sym_char_literal] = STATE(766), [sym_concatenated_string] = STATE(766), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1980), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1982), - [sym_false] = ACTIONS(1982), - [sym_null] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1982), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1952), + [sym_false] = ACTIONS(1952), + [sym_null] = ACTIONS(1952), + [sym_identifier] = ACTIONS(1952), [sym_comment] = ACTIONS(39), }, - [495] = { + [493] = { [sym__expression] = STATE(767), [sym_conditional_expression] = STATE(767), [sym_assignment_expression] = STATE(767), @@ -20138,27 +20293,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(767), [sym_char_literal] = STATE(767), [sym_concatenated_string] = STATE(767), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1984), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1986), - [sym_false] = ACTIONS(1986), - [sym_null] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1986), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1954), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1956), + [sym_false] = ACTIONS(1956), + [sym_null] = ACTIONS(1956), + [sym_identifier] = ACTIONS(1956), [sym_comment] = ACTIONS(39), }, - [496] = { + [494] = { [sym__expression] = STATE(768), [sym_conditional_expression] = STATE(768), [sym_assignment_expression] = STATE(768), @@ -20178,75 +20333,155 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(768), [sym_char_literal] = STATE(768), [sym_concatenated_string] = STATE(768), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1990), - [sym_false] = ACTIONS(1990), - [sym_null] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1990), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1960), + [sym_false] = ACTIONS(1960), + [sym_null] = ACTIONS(1960), + [sym_identifier] = ACTIONS(1960), + [sym_comment] = ACTIONS(39), + }, + [495] = { + [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(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1962), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1964), + [sym_false] = ACTIONS(1964), + [sym_null] = ACTIONS(1964), + [sym_identifier] = ACTIONS(1964), + [sym_comment] = ACTIONS(39), + }, + [496] = { + [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(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1968), [sym_comment] = ACTIONS(39), }, [497] = { - [sym_string_literal] = STATE(769), - [aux_sym_concatenated_string_repeat1] = STATE(769), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_RBRACK] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_QMARK] = ACTIONS(1815), - [anon_sym_STAR_EQ] = ACTIONS(1815), - [anon_sym_SLASH_EQ] = ACTIONS(1815), - [anon_sym_PERCENT_EQ] = ACTIONS(1815), - [anon_sym_PLUS_EQ] = ACTIONS(1815), - [anon_sym_DASH_EQ] = ACTIONS(1815), - [anon_sym_LT_LT_EQ] = ACTIONS(1815), - [anon_sym_GT_GT_EQ] = ACTIONS(1815), - [anon_sym_AMP_EQ] = ACTIONS(1815), - [anon_sym_CARET_EQ] = ACTIONS(1815), - [anon_sym_PIPE_EQ] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1815), - [anon_sym_AMP_AMP] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1815), - [anon_sym_BANG_EQ] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1815), - [anon_sym_GT_EQ] = ACTIONS(1815), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_DASH_GT] = ACTIONS(1815), + [sym_string_literal] = STATE(771), + [aux_sym_concatenated_string_repeat1] = STATE(771), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_RBRACK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_CARET] = ACTIONS(1780), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1780), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, [498] = { - [sym_storage_class_specifier] = STATE(770), - [sym_type_qualifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(770), - [anon_sym_LPAREN] = ACTIONS(249), + [sym_storage_class_specifier] = STATE(772), + [sym_type_qualifier] = STATE(772), + [aux_sym__declaration_specifiers_repeat1] = STATE(772), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(249), [anon_sym_STAR] = ACTIONS(249), [anon_sym_RBRACK] = ACTIONS(249), [anon_sym_static] = ACTIONS(23), @@ -20276,8 +20511,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [499] = { [aux_sym_sized_type_specifier_repeat1] = STATE(499), - [anon_sym_LPAREN] = ACTIONS(319), [anon_sym_extern] = ACTIONS(321), + [anon_sym_LPAREN2] = ACTIONS(319), [anon_sym_STAR] = ACTIONS(319), [anon_sym_RBRACK] = ACTIONS(319), [anon_sym_static] = ACTIONS(321), @@ -20288,9 +20523,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(321), [anon_sym_volatile] = ACTIONS(321), [anon_sym__Atomic] = ACTIONS(321), - [anon_sym_unsigned] = ACTIONS(1992), - [anon_sym_long] = ACTIONS(1992), - [anon_sym_short] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1970), + [anon_sym_long] = ACTIONS(1970), + [anon_sym_short] = ACTIONS(1970), [sym_primitive_type] = ACTIONS(321), [anon_sym_AMP] = ACTIONS(319), [anon_sym_BANG] = ACTIONS(319), @@ -20310,239 +20545,234 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [500] = { - [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_RBRACE] = ACTIONS(1973), [sym_comment] = ACTIONS(39), }, [501] = { - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_COMMA] = ACTIONS(1997), - [anon_sym_RPAREN] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1999), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_RBRACK] = ACTIONS(1997), - [anon_sym_EQ] = ACTIONS(1999), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1997), - [anon_sym_STAR_EQ] = ACTIONS(1997), - [anon_sym_SLASH_EQ] = ACTIONS(1997), - [anon_sym_PERCENT_EQ] = ACTIONS(1997), - [anon_sym_PLUS_EQ] = ACTIONS(1997), - [anon_sym_DASH_EQ] = ACTIONS(1997), - [anon_sym_LT_LT_EQ] = ACTIONS(1997), - [anon_sym_GT_GT_EQ] = ACTIONS(1997), - [anon_sym_AMP_EQ] = ACTIONS(1997), - [anon_sym_CARET_EQ] = ACTIONS(1997), - [anon_sym_PIPE_EQ] = ACTIONS(1997), - [anon_sym_AMP] = ACTIONS(1999), - [anon_sym_PIPE_PIPE] = ACTIONS(1997), - [anon_sym_AMP_AMP] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_CARET] = ACTIONS(1999), - [anon_sym_EQ_EQ] = ACTIONS(1997), - [anon_sym_BANG_EQ] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1999), - [anon_sym_GT] = ACTIONS(1999), - [anon_sym_LT_EQ] = ACTIONS(1997), - [anon_sym_GT_EQ] = ACTIONS(1997), - [anon_sym_LT_LT] = ACTIONS(1999), - [anon_sym_GT_GT] = ACTIONS(1999), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_SLASH] = ACTIONS(1999), - [anon_sym_PERCENT] = ACTIONS(1999), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_DOT] = ACTIONS(1997), - [anon_sym_DASH_GT] = ACTIONS(1997), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_LPAREN2] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_COLON] = ACTIONS(1975), + [anon_sym_QMARK] = ACTIONS(1975), + [anon_sym_STAR_EQ] = ACTIONS(1975), + [anon_sym_SLASH_EQ] = ACTIONS(1975), + [anon_sym_PERCENT_EQ] = ACTIONS(1975), + [anon_sym_PLUS_EQ] = ACTIONS(1975), + [anon_sym_DASH_EQ] = ACTIONS(1975), + [anon_sym_LT_LT_EQ] = ACTIONS(1975), + [anon_sym_GT_GT_EQ] = ACTIONS(1975), + [anon_sym_AMP_EQ] = ACTIONS(1975), + [anon_sym_CARET_EQ] = ACTIONS(1975), + [anon_sym_PIPE_EQ] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_PIPE] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1977), + [anon_sym_EQ_EQ] = ACTIONS(1975), + [anon_sym_BANG_EQ] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1977), + [anon_sym_GT] = ACTIONS(1977), + [anon_sym_LT_EQ] = ACTIONS(1975), + [anon_sym_GT_EQ] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1977), + [anon_sym_GT_GT] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_SLASH] = ACTIONS(1977), + [anon_sym_PERCENT] = ACTIONS(1977), + [anon_sym_DASH_DASH] = ACTIONS(1975), + [anon_sym_PLUS_PLUS] = ACTIONS(1975), + [anon_sym_DOT] = ACTIONS(1975), + [anon_sym_DASH_GT] = ACTIONS(1975), [sym_comment] = ACTIONS(39), }, [502] = { - [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(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(2001), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2003), - [sym_false] = ACTIONS(2003), - [sym_null] = ACTIONS(2003), - [sym_identifier] = ACTIONS(2003), + [sym__expression] = STATE(774), + [sym_conditional_expression] = STATE(774), + [sym_assignment_expression] = STATE(774), + [sym_pointer_expression] = STATE(774), + [sym_logical_expression] = STATE(774), + [sym_bitwise_expression] = STATE(774), + [sym_equality_expression] = STATE(774), + [sym_relational_expression] = STATE(774), + [sym_shift_expression] = STATE(774), + [sym_math_expression] = STATE(774), + [sym_cast_expression] = STATE(774), + [sym_sizeof_expression] = STATE(774), + [sym_subscript_expression] = STATE(774), + [sym_call_expression] = STATE(774), + [sym_field_expression] = STATE(774), + [sym_compound_literal_expression] = STATE(774), + [sym_parenthesized_expression] = STATE(774), + [sym_char_literal] = STATE(774), + [sym_concatenated_string] = STATE(774), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(1979), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1981), + [sym_false] = ACTIONS(1981), + [sym_null] = ACTIONS(1981), + [sym_identifier] = ACTIONS(1981), [sym_comment] = ACTIONS(39), }, [503] = { - [sym_identifier] = ACTIONS(2005), + [sym_identifier] = ACTIONS(1983), [sym_comment] = ACTIONS(39), }, [504] = { - [sym_argument_list] = STATE(475), - [aux_sym_initializer_list_repeat1] = STATE(775), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(1995), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1361), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_STAR_EQ] = ACTIONS(1365), - [anon_sym_SLASH_EQ] = ACTIONS(1365), - [anon_sym_PERCENT_EQ] = ACTIONS(1365), - [anon_sym_PLUS_EQ] = ACTIONS(1365), - [anon_sym_DASH_EQ] = ACTIONS(1365), - [anon_sym_LT_LT_EQ] = ACTIONS(1365), - [anon_sym_GT_GT_EQ] = ACTIONS(1365), - [anon_sym_AMP_EQ] = ACTIONS(1365), - [anon_sym_CARET_EQ] = ACTIONS(1365), - [anon_sym_PIPE_EQ] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1371), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_EQ_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(1381), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [aux_sym_initializer_list_repeat1] = STATE(777), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(1355), + [anon_sym_STAR_EQ] = ACTIONS(1357), + [anon_sym_SLASH_EQ] = ACTIONS(1357), + [anon_sym_PERCENT_EQ] = ACTIONS(1357), + [anon_sym_PLUS_EQ] = ACTIONS(1357), + [anon_sym_DASH_EQ] = ACTIONS(1357), + [anon_sym_LT_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_GT_EQ] = ACTIONS(1357), + [anon_sym_AMP_EQ] = ACTIONS(1357), + [anon_sym_CARET_EQ] = ACTIONS(1357), + [anon_sym_PIPE_EQ] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1365), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [505] = { - [aux_sym_initializer_list_repeat1] = STATE(775), - [anon_sym_COMMA] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(1995), + [aux_sym_initializer_list_repeat1] = STATE(777), + [anon_sym_COMMA] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(1973), [sym_comment] = ACTIONS(39), }, [506] = { - [sym_subscript_designator] = STATE(777), - [sym_field_designator] = STATE(777), - [aux_sym_initializer_pair_repeat1] = STATE(777), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_EQ] = ACTIONS(2009), - [anon_sym_DOT] = ACTIONS(1206), + [sym_subscript_designator] = STATE(779), + [sym_field_designator] = STATE(779), + [aux_sym_initializer_pair_repeat1] = STATE(779), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_EQ] = ACTIONS(1987), + [anon_sym_DOT] = ACTIONS(1204), [sym_comment] = ACTIONS(39), }, [507] = { - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(1989), + [anon_sym_RPAREN] = ACTIONS(1989), [sym_comment] = ACTIONS(39), }, [508] = { - [anon_sym_LF] = ACTIONS(2013), - [sym_preproc_arg] = ACTIONS(2013), + [anon_sym_LF] = ACTIONS(1991), + [sym_preproc_arg] = ACTIONS(1991), [sym_comment] = ACTIONS(49), }, [509] = { [aux_sym_preproc_params_repeat1] = STATE(509), - [anon_sym_COMMA] = ACTIONS(2015), - [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_COMMA] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(1989), [sym_comment] = ACTIONS(39), }, [510] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(650), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(652), - [sym_preproc_directive] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_typedef] = ACTIONS(652), - [anon_sym_extern] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_static] = ACTIONS(652), - [anon_sym_auto] = ACTIONS(652), - [anon_sym_register] = ACTIONS(652), - [anon_sym_inline] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_restrict] = ACTIONS(652), - [anon_sym_volatile] = ACTIONS(652), - [anon_sym__Atomic] = ACTIONS(652), - [anon_sym_unsigned] = ACTIONS(652), - [anon_sym_long] = ACTIONS(652), - [anon_sym_short] = ACTIONS(652), - [sym_primitive_type] = ACTIONS(652), - [anon_sym_enum] = ACTIONS(652), - [anon_sym_struct] = ACTIONS(652), - [anon_sym_union] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_switch] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_do] = ACTIONS(652), - [anon_sym_for] = ACTIONS(652), - [anon_sym_return] = ACTIONS(652), - [anon_sym_break] = ACTIONS(652), - [anon_sym_continue] = ACTIONS(652), - [anon_sym_goto] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_sizeof] = ACTIONS(652), - [sym_number_literal] = ACTIONS(650), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_DQUOTE] = ACTIONS(650), - [sym_true] = ACTIONS(652), - [sym_false] = ACTIONS(652), - [sym_null] = ACTIONS(652), - [sym_identifier] = ACTIONS(652), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(654), + [sym_preproc_directive] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_typedef] = ACTIONS(654), + [anon_sym_extern] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_static] = ACTIONS(654), + [anon_sym_auto] = ACTIONS(654), + [anon_sym_register] = ACTIONS(654), + [anon_sym_inline] = ACTIONS(654), + [anon_sym_const] = ACTIONS(654), + [anon_sym_restrict] = ACTIONS(654), + [anon_sym_volatile] = ACTIONS(654), + [anon_sym__Atomic] = ACTIONS(654), + [anon_sym_unsigned] = ACTIONS(654), + [anon_sym_long] = ACTIONS(654), + [anon_sym_short] = ACTIONS(654), + [sym_primitive_type] = ACTIONS(654), + [anon_sym_enum] = ACTIONS(654), + [anon_sym_struct] = ACTIONS(654), + [anon_sym_union] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_break] = ACTIONS(654), + [anon_sym_continue] = ACTIONS(654), + [anon_sym_goto] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(652), + [anon_sym_sizeof] = ACTIONS(654), + [sym_number_literal] = ACTIONS(652), + [anon_sym_SQUOTE] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(652), + [sym_true] = ACTIONS(654), + [sym_false] = ACTIONS(654), + [sym_null] = ACTIONS(654), + [sym_identifier] = ACTIONS(654), [sym_comment] = ACTIONS(39), }, [511] = { - [anon_sym_LF] = ACTIONS(2018), - [sym_comment] = ACTIONS(49), - }, - [512] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(672), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(670), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(672), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(672), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(672), @@ -20554,6 +20784,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(672), [anon_sym_extern] = ACTIONS(672), [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_LPAREN2] = ACTIONS(670), [anon_sym_STAR] = ACTIONS(670), [anon_sym_static] = ACTIONS(672), [anon_sym_auto] = ACTIONS(672), @@ -20598,116 +20829,174 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(672), [sym_comment] = ACTIONS(39), }, + [512] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(676), + [sym_preproc_directive] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(674), + [anon_sym_typedef] = ACTIONS(676), + [anon_sym_extern] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(674), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_static] = ACTIONS(676), + [anon_sym_auto] = ACTIONS(676), + [anon_sym_register] = ACTIONS(676), + [anon_sym_inline] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_restrict] = ACTIONS(676), + [anon_sym_volatile] = ACTIONS(676), + [anon_sym__Atomic] = ACTIONS(676), + [anon_sym_unsigned] = ACTIONS(676), + [anon_sym_long] = ACTIONS(676), + [anon_sym_short] = ACTIONS(676), + [sym_primitive_type] = ACTIONS(676), + [anon_sym_enum] = ACTIONS(676), + [anon_sym_struct] = ACTIONS(676), + [anon_sym_union] = ACTIONS(676), + [anon_sym_if] = ACTIONS(676), + [anon_sym_switch] = ACTIONS(676), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(676), + [anon_sym_while] = ACTIONS(676), + [anon_sym_do] = ACTIONS(676), + [anon_sym_for] = ACTIONS(676), + [anon_sym_return] = ACTIONS(676), + [anon_sym_break] = ACTIONS(676), + [anon_sym_continue] = ACTIONS(676), + [anon_sym_goto] = ACTIONS(676), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(674), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_DQUOTE] = ACTIONS(674), + [sym_true] = ACTIONS(676), + [sym_false] = ACTIONS(676), + [sym_null] = ACTIONS(676), + [sym_identifier] = ACTIONS(676), + [sym_comment] = ACTIONS(39), + }, [513] = { - [anon_sym_LF] = ACTIONS(2020), + [anon_sym_LF] = ACTIONS(1996), [sym_comment] = ACTIONS(49), }, [514] = { - [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_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), - [sym_identifier] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(730), + [sym_preproc_directive] = ACTIONS(730), + [anon_sym_typedef] = ACTIONS(730), + [anon_sym_extern] = ACTIONS(730), + [anon_sym_static] = ACTIONS(730), + [anon_sym_auto] = ACTIONS(730), + [anon_sym_register] = ACTIONS(730), + [anon_sym_inline] = ACTIONS(730), + [anon_sym_const] = ACTIONS(730), + [anon_sym_restrict] = ACTIONS(730), + [anon_sym_volatile] = ACTIONS(730), + [anon_sym__Atomic] = ACTIONS(730), + [anon_sym_unsigned] = ACTIONS(730), + [anon_sym_long] = ACTIONS(730), + [anon_sym_short] = ACTIONS(730), + [sym_primitive_type] = ACTIONS(730), + [anon_sym_enum] = ACTIONS(730), + [anon_sym_struct] = ACTIONS(730), + [anon_sym_union] = ACTIONS(730), + [sym_identifier] = ACTIONS(730), [sym_comment] = ACTIONS(39), }, [515] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2022), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1998), [sym_comment] = ACTIONS(39), }, [516] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(762), - [sym_preproc_directive] = ACTIONS(762), - [anon_sym_typedef] = ACTIONS(762), - [anon_sym_extern] = ACTIONS(762), - [anon_sym_static] = ACTIONS(762), - [anon_sym_auto] = ACTIONS(762), - [anon_sym_register] = ACTIONS(762), - [anon_sym_inline] = ACTIONS(762), - [anon_sym_const] = ACTIONS(762), - [anon_sym_restrict] = ACTIONS(762), - [anon_sym_volatile] = ACTIONS(762), - [anon_sym__Atomic] = ACTIONS(762), - [anon_sym_unsigned] = ACTIONS(762), - [anon_sym_long] = ACTIONS(762), - [anon_sym_short] = ACTIONS(762), - [sym_primitive_type] = ACTIONS(762), - [anon_sym_enum] = ACTIONS(762), - [anon_sym_struct] = ACTIONS(762), - [anon_sym_union] = ACTIONS(762), - [sym_identifier] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(766), + [sym_preproc_directive] = ACTIONS(766), + [anon_sym_typedef] = ACTIONS(766), + [anon_sym_extern] = ACTIONS(766), + [anon_sym_static] = ACTIONS(766), + [anon_sym_auto] = ACTIONS(766), + [anon_sym_register] = ACTIONS(766), + [anon_sym_inline] = ACTIONS(766), + [anon_sym_const] = ACTIONS(766), + [anon_sym_restrict] = ACTIONS(766), + [anon_sym_volatile] = ACTIONS(766), + [anon_sym__Atomic] = ACTIONS(766), + [anon_sym_unsigned] = ACTIONS(766), + [anon_sym_long] = ACTIONS(766), + [anon_sym_short] = ACTIONS(766), + [sym_primitive_type] = ACTIONS(766), + [anon_sym_enum] = ACTIONS(766), + [anon_sym_struct] = ACTIONS(766), + [anon_sym_union] = ACTIONS(766), + [sym_identifier] = ACTIONS(766), [sym_comment] = ACTIONS(39), }, [517] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2000), [sym_comment] = ACTIONS(39), }, [518] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(768), - [sym_preproc_directive] = ACTIONS(768), - [anon_sym_typedef] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(768), - [anon_sym_static] = ACTIONS(768), - [anon_sym_auto] = ACTIONS(768), - [anon_sym_register] = ACTIONS(768), - [anon_sym_inline] = ACTIONS(768), - [anon_sym_const] = ACTIONS(768), - [anon_sym_restrict] = ACTIONS(768), - [anon_sym_volatile] = ACTIONS(768), - [anon_sym__Atomic] = ACTIONS(768), - [anon_sym_unsigned] = ACTIONS(768), - [anon_sym_long] = ACTIONS(768), - [anon_sym_short] = ACTIONS(768), - [sym_primitive_type] = ACTIONS(768), - [anon_sym_enum] = ACTIONS(768), - [anon_sym_struct] = ACTIONS(768), - [anon_sym_union] = ACTIONS(768), - [sym_identifier] = ACTIONS(768), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(772), + [sym_preproc_directive] = ACTIONS(772), + [anon_sym_typedef] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_static] = ACTIONS(772), + [anon_sym_auto] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_inline] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_restrict] = ACTIONS(772), + [anon_sym_volatile] = ACTIONS(772), + [anon_sym__Atomic] = ACTIONS(772), + [anon_sym_unsigned] = ACTIONS(772), + [anon_sym_long] = ACTIONS(772), + [anon_sym_short] = ACTIONS(772), + [sym_primitive_type] = ACTIONS(772), + [anon_sym_enum] = ACTIONS(772), + [anon_sym_struct] = ACTIONS(772), + [anon_sym_union] = ACTIONS(772), + [sym_identifier] = ACTIONS(772), [sym_comment] = ACTIONS(39), }, [519] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2026), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2002), [sym_comment] = ACTIONS(39), }, [520] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(328), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(326), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(328), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(328), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(328), @@ -20717,6 +21006,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(328), [anon_sym_extern] = ACTIONS(328), [anon_sym_LBRACE] = ACTIONS(326), + [anon_sym_LPAREN2] = ACTIONS(326), [anon_sym_STAR] = ACTIONS(326), [anon_sym_static] = ACTIONS(328), [anon_sym_auto] = ACTIONS(328), @@ -20763,75 +21053,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [521] = { [aux_sym_string_literal_repeat1] = STATE(136), - [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2004), [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(332), [sym_escape_sequence] = ACTIONS(334), [sym_comment] = ACTIONS(49), }, [522] = { - [sym_preproc_arg] = ACTIONS(2030), - [sym_comment] = ACTIONS(49), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(338), + [sym_preproc_directive] = ACTIONS(338), + [anon_sym_SEMI] = ACTIONS(336), + [anon_sym_typedef] = ACTIONS(338), + [anon_sym_extern] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_LPAREN2] = ACTIONS(336), + [anon_sym_STAR] = ACTIONS(336), + [anon_sym_static] = ACTIONS(338), + [anon_sym_auto] = ACTIONS(338), + [anon_sym_register] = ACTIONS(338), + [anon_sym_inline] = ACTIONS(338), + [anon_sym_const] = ACTIONS(338), + [anon_sym_restrict] = ACTIONS(338), + [anon_sym_volatile] = ACTIONS(338), + [anon_sym__Atomic] = ACTIONS(338), + [anon_sym_unsigned] = ACTIONS(338), + [anon_sym_long] = ACTIONS(338), + [anon_sym_short] = ACTIONS(338), + [sym_primitive_type] = ACTIONS(338), + [anon_sym_enum] = ACTIONS(338), + [anon_sym_struct] = ACTIONS(338), + [anon_sym_union] = ACTIONS(338), + [anon_sym_if] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(338), + [anon_sym_case] = ACTIONS(338), + [anon_sym_default] = ACTIONS(338), + [anon_sym_while] = ACTIONS(338), + [anon_sym_do] = ACTIONS(338), + [anon_sym_for] = ACTIONS(338), + [anon_sym_return] = ACTIONS(338), + [anon_sym_break] = ACTIONS(338), + [anon_sym_continue] = ACTIONS(338), + [anon_sym_goto] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(336), + [anon_sym_TILDE] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_DASH_DASH] = ACTIONS(336), + [anon_sym_PLUS_PLUS] = ACTIONS(336), + [anon_sym_sizeof] = ACTIONS(338), + [sym_number_literal] = ACTIONS(336), + [anon_sym_SQUOTE] = ACTIONS(336), + [anon_sym_DQUOTE] = ACTIONS(336), + [sym_true] = ACTIONS(338), + [sym_false] = ACTIONS(338), + [sym_null] = ACTIONS(338), + [sym_identifier] = ACTIONS(338), + [sym_comment] = ACTIONS(39), }, [523] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(340), - [sym_preproc_directive] = ACTIONS(340), - [anon_sym_SEMI] = ACTIONS(338), - [anon_sym_typedef] = ACTIONS(340), - [anon_sym_extern] = ACTIONS(340), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(338), - [anon_sym_static] = ACTIONS(340), - [anon_sym_auto] = ACTIONS(340), - [anon_sym_register] = ACTIONS(340), - [anon_sym_inline] = ACTIONS(340), - [anon_sym_const] = ACTIONS(340), - [anon_sym_restrict] = ACTIONS(340), - [anon_sym_volatile] = ACTIONS(340), - [anon_sym__Atomic] = ACTIONS(340), - [anon_sym_unsigned] = ACTIONS(340), - [anon_sym_long] = ACTIONS(340), - [anon_sym_short] = ACTIONS(340), - [sym_primitive_type] = ACTIONS(340), - [anon_sym_enum] = ACTIONS(340), - [anon_sym_struct] = ACTIONS(340), - [anon_sym_union] = ACTIONS(340), - [anon_sym_if] = ACTIONS(340), - [anon_sym_switch] = ACTIONS(340), - [anon_sym_case] = ACTIONS(340), - [anon_sym_default] = ACTIONS(340), - [anon_sym_while] = ACTIONS(340), - [anon_sym_do] = ACTIONS(340), - [anon_sym_for] = ACTIONS(340), - [anon_sym_return] = ACTIONS(340), - [anon_sym_break] = ACTIONS(340), - [anon_sym_continue] = ACTIONS(340), - [anon_sym_goto] = ACTIONS(340), - [anon_sym_AMP] = ACTIONS(338), - [anon_sym_BANG] = ACTIONS(338), - [anon_sym_TILDE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(340), - [anon_sym_DASH] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(338), - [anon_sym_PLUS_PLUS] = ACTIONS(338), - [anon_sym_sizeof] = ACTIONS(340), - [sym_number_literal] = ACTIONS(338), - [anon_sym_SQUOTE] = ACTIONS(338), - [anon_sym_DQUOTE] = ACTIONS(338), - [sym_true] = ACTIONS(340), - [sym_false] = ACTIONS(340), - [sym_null] = ACTIONS(340), - [sym_identifier] = ACTIONS(340), - [sym_comment] = ACTIONS(39), + [anon_sym_LF] = ACTIONS(2006), + [sym_comment] = ACTIONS(49), }, [524] = { - [anon_sym_LF] = ACTIONS(2032), - [sym_preproc_arg] = ACTIONS(2034), + [anon_sym_LF] = ACTIONS(2008), + [sym_preproc_arg] = ACTIONS(2010), [sym_comment] = ACTIONS(49), }, [525] = { @@ -20863,7 +21153,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [526] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2012), [sym_comment] = ACTIONS(39), }, [527] = { @@ -20873,8 +21163,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(169), [sym_preproc_if] = STATE(169), [sym_preproc_ifdef] = STATE(169), - [sym_preproc_else] = STATE(788), - [sym_preproc_elif] = STATE(788), + [sym_preproc_else] = STATE(789), + [sym_preproc_elif] = STATE(789), [sym_function_definition] = STATE(169), [sym_declaration] = STATE(169), [sym_type_definition] = STATE(169), @@ -20895,7 +21185,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2038), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2014), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), @@ -20950,7 +21240,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [529] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2016), [sym_comment] = ACTIONS(39), }, [530] = { @@ -20960,8 +21250,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(169), [sym_preproc_if] = STATE(169), [sym_preproc_ifdef] = STATE(169), - [sym_preproc_else] = STATE(790), - [sym_preproc_elif] = STATE(790), + [sym_preproc_else] = STATE(791), + [sym_preproc_elif] = STATE(791), [sym_function_definition] = STATE(169), [sym_declaration] = STATE(169), [sym_type_definition] = STATE(169), @@ -20982,7 +21272,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2042), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2018), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), @@ -21037,7 +21327,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [532] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2044), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2020), [sym_comment] = ACTIONS(39), }, [533] = { @@ -21047,8 +21337,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(169), [sym_preproc_if] = STATE(169), [sym_preproc_ifdef] = STATE(169), - [sym_preproc_else] = STATE(792), - [sym_preproc_elif] = STATE(792), + [sym_preproc_else] = STATE(793), + [sym_preproc_elif] = STATE(793), [sym_function_definition] = STATE(169), [sym_declaration] = STATE(169), [sym_type_definition] = STATE(169), @@ -21069,7 +21359,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2046), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2022), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(141), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(143), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(145), @@ -21096,14 +21386,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [534] = { - [anon_sym_LF] = ACTIONS(2048), - [sym_comment] = ACTIONS(49), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(418), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(418), + [sym_preproc_directive] = ACTIONS(418), + [anon_sym_SEMI] = ACTIONS(416), + [anon_sym_typedef] = ACTIONS(418), + [anon_sym_extern] = ACTIONS(418), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_LPAREN2] = ACTIONS(416), + [anon_sym_STAR] = ACTIONS(416), + [anon_sym_static] = ACTIONS(418), + [anon_sym_auto] = ACTIONS(418), + [anon_sym_register] = ACTIONS(418), + [anon_sym_inline] = ACTIONS(418), + [anon_sym_const] = ACTIONS(418), + [anon_sym_restrict] = ACTIONS(418), + [anon_sym_volatile] = ACTIONS(418), + [anon_sym__Atomic] = ACTIONS(418), + [anon_sym_unsigned] = ACTIONS(418), + [anon_sym_long] = ACTIONS(418), + [anon_sym_short] = ACTIONS(418), + [sym_primitive_type] = ACTIONS(418), + [anon_sym_enum] = ACTIONS(418), + [anon_sym_struct] = ACTIONS(418), + [anon_sym_union] = ACTIONS(418), + [anon_sym_if] = ACTIONS(418), + [anon_sym_switch] = ACTIONS(418), + [anon_sym_case] = ACTIONS(418), + [anon_sym_default] = ACTIONS(418), + [anon_sym_while] = ACTIONS(418), + [anon_sym_do] = ACTIONS(418), + [anon_sym_for] = ACTIONS(418), + [anon_sym_return] = ACTIONS(418), + [anon_sym_break] = ACTIONS(418), + [anon_sym_continue] = ACTIONS(418), + [anon_sym_goto] = ACTIONS(418), + [anon_sym_AMP] = ACTIONS(416), + [anon_sym_BANG] = ACTIONS(416), + [anon_sym_TILDE] = ACTIONS(416), + [anon_sym_PLUS] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(416), + [anon_sym_PLUS_PLUS] = ACTIONS(416), + [anon_sym_sizeof] = ACTIONS(418), + [sym_number_literal] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(416), + [anon_sym_DQUOTE] = ACTIONS(416), + [sym_true] = ACTIONS(418), + [sym_false] = ACTIONS(418), + [sym_null] = ACTIONS(418), + [sym_identifier] = ACTIONS(418), + [sym_comment] = ACTIONS(39), }, [535] = { - [sym_parameter_list] = STATE(181), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_LBRACK] = ACTIONS(426), + [sym_parameter_list] = STATE(180), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_LPAREN2] = ACTIONS(243), + [anon_sym_LBRACK] = ACTIONS(428), [sym_comment] = ACTIONS(39), }, [536] = { @@ -21111,7 +21454,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_type_declarator] = STATE(86), [sym_function_type_declarator] = STATE(87), [sym_array_type_declarator] = STATE(88), - [anon_sym_LPAREN] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(165), [anon_sym_STAR] = ACTIONS(167), [sym_identifier] = ACTIONS(169), [sym_comment] = ACTIONS(39), @@ -21148,7 +21491,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_RBRACE] = ACTIONS(2026), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -21168,100 +21511,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [538] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(446), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(446), - [sym_preproc_directive] = ACTIONS(446), - [anon_sym_typedef] = ACTIONS(446), - [anon_sym_extern] = ACTIONS(446), - [anon_sym_static] = ACTIONS(446), - [anon_sym_auto] = ACTIONS(446), - [anon_sym_register] = ACTIONS(446), - [anon_sym_inline] = ACTIONS(446), - [anon_sym_const] = ACTIONS(446), - [anon_sym_restrict] = ACTIONS(446), - [anon_sym_volatile] = ACTIONS(446), - [anon_sym__Atomic] = ACTIONS(446), - [anon_sym_unsigned] = ACTIONS(446), - [anon_sym_long] = ACTIONS(446), - [anon_sym_short] = ACTIONS(446), - [sym_primitive_type] = ACTIONS(446), - [anon_sym_enum] = ACTIONS(446), - [anon_sym_struct] = ACTIONS(446), - [anon_sym_union] = ACTIONS(446), - [sym_identifier] = ACTIONS(446), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(448), + [sym_preproc_directive] = ACTIONS(448), + [anon_sym_typedef] = ACTIONS(448), + [anon_sym_extern] = ACTIONS(448), + [anon_sym_static] = ACTIONS(448), + [anon_sym_auto] = ACTIONS(448), + [anon_sym_register] = ACTIONS(448), + [anon_sym_inline] = ACTIONS(448), + [anon_sym_const] = ACTIONS(448), + [anon_sym_restrict] = ACTIONS(448), + [anon_sym_volatile] = ACTIONS(448), + [anon_sym__Atomic] = ACTIONS(448), + [anon_sym_unsigned] = ACTIONS(448), + [anon_sym_long] = ACTIONS(448), + [anon_sym_short] = ACTIONS(448), + [sym_primitive_type] = ACTIONS(448), + [anon_sym_enum] = ACTIONS(448), + [anon_sym_struct] = ACTIONS(448), + [anon_sym_union] = ACTIONS(448), + [sym_identifier] = ACTIONS(448), [sym_comment] = ACTIONS(39), }, [539] = { - [sym__declarator] = STATE(312), - [sym_pointer_declarator] = STATE(312), - [sym_function_declarator] = STATE(312), - [sym_array_declarator] = STATE(312), - [sym_init_declarator] = STATE(313), - [anon_sym_LPAREN] = ACTIONS(90), + [sym__declarator] = STATE(310), + [sym_pointer_declarator] = STATE(310), + [sym_function_declarator] = STATE(310), + [sym_array_declarator] = STATE(310), + [sym_init_declarator] = STATE(311), + [anon_sym_LPAREN2] = ACTIONS(92), [anon_sym_STAR] = ACTIONS(94), - [sym_identifier] = ACTIONS(712), + [sym_identifier] = ACTIONS(716), [sym_comment] = ACTIONS(39), }, [540] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(546), - [anon_sym_LPAREN] = ACTIONS(544), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(546), - [sym_preproc_directive] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_typedef] = ACTIONS(546), - [anon_sym_extern] = ACTIONS(546), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_static] = ACTIONS(546), - [anon_sym_auto] = ACTIONS(546), - [anon_sym_register] = ACTIONS(546), - [anon_sym_inline] = ACTIONS(546), - [anon_sym_const] = ACTIONS(546), - [anon_sym_restrict] = ACTIONS(546), - [anon_sym_volatile] = ACTIONS(546), - [anon_sym__Atomic] = ACTIONS(546), - [anon_sym_unsigned] = ACTIONS(546), - [anon_sym_long] = ACTIONS(546), - [anon_sym_short] = ACTIONS(546), - [sym_primitive_type] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(546), - [anon_sym_struct] = ACTIONS(546), - [anon_sym_union] = ACTIONS(546), - [anon_sym_if] = ACTIONS(546), - [anon_sym_else] = ACTIONS(546), - [anon_sym_switch] = ACTIONS(546), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(546), - [anon_sym_while] = ACTIONS(546), - [anon_sym_do] = ACTIONS(546), - [anon_sym_for] = ACTIONS(546), - [anon_sym_return] = ACTIONS(546), - [anon_sym_break] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(546), - [anon_sym_goto] = ACTIONS(546), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_sizeof] = ACTIONS(546), - [sym_number_literal] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(544), - [sym_true] = ACTIONS(546), - [sym_false] = ACTIONS(546), - [sym_null] = ACTIONS(546), - [sym_identifier] = ACTIONS(546), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(540), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(540), + [sym_preproc_directive] = ACTIONS(540), + [anon_sym_SEMI] = ACTIONS(538), + [anon_sym_typedef] = ACTIONS(540), + [anon_sym_extern] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(538), + [anon_sym_LPAREN2] = ACTIONS(538), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_static] = ACTIONS(540), + [anon_sym_auto] = ACTIONS(540), + [anon_sym_register] = ACTIONS(540), + [anon_sym_inline] = ACTIONS(540), + [anon_sym_const] = ACTIONS(540), + [anon_sym_restrict] = ACTIONS(540), + [anon_sym_volatile] = ACTIONS(540), + [anon_sym__Atomic] = ACTIONS(540), + [anon_sym_unsigned] = ACTIONS(540), + [anon_sym_long] = ACTIONS(540), + [anon_sym_short] = ACTIONS(540), + [sym_primitive_type] = ACTIONS(540), + [anon_sym_enum] = ACTIONS(540), + [anon_sym_struct] = ACTIONS(540), + [anon_sym_union] = ACTIONS(540), + [anon_sym_if] = ACTIONS(540), + [anon_sym_else] = ACTIONS(540), + [anon_sym_switch] = ACTIONS(540), + [anon_sym_case] = ACTIONS(540), + [anon_sym_default] = ACTIONS(540), + [anon_sym_while] = ACTIONS(540), + [anon_sym_do] = ACTIONS(540), + [anon_sym_for] = ACTIONS(540), + [anon_sym_return] = ACTIONS(540), + [anon_sym_break] = ACTIONS(540), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_goto] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_BANG] = ACTIONS(538), + [anon_sym_TILDE] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_DASH_DASH] = ACTIONS(538), + [anon_sym_PLUS_PLUS] = ACTIONS(538), + [anon_sym_sizeof] = ACTIONS(540), + [sym_number_literal] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE] = ACTIONS(538), + [sym_true] = ACTIONS(540), + [sym_false] = ACTIONS(540), + [sym_null] = ACTIONS(540), + [sym_identifier] = ACTIONS(540), [sym_comment] = ACTIONS(39), }, [541] = { @@ -21269,11 +21612,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(799), [sym_preproc_function_def] = STATE(799), [sym_preproc_call] = STATE(799), - [sym_preproc_if_in_compound_statement] = STATE(255), - [sym_preproc_ifdef_in_compound_statement] = STATE(256), + [sym_preproc_if_in_compound_statement] = STATE(248), + [sym_preproc_ifdef_in_compound_statement] = STATE(249), [sym_declaration] = STATE(799), [sym_type_definition] = STATE(799), - [sym__declaration_specifiers] = STATE(257), + [sym__declaration_specifiers] = STATE(250), [sym_compound_statement] = STATE(799), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), @@ -21294,45 +21637,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(799), [sym_continue_statement] = STATE(799), [sym_goto_statement] = STATE(799), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), [sym__empty_declaration] = STATE(799), [sym_macro_type_specifier] = STATE(18), [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(799), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(548), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(542), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(552), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(544), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(546), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(548), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(550), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_RBRACE] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -21348,135 +21691,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(596), [sym_comment] = ACTIONS(39), }, [542] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(638), - [sym_preproc_directive] = ACTIONS(638), - [anon_sym_typedef] = ACTIONS(638), - [anon_sym_extern] = ACTIONS(638), - [anon_sym_static] = ACTIONS(638), - [anon_sym_auto] = ACTIONS(638), - [anon_sym_register] = ACTIONS(638), - [anon_sym_inline] = ACTIONS(638), - [anon_sym_const] = ACTIONS(638), - [anon_sym_restrict] = ACTIONS(638), - [anon_sym_volatile] = ACTIONS(638), - [anon_sym__Atomic] = ACTIONS(638), - [anon_sym_unsigned] = ACTIONS(638), - [anon_sym_long] = ACTIONS(638), - [anon_sym_short] = ACTIONS(638), - [sym_primitive_type] = ACTIONS(638), - [anon_sym_enum] = ACTIONS(638), - [anon_sym_struct] = ACTIONS(638), - [anon_sym_union] = ACTIONS(638), - [sym_identifier] = ACTIONS(638), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(640), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(640), + [sym_preproc_directive] = ACTIONS(640), + [anon_sym_typedef] = ACTIONS(640), + [anon_sym_extern] = ACTIONS(640), + [anon_sym_static] = ACTIONS(640), + [anon_sym_auto] = ACTIONS(640), + [anon_sym_register] = ACTIONS(640), + [anon_sym_inline] = ACTIONS(640), + [anon_sym_const] = ACTIONS(640), + [anon_sym_restrict] = ACTIONS(640), + [anon_sym_volatile] = ACTIONS(640), + [anon_sym__Atomic] = ACTIONS(640), + [anon_sym_unsigned] = ACTIONS(640), + [anon_sym_long] = ACTIONS(640), + [anon_sym_short] = ACTIONS(640), + [sym_primitive_type] = ACTIONS(640), + [anon_sym_enum] = ACTIONS(640), + [anon_sym_struct] = ACTIONS(640), + [anon_sym_union] = ACTIONS(640), + [sym_identifier] = ACTIONS(640), [sym_comment] = ACTIONS(39), }, [543] = { - [aux_sym_declaration_repeat1] = STATE(280), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(2056), + [aux_sym_declaration_repeat1] = STATE(279), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(2030), [sym_comment] = ACTIONS(39), }, [544] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2058), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2032), [sym_comment] = ACTIONS(39), }, [545] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(774), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(774), - [anon_sym_LPAREN] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(774), - [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), - [sym_preproc_directive] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_typedef] = ACTIONS(774), - [anon_sym_extern] = ACTIONS(774), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_static] = ACTIONS(774), - [anon_sym_auto] = ACTIONS(774), - [anon_sym_register] = ACTIONS(774), - [anon_sym_inline] = ACTIONS(774), - [anon_sym_const] = ACTIONS(774), - [anon_sym_restrict] = ACTIONS(774), - [anon_sym_volatile] = ACTIONS(774), - [anon_sym__Atomic] = ACTIONS(774), - [anon_sym_unsigned] = ACTIONS(774), - [anon_sym_long] = ACTIONS(774), - [anon_sym_short] = ACTIONS(774), - [sym_primitive_type] = ACTIONS(774), - [anon_sym_enum] = ACTIONS(774), - [anon_sym_struct] = ACTIONS(774), - [anon_sym_union] = ACTIONS(774), - [anon_sym_if] = ACTIONS(774), - [anon_sym_switch] = ACTIONS(774), - [anon_sym_case] = ACTIONS(774), - [anon_sym_default] = ACTIONS(774), - [anon_sym_while] = ACTIONS(774), - [anon_sym_do] = ACTIONS(774), - [anon_sym_for] = ACTIONS(774), - [anon_sym_return] = ACTIONS(774), - [anon_sym_break] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_goto] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(772), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_sizeof] = ACTIONS(774), - [sym_number_literal] = ACTIONS(772), - [anon_sym_SQUOTE] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [sym_true] = ACTIONS(774), - [sym_false] = ACTIONS(774), - [sym_null] = ACTIONS(774), - [sym_identifier] = ACTIONS(774), - [sym_comment] = ACTIONS(39), - }, - [546] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(782), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(780), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(782), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(782), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(782), @@ -21488,6 +21771,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(782), [anon_sym_extern] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_LPAREN2] = ACTIONS(780), [anon_sym_STAR] = ACTIONS(780), [anon_sym_static] = ACTIONS(782), [anon_sym_auto] = ACTIONS(782), @@ -21533,14 +21817,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(782), [sym_comment] = ACTIONS(39), }, - [547] = { - [sym_parameter_list] = STATE(181), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(426), + [546] = { + [sym_parameter_list] = STATE(180), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_LPAREN2] = ACTIONS(243), + [anon_sym_LBRACK] = ACTIONS(428), [sym_comment] = ACTIONS(39), }, - [548] = { + [547] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(796), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(796), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(796), @@ -21570,18 +21854,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(796), [sym_comment] = ACTIONS(39), }, - [549] = { - [sym_preproc_include] = STATE(338), - [sym_preproc_def] = STATE(338), - [sym_preproc_function_def] = STATE(338), - [sym_preproc_call] = STATE(338), - [sym_preproc_if] = STATE(338), - [sym_preproc_ifdef] = STATE(338), - [sym_function_definition] = STATE(338), - [sym_declaration] = STATE(338), - [sym_type_definition] = STATE(338), + [548] = { + [sym_preproc_include] = STATE(336), + [sym_preproc_def] = STATE(336), + [sym_preproc_function_def] = STATE(336), + [sym_preproc_call] = STATE(336), + [sym_preproc_if] = STATE(336), + [sym_preproc_ifdef] = STATE(336), + [sym_function_definition] = STATE(336), + [sym_declaration] = STATE(336), + [sym_type_definition] = STATE(336), [sym__declaration_specifiers] = STATE(17), - [sym_linkage_specification] = STATE(338), + [sym_linkage_specification] = STATE(336), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -21589,9 +21873,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(338), + [sym__empty_declaration] = STATE(336), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(338), + [aux_sym_translation_unit_repeat1] = STATE(336), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), @@ -21602,7 +21886,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2036), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -21621,77 +21905,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [550] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1006), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1004), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1006), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1006), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1006), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1006), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1006), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1006), - [sym_preproc_directive] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_typedef] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_auto] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_inline] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_restrict] = ACTIONS(1006), - [anon_sym_volatile] = ACTIONS(1006), - [anon_sym__Atomic] = ACTIONS(1006), - [anon_sym_unsigned] = ACTIONS(1006), - [anon_sym_long] = ACTIONS(1006), - [anon_sym_short] = ACTIONS(1006), - [sym_primitive_type] = ACTIONS(1006), - [anon_sym_enum] = ACTIONS(1006), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_union] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1006), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_goto] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_TILDE] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_sizeof] = ACTIONS(1006), - [sym_number_literal] = ACTIONS(1004), - [anon_sym_SQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym_true] = ACTIONS(1006), - [sym_false] = ACTIONS(1006), - [sym_null] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1006), + [549] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), + [sym_identifier] = ACTIONS(968), [sym_comment] = ACTIONS(39), }, - [551] = { - [sym_preproc_include] = STATE(478), - [sym_preproc_def] = STATE(478), - [sym_preproc_function_def] = STATE(478), - [sym_preproc_call] = STATE(478), - [sym_preproc_if_in_compound_statement] = STATE(255), - [sym_preproc_ifdef_in_compound_statement] = STATE(256), - [sym_declaration] = STATE(478), - [sym_type_definition] = STATE(478), - [sym__declaration_specifiers] = STATE(257), - [sym_compound_statement] = STATE(478), + [550] = { + [sym_preproc_include] = STATE(468), + [sym_preproc_def] = STATE(468), + [sym_preproc_function_def] = STATE(468), + [sym_preproc_call] = STATE(468), + [sym_preproc_if_in_compound_statement] = STATE(248), + [sym_preproc_ifdef_in_compound_statement] = STATE(249), + [sym_declaration] = STATE(468), + [sym_type_definition] = STATE(468), + [sym__declaration_specifiers] = STATE(250), + [sym_compound_statement] = STATE(468), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -21699,57 +21983,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [sym__empty_declaration] = STATE(478), + [sym_labeled_statement] = STATE(468), + [sym_expression_statement] = STATE(468), + [sym_if_statement] = STATE(468), + [sym_switch_statement] = STATE(468), + [sym_case_statement] = STATE(468), + [sym_while_statement] = STATE(468), + [sym_do_statement] = STATE(468), + [sym_for_statement] = STATE(468), + [sym_return_statement] = STATE(468), + [sym_break_statement] = STATE(468), + [sym_continue_statement] = STATE(468), + [sym_goto_statement] = STATE(468), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(468), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(478), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(468), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(548), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(542), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(552), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(544), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(546), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(548), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(550), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -21765,180 +22049,180 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(596), + [sym_comment] = ACTIONS(39), + }, + [551] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1214), + [sym_preproc_directive] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_typedef] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_restrict] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1214), + [anon_sym__Atomic] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_short] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1214), + [anon_sym_case] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_goto] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_sizeof] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1214), + [sym_false] = ACTIONS(1214), + [sym_null] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1214), [sym_comment] = ACTIONS(39), }, [552] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1216), - [anon_sym_LPAREN] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [sym_null] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1216), + [anon_sym_RPAREN] = ACTIONS(2040), + [anon_sym_SEMI] = ACTIONS(2040), + [anon_sym_LPAREN2] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2040), [sym_comment] = ACTIONS(39), }, [553] = { - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2066), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2042), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [554] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2068), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [anon_sym_RPAREN] = ACTIONS(2044), [sym_comment] = ACTIONS(39), }, [555] = { - [anon_sym_RPAREN] = ACTIONS(2070), - [sym_comment] = ACTIONS(39), - }, - [556] = { [sym_type_qualifier] = STATE(118), [sym__type_specifier] = STATE(116), [sym_sized_type_specifier] = STATE(116), [sym_enum_specifier] = STATE(116), [sym_struct_specifier] = STATE(116), [sym_union_specifier] = STATE(116), - [sym__expression] = STATE(415), - [sym_comma_expression] = STATE(416), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_pointer_expression] = STATE(415), - [sym_logical_expression] = STATE(415), - [sym_bitwise_expression] = STATE(415), - [sym_equality_expression] = STATE(415), - [sym_relational_expression] = STATE(415), - [sym_shift_expression] = STATE(415), - [sym_math_expression] = STATE(415), - [sym_cast_expression] = STATE(415), + [sym__expression] = STATE(406), + [sym_comma_expression] = STATE(407), + [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_type_descriptor] = STATE(806), - [sym_sizeof_expression] = STATE(415), - [sym_subscript_expression] = STATE(415), - [sym_call_expression] = STATE(415), - [sym_field_expression] = STATE(415), - [sym_compound_literal_expression] = STATE(415), - [sym_parenthesized_expression] = STATE(415), - [sym_char_literal] = STATE(415), - [sym_concatenated_string] = STATE(415), - [sym_string_literal] = STATE(418), + [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(409), [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -21950,87 +22234,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_identifier] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), [sym_comment] = ACTIONS(39), }, - [557] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1737), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_STAR_EQ] = ACTIONS(1735), - [anon_sym_SLASH_EQ] = ACTIONS(1735), - [anon_sym_PERCENT_EQ] = ACTIONS(1735), - [anon_sym_PLUS_EQ] = ACTIONS(1735), - [anon_sym_DASH_EQ] = ACTIONS(1735), - [anon_sym_LT_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_GT_EQ] = ACTIONS(1735), - [anon_sym_AMP_EQ] = ACTIONS(1735), - [anon_sym_CARET_EQ] = ACTIONS(1735), - [anon_sym_PIPE_EQ] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(1735), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [556] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1702), + [anon_sym_QMARK] = ACTIONS(1700), + [anon_sym_STAR_EQ] = ACTIONS(1700), + [anon_sym_SLASH_EQ] = ACTIONS(1700), + [anon_sym_PERCENT_EQ] = ACTIONS(1700), + [anon_sym_PLUS_EQ] = ACTIONS(1700), + [anon_sym_DASH_EQ] = ACTIONS(1700), + [anon_sym_LT_LT_EQ] = ACTIONS(1700), + [anon_sym_GT_GT_EQ] = ACTIONS(1700), + [anon_sym_AMP_EQ] = ACTIONS(1700), + [anon_sym_CARET_EQ] = ACTIONS(1700), + [anon_sym_PIPE_EQ] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1700), + [anon_sym_AMP_AMP] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym_EQ_EQ] = ACTIONS(1700), + [anon_sym_BANG_EQ] = ACTIONS(1700), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1700), + [anon_sym_GT_EQ] = ACTIONS(1700), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [558] = { - [sym__expression] = STATE(739), - [sym_conditional_expression] = STATE(739), - [sym_assignment_expression] = STATE(739), - [sym_pointer_expression] = STATE(739), - [sym_logical_expression] = STATE(739), - [sym_bitwise_expression] = STATE(739), - [sym_equality_expression] = STATE(739), - [sym_relational_expression] = STATE(739), - [sym_shift_expression] = STATE(739), - [sym_math_expression] = STATE(739), - [sym_cast_expression] = STATE(739), - [sym_sizeof_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_call_expression] = STATE(739), - [sym_field_expression] = STATE(739), - [sym_compound_literal_expression] = STATE(739), - [sym_parenthesized_expression] = STATE(739), - [sym_char_literal] = STATE(739), - [sym_concatenated_string] = STATE(739), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [557] = { + [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(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -22040,16 +22324,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_identifier] = ACTIONS(1759), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_null] = ACTIONS(1722), + [sym_identifier] = ACTIONS(1722), [sym_comment] = ACTIONS(39), }, - [559] = { + [558] = { [sym__expression] = STATE(807), [sym_conditional_expression] = STATE(807), [sym_assignment_expression] = STATE(807), @@ -22069,8 +22353,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(807), [sym_char_literal] = STATE(807), [sym_concatenated_string] = STATE(807), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -22080,16 +22364,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2074), - [sym_false] = ACTIONS(2074), - [sym_null] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2074), + [sym_true] = ACTIONS(2048), + [sym_false] = ACTIONS(2048), + [sym_null] = ACTIONS(2048), + [sym_identifier] = ACTIONS(2048), [sym_comment] = ACTIONS(39), }, - [560] = { + [559] = { [sym__expression] = STATE(808), [sym_conditional_expression] = STATE(808), [sym_assignment_expression] = STATE(808), @@ -22109,27 +22393,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(808), [sym_char_literal] = STATE(808), [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2076), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2078), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2050), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_null] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2052), [sym_comment] = ACTIONS(39), }, - [561] = { + [560] = { [sym__expression] = STATE(809), [sym_conditional_expression] = STATE(809), [sym_assignment_expression] = STATE(809), @@ -22149,8 +22433,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(809), [sym_char_literal] = STATE(809), [sym_concatenated_string] = STATE(809), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -22160,16 +22444,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2082), - [sym_false] = ACTIONS(2082), - [sym_null] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2082), + [sym_true] = ACTIONS(2056), + [sym_false] = ACTIONS(2056), + [sym_null] = ACTIONS(2056), + [sym_identifier] = ACTIONS(2056), [sym_comment] = ACTIONS(39), }, - [562] = { + [561] = { [sym__expression] = STATE(810), [sym_conditional_expression] = STATE(810), [sym_assignment_expression] = STATE(810), @@ -22189,8 +22473,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(810), [sym_char_literal] = STATE(810), [sym_concatenated_string] = STATE(810), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -22200,16 +22484,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2058), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2086), - [sym_false] = ACTIONS(2086), - [sym_null] = ACTIONS(2086), - [sym_identifier] = ACTIONS(2086), + [sym_true] = ACTIONS(2060), + [sym_false] = ACTIONS(2060), + [sym_null] = ACTIONS(2060), + [sym_identifier] = ACTIONS(2060), [sym_comment] = ACTIONS(39), }, - [563] = { + [562] = { [sym__expression] = STATE(811), [sym_conditional_expression] = STATE(811), [sym_assignment_expression] = STATE(811), @@ -22229,8 +22513,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(811), [sym_char_literal] = STATE(811), [sym_concatenated_string] = STATE(811), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -22240,16 +22524,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2088), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2090), - [sym_false] = ACTIONS(2090), - [sym_null] = ACTIONS(2090), - [sym_identifier] = ACTIONS(2090), + [sym_true] = ACTIONS(2064), + [sym_false] = ACTIONS(2064), + [sym_null] = ACTIONS(2064), + [sym_identifier] = ACTIONS(2064), [sym_comment] = ACTIONS(39), }, - [564] = { + [563] = { [sym__expression] = STATE(812), [sym_conditional_expression] = STATE(812), [sym_assignment_expression] = STATE(812), @@ -22269,8 +22553,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(812), [sym_char_literal] = STATE(812), [sym_concatenated_string] = STATE(812), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -22280,16 +22564,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2092), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2066), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2094), - [sym_false] = ACTIONS(2094), - [sym_null] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2094), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_identifier] = ACTIONS(2068), [sym_comment] = ACTIONS(39), }, - [565] = { + [564] = { [sym__expression] = STATE(813), [sym_conditional_expression] = STATE(813), [sym_assignment_expression] = STATE(813), @@ -22309,8 +22593,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(813), [sym_char_literal] = STATE(813), [sym_concatenated_string] = STATE(813), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -22320,16 +22604,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2096), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2098), - [sym_false] = ACTIONS(2098), - [sym_null] = ACTIONS(2098), - [sym_identifier] = ACTIONS(2098), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_identifier] = ACTIONS(2072), [sym_comment] = ACTIONS(39), }, - [566] = { + [565] = { [sym__expression] = STATE(814), [sym_conditional_expression] = STATE(814), [sym_assignment_expression] = STATE(814), @@ -22349,8 +22633,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(814), [sym_char_literal] = STATE(814), [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -22360,16 +22644,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2100), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2102), - [sym_false] = ACTIONS(2102), - [sym_null] = ACTIONS(2102), - [sym_identifier] = ACTIONS(2102), + [sym_true] = ACTIONS(2076), + [sym_false] = ACTIONS(2076), + [sym_null] = ACTIONS(2076), + [sym_identifier] = ACTIONS(2076), [sym_comment] = ACTIONS(39), }, - [567] = { + [566] = { [sym__expression] = STATE(815), [sym_conditional_expression] = STATE(815), [sym_assignment_expression] = STATE(815), @@ -22389,8 +22673,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(815), [sym_char_literal] = STATE(815), [sym_concatenated_string] = STATE(815), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -22400,16 +22684,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2104), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2106), - [sym_false] = ACTIONS(2106), - [sym_null] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2106), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_identifier] = ACTIONS(2080), [sym_comment] = ACTIONS(39), }, - [568] = { + [567] = { [sym__expression] = STATE(816), [sym_conditional_expression] = STATE(816), [sym_assignment_expression] = STATE(816), @@ -22429,8 +22713,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(816), [sym_char_literal] = STATE(816), [sym_concatenated_string] = STATE(816), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -22440,16 +22724,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2108), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2110), - [sym_false] = ACTIONS(2110), - [sym_null] = ACTIONS(2110), - [sym_identifier] = ACTIONS(2110), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_identifier] = ACTIONS(2084), [sym_comment] = ACTIONS(39), }, - [569] = { + [568] = { [sym__expression] = STATE(817), [sym_conditional_expression] = STATE(817), [sym_assignment_expression] = STATE(817), @@ -22469,8 +22753,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(817), [sym_char_literal] = STATE(817), [sym_concatenated_string] = STATE(817), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), + [sym_string_literal] = STATE(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -22480,100 +22764,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2112), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2114), - [sym_false] = ACTIONS(2114), - [sym_null] = ACTIONS(2114), - [sym_identifier] = ACTIONS(2114), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2088), [sym_comment] = ACTIONS(39), }, - [570] = { + [569] = { [sym_string_literal] = STATE(818), [aux_sym_concatenated_string_repeat1] = STATE(818), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_COMMA] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_QMARK] = ACTIONS(1815), - [anon_sym_STAR_EQ] = ACTIONS(1815), - [anon_sym_SLASH_EQ] = ACTIONS(1815), - [anon_sym_PERCENT_EQ] = ACTIONS(1815), - [anon_sym_PLUS_EQ] = ACTIONS(1815), - [anon_sym_DASH_EQ] = ACTIONS(1815), - [anon_sym_LT_LT_EQ] = ACTIONS(1815), - [anon_sym_GT_GT_EQ] = ACTIONS(1815), - [anon_sym_AMP_EQ] = ACTIONS(1815), - [anon_sym_CARET_EQ] = ACTIONS(1815), - [anon_sym_PIPE_EQ] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1815), - [anon_sym_AMP_AMP] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1815), - [anon_sym_BANG_EQ] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1815), - [anon_sym_GT_EQ] = ACTIONS(1815), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_DASH_GT] = ACTIONS(1815), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_CARET] = ACTIONS(1780), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1780), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, - [571] = { - [anon_sym_LPAREN] = ACTIONS(2116), - [anon_sym_COMMA] = ACTIONS(2116), - [anon_sym_RPAREN] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_extern] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_RBRACK] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_auto] = ACTIONS(2118), - [anon_sym_register] = ACTIONS(2118), - [anon_sym_inline] = ACTIONS(2118), - [anon_sym_const] = ACTIONS(2118), - [anon_sym_restrict] = ACTIONS(2118), - [anon_sym_volatile] = ACTIONS(2118), - [anon_sym__Atomic] = ACTIONS(2118), - [anon_sym_COLON] = ACTIONS(2116), - [anon_sym_AMP] = ACTIONS(2116), - [anon_sym_BANG] = ACTIONS(2116), - [anon_sym_TILDE] = ACTIONS(2116), - [anon_sym_PLUS] = ACTIONS(2118), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_DASH_DASH] = ACTIONS(2116), - [anon_sym_PLUS_PLUS] = ACTIONS(2116), - [anon_sym_sizeof] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_DQUOTE] = ACTIONS(2116), - [sym_true] = ACTIONS(2118), - [sym_false] = ACTIONS(2118), - [sym_null] = ACTIONS(2118), - [sym_identifier] = ACTIONS(2118), + [570] = { + [anon_sym_COMMA] = ACTIONS(2090), + [anon_sym_RPAREN] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_extern] = ACTIONS(2092), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_RBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2092), + [anon_sym_auto] = ACTIONS(2092), + [anon_sym_register] = ACTIONS(2092), + [anon_sym_inline] = ACTIONS(2092), + [anon_sym_const] = ACTIONS(2092), + [anon_sym_restrict] = ACTIONS(2092), + [anon_sym_volatile] = ACTIONS(2092), + [anon_sym__Atomic] = ACTIONS(2092), + [anon_sym_COLON] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_PLUS] = ACTIONS(2092), + [anon_sym_DASH] = ACTIONS(2092), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2092), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2092), + [sym_false] = ACTIONS(2092), + [sym_null] = ACTIONS(2092), + [sym_identifier] = ACTIONS(2092), [sym_comment] = ACTIONS(39), }, - [572] = { - [sym_enumerator] = STATE(350), + [571] = { + [sym_enumerator] = STATE(348), [sym_identifier] = ACTIONS(185), [sym_comment] = ACTIONS(39), }, - [573] = { + [572] = { [sym_preproc_if_in_field_declaration_list] = STATE(107), [sym_preproc_ifdef_in_field_declaration_list] = STATE(108), [sym__declaration_specifiers] = STATE(109), @@ -22591,7 +22875,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2120), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2094), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), [anon_sym_extern] = ACTIONS(23), @@ -22613,7 +22897,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [574] = { + [573] = { [sym_preproc_if_in_field_declaration_list] = STATE(107), [sym_preproc_ifdef_in_field_declaration_list] = STATE(108), [sym_preproc_else_in_field_declaration_list] = STATE(820), @@ -22633,7 +22917,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2122), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2096), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(831), @@ -22657,96 +22941,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, + [574] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2100), + [anon_sym_extern] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2100), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_auto] = ACTIONS(2098), + [anon_sym_register] = ACTIONS(2098), + [anon_sym_inline] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_restrict] = ACTIONS(2098), + [anon_sym_volatile] = ACTIONS(2098), + [anon_sym__Atomic] = ACTIONS(2098), + [anon_sym_unsigned] = ACTIONS(2098), + [anon_sym_long] = ACTIONS(2098), + [anon_sym_short] = ACTIONS(2098), + [sym_primitive_type] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2098), + [sym_comment] = ACTIONS(39), + }, [575] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2124), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2126), - [anon_sym_extern] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_static] = ACTIONS(2124), - [anon_sym_auto] = ACTIONS(2124), - [anon_sym_register] = ACTIONS(2124), - [anon_sym_inline] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [anon_sym_restrict] = ACTIONS(2124), - [anon_sym_volatile] = ACTIONS(2124), - [anon_sym__Atomic] = ACTIONS(2124), - [anon_sym_unsigned] = ACTIONS(2124), - [anon_sym_long] = ACTIONS(2124), - [anon_sym_short] = ACTIONS(2124), - [sym_primitive_type] = ACTIONS(2124), - [anon_sym_enum] = ACTIONS(2124), - [anon_sym_struct] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2124), - [sym_identifier] = ACTIONS(2124), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_static] = ACTIONS(2102), + [anon_sym_auto] = ACTIONS(2102), + [anon_sym_register] = ACTIONS(2102), + [anon_sym_inline] = ACTIONS(2102), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_restrict] = ACTIONS(2102), + [anon_sym_volatile] = ACTIONS(2102), + [anon_sym__Atomic] = ACTIONS(2102), + [anon_sym_unsigned] = ACTIONS(2102), + [anon_sym_long] = ACTIONS(2102), + [anon_sym_short] = ACTIONS(2102), + [sym_primitive_type] = ACTIONS(2102), + [anon_sym_enum] = ACTIONS(2102), + [anon_sym_struct] = ACTIONS(2102), + [anon_sym_union] = ACTIONS(2102), + [sym_identifier] = ACTIONS(2102), [sym_comment] = ACTIONS(39), }, [576] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2130), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2128), - [anon_sym_RBRACE] = ACTIONS(2130), - [anon_sym_static] = ACTIONS(2128), - [anon_sym_auto] = ACTIONS(2128), - [anon_sym_register] = ACTIONS(2128), - [anon_sym_inline] = ACTIONS(2128), - [anon_sym_const] = ACTIONS(2128), - [anon_sym_restrict] = ACTIONS(2128), - [anon_sym_volatile] = ACTIONS(2128), - [anon_sym__Atomic] = ACTIONS(2128), - [anon_sym_unsigned] = ACTIONS(2128), - [anon_sym_long] = ACTIONS(2128), - [anon_sym_short] = ACTIONS(2128), - [sym_primitive_type] = ACTIONS(2128), - [anon_sym_enum] = ACTIONS(2128), - [anon_sym_struct] = ACTIONS(2128), - [anon_sym_union] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2128), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2106), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_static] = ACTIONS(2106), + [anon_sym_auto] = ACTIONS(2106), + [anon_sym_register] = ACTIONS(2106), + [anon_sym_inline] = ACTIONS(2106), + [anon_sym_const] = ACTIONS(2106), + [anon_sym_restrict] = ACTIONS(2106), + [anon_sym_volatile] = ACTIONS(2106), + [anon_sym__Atomic] = ACTIONS(2106), + [anon_sym_unsigned] = ACTIONS(2106), + [anon_sym_long] = ACTIONS(2106), + [anon_sym_short] = ACTIONS(2106), + [sym_primitive_type] = ACTIONS(2106), + [anon_sym_enum] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(2106), + [anon_sym_union] = ACTIONS(2106), + [sym_identifier] = ACTIONS(2106), [sym_comment] = ACTIONS(39), }, [577] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2132), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2134), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2134), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2134), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2134), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_static] = ACTIONS(2132), - [anon_sym_auto] = ACTIONS(2132), - [anon_sym_register] = ACTIONS(2132), - [anon_sym_inline] = ACTIONS(2132), - [anon_sym_const] = ACTIONS(2132), - [anon_sym_restrict] = ACTIONS(2132), - [anon_sym_volatile] = ACTIONS(2132), - [anon_sym__Atomic] = ACTIONS(2132), - [anon_sym_unsigned] = ACTIONS(2132), - [anon_sym_long] = ACTIONS(2132), - [anon_sym_short] = ACTIONS(2132), - [sym_primitive_type] = ACTIONS(2132), - [anon_sym_enum] = ACTIONS(2132), - [anon_sym_struct] = ACTIONS(2132), - [anon_sym_union] = ACTIONS(2132), - [sym_identifier] = ACTIONS(2132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2110), [sym_comment] = ACTIONS(39), }, [578] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2136), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2112), [sym_comment] = ACTIONS(39), }, [579] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2138), - [sym_comment] = ACTIONS(39), - }, - [580] = { [sym_preproc_if_in_field_declaration_list] = STATE(107), [sym_preproc_ifdef_in_field_declaration_list] = STATE(108), [sym__declaration_specifiers] = STATE(109), @@ -22757,10 +23041,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(110), [sym_struct_specifier] = STATE(110), [sym_union_specifier] = STATE(110), - [sym__field_declaration_list_item] = STATE(580), - [sym_field_declaration] = STATE(580), + [sym__field_declaration_list_item] = STATE(579), + [sym_field_declaration] = STATE(579), [sym_macro_type_specifier] = STATE(110), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(580), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(579), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(885), @@ -22788,193 +23072,193 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(917), [sym_comment] = ACTIONS(39), }, + [580] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2116), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2116), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2116), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2116), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2116), + [anon_sym_static] = ACTIONS(2114), + [anon_sym_auto] = ACTIONS(2114), + [anon_sym_register] = ACTIONS(2114), + [anon_sym_inline] = ACTIONS(2114), + [anon_sym_const] = ACTIONS(2114), + [anon_sym_restrict] = ACTIONS(2114), + [anon_sym_volatile] = ACTIONS(2114), + [anon_sym__Atomic] = ACTIONS(2114), + [anon_sym_unsigned] = ACTIONS(2114), + [anon_sym_long] = ACTIONS(2114), + [anon_sym_short] = ACTIONS(2114), + [sym_primitive_type] = ACTIONS(2114), + [anon_sym_enum] = ACTIONS(2114), + [anon_sym_struct] = ACTIONS(2114), + [anon_sym_union] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2114), + [sym_comment] = ACTIONS(39), + }, [581] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2140), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2142), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2142), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2142), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2142), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_auto] = ACTIONS(2140), - [anon_sym_register] = ACTIONS(2140), - [anon_sym_inline] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_restrict] = ACTIONS(2140), - [anon_sym_volatile] = ACTIONS(2140), - [anon_sym__Atomic] = ACTIONS(2140), - [anon_sym_unsigned] = ACTIONS(2140), - [anon_sym_long] = ACTIONS(2140), - [anon_sym_short] = ACTIONS(2140), - [sym_primitive_type] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [anon_sym_struct] = ACTIONS(2140), - [anon_sym_union] = ACTIONS(2140), - [sym_identifier] = ACTIONS(2140), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2118), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2120), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2120), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2120), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2120), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2118), + [anon_sym_auto] = ACTIONS(2118), + [anon_sym_register] = ACTIONS(2118), + [anon_sym_inline] = ACTIONS(2118), + [anon_sym_const] = ACTIONS(2118), + [anon_sym_restrict] = ACTIONS(2118), + [anon_sym_volatile] = ACTIONS(2118), + [anon_sym__Atomic] = ACTIONS(2118), + [anon_sym_unsigned] = ACTIONS(2118), + [anon_sym_long] = ACTIONS(2118), + [anon_sym_short] = ACTIONS(2118), + [sym_primitive_type] = ACTIONS(2118), + [anon_sym_enum] = ACTIONS(2118), + [anon_sym_struct] = ACTIONS(2118), + [anon_sym_union] = ACTIONS(2118), + [sym_identifier] = ACTIONS(2118), [sym_comment] = ACTIONS(39), }, [582] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2144), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2146), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2146), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2146), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2146), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_RBRACE] = 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), - [sym_identifier] = ACTIONS(2144), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2122), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2124), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2124), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2124), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2124), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2124), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_auto] = ACTIONS(2122), + [anon_sym_register] = ACTIONS(2122), + [anon_sym_inline] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_restrict] = ACTIONS(2122), + [anon_sym_volatile] = ACTIONS(2122), + [anon_sym__Atomic] = ACTIONS(2122), + [anon_sym_unsigned] = ACTIONS(2122), + [anon_sym_long] = ACTIONS(2122), + [anon_sym_short] = ACTIONS(2122), + [sym_primitive_type] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [anon_sym_struct] = ACTIONS(2122), + [anon_sym_union] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2122), [sym_comment] = ACTIONS(39), }, [583] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2148), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2150), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2150), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2150), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2150), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_auto] = ACTIONS(2148), - [anon_sym_register] = ACTIONS(2148), - [anon_sym_inline] = ACTIONS(2148), - [anon_sym_const] = ACTIONS(2148), - [anon_sym_restrict] = ACTIONS(2148), - [anon_sym_volatile] = ACTIONS(2148), - [anon_sym__Atomic] = ACTIONS(2148), - [anon_sym_unsigned] = ACTIONS(2148), - [anon_sym_long] = ACTIONS(2148), - [anon_sym_short] = ACTIONS(2148), - [sym_primitive_type] = ACTIONS(2148), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2148), - [anon_sym_union] = ACTIONS(2148), - [sym_identifier] = ACTIONS(2148), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2126), [sym_comment] = ACTIONS(39), }, [584] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2152), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2128), [sym_comment] = ACTIONS(39), }, [585] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2154), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2130), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2130), + [anon_sym_auto] = ACTIONS(2130), + [anon_sym_register] = ACTIONS(2130), + [anon_sym_inline] = ACTIONS(2130), + [anon_sym_const] = ACTIONS(2130), + [anon_sym_restrict] = ACTIONS(2130), + [anon_sym_volatile] = ACTIONS(2130), + [anon_sym__Atomic] = ACTIONS(2130), + [anon_sym_unsigned] = ACTIONS(2130), + [anon_sym_long] = ACTIONS(2130), + [anon_sym_short] = ACTIONS(2130), + [sym_primitive_type] = ACTIONS(2130), + [anon_sym_enum] = ACTIONS(2130), + [anon_sym_struct] = ACTIONS(2130), + [anon_sym_union] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2130), [sym_comment] = ACTIONS(39), }, [586] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2156), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2158), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2158), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2158), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2158), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2158), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_auto] = ACTIONS(2156), - [anon_sym_register] = ACTIONS(2156), - [anon_sym_inline] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [anon_sym_restrict] = ACTIONS(2156), - [anon_sym_volatile] = ACTIONS(2156), - [anon_sym__Atomic] = ACTIONS(2156), - [anon_sym_unsigned] = ACTIONS(2156), - [anon_sym_long] = ACTIONS(2156), - [anon_sym_short] = ACTIONS(2156), - [sym_primitive_type] = ACTIONS(2156), - [anon_sym_enum] = ACTIONS(2156), - [anon_sym_struct] = ACTIONS(2156), - [anon_sym_union] = ACTIONS(2156), - [sym_identifier] = ACTIONS(2156), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2136), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2136), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2136), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2136), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2136), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_auto] = ACTIONS(2134), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_restrict] = ACTIONS(2134), + [anon_sym_volatile] = ACTIONS(2134), + [anon_sym__Atomic] = ACTIONS(2134), + [anon_sym_unsigned] = ACTIONS(2134), + [anon_sym_long] = ACTIONS(2134), + [anon_sym_short] = ACTIONS(2134), + [sym_primitive_type] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2134), [sym_comment] = ACTIONS(39), }, [587] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2160), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2162), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2162), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2162), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2162), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2162), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2162), - [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), - [sym_identifier] = ACTIONS(2160), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2138), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2140), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2140), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2140), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2140), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2140), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_auto] = ACTIONS(2138), + [anon_sym_register] = ACTIONS(2138), + [anon_sym_inline] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_restrict] = ACTIONS(2138), + [anon_sym_volatile] = ACTIONS(2138), + [anon_sym__Atomic] = ACTIONS(2138), + [anon_sym_unsigned] = ACTIONS(2138), + [anon_sym_long] = ACTIONS(2138), + [anon_sym_short] = ACTIONS(2138), + [sym_primitive_type] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [sym_identifier] = ACTIONS(2138), [sym_comment] = ACTIONS(39), }, [588] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2164), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2166), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2166), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2166), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2166), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2166), - [anon_sym_extern] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_auto] = ACTIONS(2164), - [anon_sym_register] = ACTIONS(2164), - [anon_sym_inline] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_restrict] = ACTIONS(2164), - [anon_sym_volatile] = ACTIONS(2164), - [anon_sym__Atomic] = ACTIONS(2164), - [anon_sym_unsigned] = ACTIONS(2164), - [anon_sym_long] = ACTIONS(2164), - [anon_sym_short] = ACTIONS(2164), - [sym_primitive_type] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_union] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2164), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2142), [sym_comment] = ACTIONS(39), }, [589] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2168), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2144), [sym_comment] = ACTIONS(39), }, [590] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2170), - [sym_comment] = ACTIONS(39), - }, - [591] = { - [sym__field_declarator] = STATE(593), - [sym_pointer_field_declarator] = STATE(201), - [sym_function_field_declarator] = STATE(202), - [sym_array_field_declarator] = STATE(203), - [sym_type_qualifier] = STATE(220), - [aux_sym_type_definition_repeat1] = STATE(220), - [anon_sym_LPAREN] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(839), + [sym__field_declarator] = STATE(592), + [sym_pointer_field_declarator] = STATE(200), + [sym_function_field_declarator] = STATE(201), + [sym_array_field_declarator] = STATE(202), + [sym_type_qualifier] = STATE(219), + [aux_sym_type_definition_repeat1] = STATE(219), + [anon_sym_LPAREN2] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(843), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -22982,63 +23266,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(845), [sym_comment] = ACTIONS(39), }, - [592] = { - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_RPAREN] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_COLON] = ACTIONS(2172), + [591] = { + [anon_sym_COMMA] = ACTIONS(2146), + [anon_sym_RPAREN] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2146), + [anon_sym_LPAREN2] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2146), + [anon_sym_COLON] = ACTIONS(2146), [sym_comment] = ACTIONS(39), }, - [593] = { - [sym_parameter_list] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(2174), - [anon_sym_RPAREN] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2174), + [592] = { + [sym_parameter_list] = STATE(381), + [anon_sym_COMMA] = ACTIONS(2148), + [anon_sym_RPAREN] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(871), - [anon_sym_COLON] = ACTIONS(2174), + [anon_sym_COLON] = ACTIONS(2148), [sym_comment] = ACTIONS(39), }, - [594] = { - [anon_sym_RPAREN] = ACTIONS(2176), + [593] = { + [anon_sym_RPAREN] = ACTIONS(2150), [sym_comment] = ACTIONS(39), }, - [595] = { + [594] = { [sym_type_qualifier] = STATE(118), [sym__type_specifier] = STATE(116), [sym_sized_type_specifier] = STATE(116), [sym_enum_specifier] = STATE(116), [sym_struct_specifier] = STATE(116), [sym_union_specifier] = STATE(116), - [sym__expression] = STATE(415), - [sym_comma_expression] = STATE(416), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_pointer_expression] = STATE(415), - [sym_logical_expression] = STATE(415), - [sym_bitwise_expression] = STATE(415), - [sym_equality_expression] = STATE(415), - [sym_relational_expression] = STATE(415), - [sym_shift_expression] = STATE(415), - [sym_math_expression] = STATE(415), - [sym_cast_expression] = STATE(415), + [sym__expression] = STATE(406), + [sym_comma_expression] = STATE(407), + [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_type_descriptor] = STATE(830), - [sym_sizeof_expression] = STATE(415), - [sym_subscript_expression] = STATE(415), - [sym_call_expression] = STATE(415), - [sym_field_expression] = STATE(415), - [sym_compound_literal_expression] = STATE(415), - [sym_parenthesized_expression] = STATE(415), - [sym_char_literal] = STATE(415), - [sym_concatenated_string] = STATE(415), - [sym_string_literal] = STATE(418), + [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(409), [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -23050,113 +23334,113 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_identifier] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), [sym_comment] = ACTIONS(39), }, - [596] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1737), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_STAR_EQ] = ACTIONS(1735), - [anon_sym_SLASH_EQ] = ACTIONS(1735), - [anon_sym_PERCENT_EQ] = ACTIONS(1735), - [anon_sym_PLUS_EQ] = ACTIONS(1735), - [anon_sym_DASH_EQ] = ACTIONS(1735), - [anon_sym_LT_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_GT_EQ] = ACTIONS(1735), - [anon_sym_AMP_EQ] = ACTIONS(1735), - [anon_sym_CARET_EQ] = ACTIONS(1735), - [anon_sym_PIPE_EQ] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(1735), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [595] = { + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1702), + [anon_sym_QMARK] = ACTIONS(1700), + [anon_sym_STAR_EQ] = ACTIONS(1700), + [anon_sym_SLASH_EQ] = ACTIONS(1700), + [anon_sym_PERCENT_EQ] = ACTIONS(1700), + [anon_sym_PLUS_EQ] = ACTIONS(1700), + [anon_sym_DASH_EQ] = ACTIONS(1700), + [anon_sym_LT_LT_EQ] = ACTIONS(1700), + [anon_sym_GT_GT_EQ] = ACTIONS(1700), + [anon_sym_AMP_EQ] = ACTIONS(1700), + [anon_sym_CARET_EQ] = ACTIONS(1700), + [anon_sym_PIPE_EQ] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1700), + [anon_sym_AMP_AMP] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym_EQ_EQ] = ACTIONS(1700), + [anon_sym_BANG_EQ] = ACTIONS(1700), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1700), + [anon_sym_GT_EQ] = ACTIONS(1700), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [597] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2180), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [sym_identifier] = ACTIONS(2178), + [596] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2152), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2154), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2154), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2154), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2154), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2154), + [anon_sym_extern] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_auto] = ACTIONS(2152), + [anon_sym_register] = ACTIONS(2152), + [anon_sym_inline] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_restrict] = ACTIONS(2152), + [anon_sym_volatile] = ACTIONS(2152), + [anon_sym__Atomic] = ACTIONS(2152), + [anon_sym_unsigned] = ACTIONS(2152), + [anon_sym_long] = ACTIONS(2152), + [anon_sym_short] = ACTIONS(2152), + [sym_primitive_type] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [anon_sym_struct] = ACTIONS(2152), + [anon_sym_union] = ACTIONS(2152), + [sym_identifier] = ACTIONS(2152), [sym_comment] = ACTIONS(39), }, - [598] = { - [sym__expression] = STATE(739), - [sym_conditional_expression] = STATE(739), - [sym_assignment_expression] = STATE(739), - [sym_pointer_expression] = STATE(739), - [sym_logical_expression] = STATE(739), - [sym_bitwise_expression] = STATE(739), - [sym_equality_expression] = STATE(739), - [sym_relational_expression] = STATE(739), - [sym_shift_expression] = STATE(739), - [sym_math_expression] = STATE(739), - [sym_cast_expression] = STATE(739), - [sym_sizeof_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_call_expression] = STATE(739), - [sym_field_expression] = STATE(739), - [sym_compound_literal_expression] = STATE(739), - [sym_parenthesized_expression] = STATE(739), - [sym_char_literal] = STATE(739), - [sym_concatenated_string] = STATE(739), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [597] = { + [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(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -23166,16 +23450,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_identifier] = ACTIONS(1759), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_null] = ACTIONS(1722), + [sym_identifier] = ACTIONS(1722), [sym_comment] = ACTIONS(39), }, - [599] = { + [598] = { [sym__expression] = STATE(831), [sym_conditional_expression] = STATE(831), [sym_assignment_expression] = STATE(831), @@ -23195,8 +23479,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(831), [sym_char_literal] = STATE(831), [sym_concatenated_string] = STATE(831), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -23206,16 +23490,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2184), - [sym_false] = ACTIONS(2184), - [sym_null] = ACTIONS(2184), - [sym_identifier] = ACTIONS(2184), + [sym_true] = ACTIONS(2158), + [sym_false] = ACTIONS(2158), + [sym_null] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2158), [sym_comment] = ACTIONS(39), }, - [600] = { + [599] = { [sym__expression] = STATE(832), [sym_conditional_expression] = STATE(832), [sym_assignment_expression] = STATE(832), @@ -23235,27 +23519,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(832), [sym_char_literal] = STATE(832), [sym_concatenated_string] = STATE(832), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2186), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2188), - [sym_false] = ACTIONS(2188), - [sym_null] = ACTIONS(2188), - [sym_identifier] = ACTIONS(2188), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2162), + [sym_false] = ACTIONS(2162), + [sym_null] = ACTIONS(2162), + [sym_identifier] = ACTIONS(2162), [sym_comment] = ACTIONS(39), }, - [601] = { + [600] = { [sym__expression] = STATE(833), [sym_conditional_expression] = STATE(833), [sym_assignment_expression] = STATE(833), @@ -23275,8 +23559,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(833), [sym_char_literal] = STATE(833), [sym_concatenated_string] = STATE(833), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -23286,16 +23570,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2192), - [sym_false] = ACTIONS(2192), - [sym_null] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2192), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_identifier] = ACTIONS(2166), [sym_comment] = ACTIONS(39), }, - [602] = { + [601] = { [sym__expression] = STATE(834), [sym_conditional_expression] = STATE(834), [sym_assignment_expression] = STATE(834), @@ -23315,8 +23599,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(834), [sym_char_literal] = STATE(834), [sym_concatenated_string] = STATE(834), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -23326,16 +23610,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2194), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2168), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2196), - [sym_false] = ACTIONS(2196), - [sym_null] = ACTIONS(2196), - [sym_identifier] = ACTIONS(2196), + [sym_true] = ACTIONS(2170), + [sym_false] = ACTIONS(2170), + [sym_null] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2170), [sym_comment] = ACTIONS(39), }, - [603] = { + [602] = { [sym__expression] = STATE(835), [sym_conditional_expression] = STATE(835), [sym_assignment_expression] = STATE(835), @@ -23355,8 +23639,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(835), [sym_char_literal] = STATE(835), [sym_concatenated_string] = STATE(835), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -23366,16 +23650,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2198), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2200), - [sym_false] = ACTIONS(2200), - [sym_null] = ACTIONS(2200), - [sym_identifier] = ACTIONS(2200), + [sym_true] = ACTIONS(2174), + [sym_false] = ACTIONS(2174), + [sym_null] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2174), [sym_comment] = ACTIONS(39), }, - [604] = { + [603] = { [sym__expression] = STATE(836), [sym_conditional_expression] = STATE(836), [sym_assignment_expression] = STATE(836), @@ -23395,8 +23679,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(836), [sym_char_literal] = STATE(836), [sym_concatenated_string] = STATE(836), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -23406,16 +23690,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_identifier] = ACTIONS(2204), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_identifier] = ACTIONS(2178), [sym_comment] = ACTIONS(39), }, - [605] = { + [604] = { [sym__expression] = STATE(837), [sym_conditional_expression] = STATE(837), [sym_assignment_expression] = STATE(837), @@ -23435,8 +23719,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(837), [sym_char_literal] = STATE(837), [sym_concatenated_string] = STATE(837), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -23446,16 +23730,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2206), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2180), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2208), + [sym_true] = ACTIONS(2182), + [sym_false] = ACTIONS(2182), + [sym_null] = ACTIONS(2182), + [sym_identifier] = ACTIONS(2182), [sym_comment] = ACTIONS(39), }, - [606] = { + [605] = { [sym__expression] = STATE(838), [sym_conditional_expression] = STATE(838), [sym_assignment_expression] = STATE(838), @@ -23475,8 +23759,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(838), [sym_char_literal] = STATE(838), [sym_concatenated_string] = STATE(838), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -23486,16 +23770,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2212), - [sym_false] = ACTIONS(2212), - [sym_null] = ACTIONS(2212), - [sym_identifier] = ACTIONS(2212), + [sym_true] = ACTIONS(2186), + [sym_false] = ACTIONS(2186), + [sym_null] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2186), [sym_comment] = ACTIONS(39), }, - [607] = { + [606] = { [sym__expression] = STATE(839), [sym_conditional_expression] = STATE(839), [sym_assignment_expression] = STATE(839), @@ -23515,8 +23799,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(839), [sym_char_literal] = STATE(839), [sym_concatenated_string] = STATE(839), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -23526,16 +23810,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2214), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_identifier] = ACTIONS(2216), + [sym_true] = ACTIONS(2190), + [sym_false] = ACTIONS(2190), + [sym_null] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2190), [sym_comment] = ACTIONS(39), }, - [608] = { + [607] = { [sym__expression] = STATE(840), [sym_conditional_expression] = STATE(840), [sym_assignment_expression] = STATE(840), @@ -23555,8 +23839,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(840), [sym_char_literal] = STATE(840), [sym_concatenated_string] = STATE(840), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -23566,16 +23850,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2218), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2220), - [sym_false] = ACTIONS(2220), - [sym_null] = ACTIONS(2220), - [sym_identifier] = ACTIONS(2220), + [sym_true] = ACTIONS(2194), + [sym_false] = ACTIONS(2194), + [sym_null] = ACTIONS(2194), + [sym_identifier] = ACTIONS(2194), [sym_comment] = ACTIONS(39), }, - [609] = { + [608] = { [sym__expression] = STATE(841), [sym_conditional_expression] = STATE(841), [sym_assignment_expression] = STATE(841), @@ -23595,8 +23879,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(841), [sym_char_literal] = STATE(841), [sym_concatenated_string] = STATE(841), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -23606,77 +23890,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2224), - [sym_false] = ACTIONS(2224), - [sym_null] = ACTIONS(2224), - [sym_identifier] = ACTIONS(2224), + [sym_true] = ACTIONS(2198), + [sym_false] = ACTIONS(2198), + [sym_null] = ACTIONS(2198), + [sym_identifier] = ACTIONS(2198), [sym_comment] = ACTIONS(39), }, - [610] = { + [609] = { [sym_string_literal] = STATE(842), [aux_sym_concatenated_string_repeat1] = STATE(842), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_QMARK] = ACTIONS(1815), - [anon_sym_STAR_EQ] = ACTIONS(1815), - [anon_sym_SLASH_EQ] = ACTIONS(1815), - [anon_sym_PERCENT_EQ] = ACTIONS(1815), - [anon_sym_PLUS_EQ] = ACTIONS(1815), - [anon_sym_DASH_EQ] = ACTIONS(1815), - [anon_sym_LT_LT_EQ] = ACTIONS(1815), - [anon_sym_GT_GT_EQ] = ACTIONS(1815), - [anon_sym_AMP_EQ] = ACTIONS(1815), - [anon_sym_CARET_EQ] = ACTIONS(1815), - [anon_sym_PIPE_EQ] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1815), - [anon_sym_AMP_AMP] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1815), - [anon_sym_BANG_EQ] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1815), - [anon_sym_GT_EQ] = ACTIONS(1815), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_DASH_GT] = ACTIONS(1815), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_CARET] = ACTIONS(1780), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1780), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, - [611] = { - [sym_parameter_list] = STATE(383), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(2226), - [anon_sym_SEMI] = ACTIONS(2226), + [610] = { + [sym_parameter_list] = STATE(381), + [anon_sym_COMMA] = ACTIONS(2200), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(871), - [anon_sym_COLON] = ACTIONS(2226), + [anon_sym_COLON] = ACTIONS(2200), [sym_comment] = ACTIONS(39), }, - [612] = { - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_COMMA] = ACTIONS(2228), - [anon_sym_RPAREN] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_COLON] = ACTIONS(2228), + [611] = { + [anon_sym_COMMA] = ACTIONS(2202), + [anon_sym_RPAREN] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_COLON] = ACTIONS(2202), [sym_comment] = ACTIONS(39), }, - [613] = { + [612] = { [sym__expression] = STATE(844), [sym_conditional_expression] = STATE(844), [sym_assignment_expression] = STATE(844), @@ -23696,110 +23980,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(844), [sym_char_literal] = STATE(844), [sym_concatenated_string] = STATE(844), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_RBRACK] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2234), - [sym_false] = ACTIONS(2234), - [sym_null] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2234), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_RBRACK] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(2206), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_identifier] = ACTIONS(2208), [sym_comment] = ACTIONS(39), }, - [614] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2230), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [613] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2204), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [615] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(2236), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [614] = { + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2210), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [616] = { + [615] = { [sym__expression] = STATE(846), [sym_conditional_expression] = STATE(846), [sym_assignment_expression] = STATE(846), @@ -23819,8 +24103,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(846), [sym_char_literal] = STATE(846), [sym_concatenated_string] = STATE(846), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [sym_string_literal] = STATE(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -23830,99 +24114,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2240), - [sym_false] = ACTIONS(2240), - [sym_null] = ACTIONS(2240), - [sym_identifier] = ACTIONS(2240), + [sym_true] = ACTIONS(2214), + [sym_false] = ACTIONS(2214), + [sym_null] = ACTIONS(2214), + [sym_identifier] = ACTIONS(2214), [sym_comment] = ACTIONS(39), }, - [617] = { - [aux_sym_field_declaration_repeat1] = STATE(617), - [anon_sym_COMMA] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2226), - [anon_sym_COLON] = ACTIONS(2226), + [616] = { + [aux_sym_field_declaration_repeat1] = STATE(616), + [anon_sym_COMMA] = ACTIONS(2216), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_COLON] = ACTIONS(2200), [sym_comment] = ACTIONS(39), }, - [618] = { - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_COMMA] = ACTIONS(2245), - [anon_sym_RPAREN] = ACTIONS(2245), - [anon_sym_LBRACK] = ACTIONS(2245), + [617] = { + [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_RPAREN] = ACTIONS(2219), + [anon_sym_LPAREN2] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2219), [sym_comment] = ACTIONS(39), }, - [619] = { - [sym_parameter_list] = STATE(394), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(2247), - [anon_sym_RPAREN] = ACTIONS(2247), + [618] = { + [sym_parameter_list] = STATE(392), + [anon_sym_COMMA] = ACTIONS(2221), + [anon_sym_RPAREN] = ACTIONS(2221), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(935), [sym_comment] = ACTIONS(39), }, - [620] = { - [sym_type_qualifier] = STATE(620), - [aux_sym_type_definition_repeat1] = STATE(620), - [anon_sym_LPAREN] = ACTIONS(950), + [619] = { + [sym_type_qualifier] = STATE(619), + [aux_sym_type_definition_repeat1] = STATE(619), [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_LPAREN2] = ACTIONS(950), [anon_sym_STAR] = ACTIONS(950), [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_restrict] = ACTIONS(2249), - [anon_sym_volatile] = ACTIONS(2249), - [anon_sym__Atomic] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2223), + [anon_sym_restrict] = ACTIONS(2223), + [anon_sym_volatile] = ACTIONS(2223), + [anon_sym__Atomic] = ACTIONS(2223), [sym_comment] = ACTIONS(39), }, - [621] = { - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_COMMA] = ACTIONS(2252), - [anon_sym_RPAREN] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), + [620] = { + [anon_sym_COMMA] = ACTIONS(2226), + [anon_sym_RPAREN] = ACTIONS(2226), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), [sym_comment] = ACTIONS(39), }, - [622] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2254), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [621] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2228), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [623] = { + [622] = { [sym__expression] = STATE(848), [sym_conditional_expression] = STATE(848), [sym_assignment_expression] = STATE(848), @@ -23942,160 +24226,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(848), [sym_char_literal] = STATE(848), [sym_concatenated_string] = STATE(848), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_RBRACK] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(2256), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2258), - [sym_false] = ACTIONS(2258), - [sym_null] = ACTIONS(2258), - [sym_identifier] = ACTIONS(2258), - [sym_comment] = ACTIONS(39), - }, - [624] = { - [anon_sym_COMMA] = ACTIONS(2260), - [anon_sym_RPAREN] = ACTIONS(2260), - [sym_comment] = ACTIONS(39), - }, - [625] = { - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_COMMA] = ACTIONS(2262), - [anon_sym_RPAREN] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_EQ] = ACTIONS(2262), - [anon_sym_COLON] = ACTIONS(2262), - [sym_comment] = ACTIONS(39), - }, - [626] = { - [aux_sym_parameter_list_repeat1] = STATE(626), - [anon_sym_COMMA] = ACTIONS(2264), - [anon_sym_RPAREN] = ACTIONS(2260), - [sym_comment] = ACTIONS(39), - }, - [627] = { - [sym__declarator] = STATE(122), - [sym__abstract_declarator] = STATE(388), - [sym_pointer_declarator] = STATE(122), - [sym_abstract_pointer_declarator] = STATE(388), - [sym_function_declarator] = STATE(122), - [sym_abstract_function_declarator] = STATE(388), - [sym_array_declarator] = STATE(122), - [sym_abstract_array_declarator] = STATE(388), - [sym_type_qualifier] = STATE(849), - [sym_parameter_list] = STATE(213), - [aux_sym_type_definition_repeat1] = STATE(849), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(516), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(235), - [sym_comment] = ACTIONS(39), - }, - [628] = { - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_COMMA] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(2271), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(84), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [sym_identifier] = ACTIONS(86), - [sym_comment] = ACTIONS(39), - }, - [629] = { - [sym__declarator] = STATE(219), - [sym__abstract_declarator] = STATE(619), - [sym_pointer_declarator] = STATE(219), - [sym_abstract_pointer_declarator] = STATE(619), - [sym_function_declarator] = STATE(219), - [sym_abstract_function_declarator] = STATE(619), - [sym_array_declarator] = STATE(219), - [sym_abstract_array_declarator] = STATE(619), - [sym_type_qualifier] = STATE(850), - [sym_parameter_list] = STATE(213), - [aux_sym_type_definition_repeat1] = STATE(850), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(516), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(530), - [sym_comment] = ACTIONS(39), - }, - [630] = { - [sym_storage_class_specifier] = STATE(630), - [sym_type_qualifier] = STATE(630), - [aux_sym__declaration_specifiers_repeat1] = STATE(630), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_COMMA] = ACTIONS(644), - [anon_sym_RPAREN] = ACTIONS(644), - [anon_sym_extern] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_static] = ACTIONS(303), - [anon_sym_auto] = ACTIONS(303), - [anon_sym_register] = ACTIONS(303), - [anon_sym_inline] = ACTIONS(303), - [anon_sym_const] = ACTIONS(306), - [anon_sym_restrict] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym__Atomic] = ACTIONS(306), - [sym_identifier] = ACTIONS(309), - [sym_comment] = ACTIONS(39), - }, - [631] = { - [sym_storage_class_specifier] = STATE(630), - [sym_type_qualifier] = STATE(630), - [aux_sym__declaration_specifiers_repeat1] = STATE(630), - [anon_sym_LPAREN] = ACTIONS(646), - [anon_sym_COMMA] = ACTIONS(646), - [anon_sym_RPAREN] = ACTIONS(646), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(648), + [sym_string_literal] = STATE(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_RBRACK] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2232), + [sym_false] = ACTIONS(2232), + [sym_null] = ACTIONS(2232), + [sym_identifier] = ACTIONS(2232), [sym_comment] = ACTIONS(39), }, - [632] = { + [623] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(328), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(328), - [anon_sym_LPAREN] = ACTIONS(326), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(328), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(328), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(328), @@ -24105,6 +24259,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(328), [anon_sym_LBRACE] = ACTIONS(326), [anon_sym_RBRACE] = ACTIONS(326), + [anon_sym_LPAREN2] = ACTIONS(326), [anon_sym_STAR] = ACTIONS(326), [anon_sym_static] = ACTIONS(328), [anon_sym_auto] = ACTIONS(328), @@ -24149,853 +24304,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(328), [sym_comment] = ACTIONS(39), }, - [633] = { + [624] = { [aux_sym_string_literal_repeat1] = STATE(136), - [anon_sym_DQUOTE] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2234), [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(332), [sym_escape_sequence] = ACTIONS(334), [sym_comment] = ACTIONS(49), }, - [634] = { - [anon_sym_RPAREN] = ACTIONS(2276), + [625] = { + [sym_preproc_arg] = ACTIONS(2236), + [sym_comment] = ACTIONS(49), + }, + [626] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2238), + [sym_preproc_directive] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2240), + [anon_sym_typedef] = ACTIONS(2238), + [anon_sym_extern] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2240), + [anon_sym_LPAREN2] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_auto] = ACTIONS(2238), + [anon_sym_register] = ACTIONS(2238), + [anon_sym_inline] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_restrict] = ACTIONS(2238), + [anon_sym_volatile] = ACTIONS(2238), + [anon_sym__Atomic] = ACTIONS(2238), + [anon_sym_unsigned] = ACTIONS(2238), + [anon_sym_long] = ACTIONS(2238), + [anon_sym_short] = ACTIONS(2238), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [anon_sym_struct] = ACTIONS(2238), + [anon_sym_union] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_switch] = ACTIONS(2238), + [anon_sym_case] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_do] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_goto] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_TILDE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2240), + [anon_sym_PLUS_PLUS] = ACTIONS(2240), + [anon_sym_sizeof] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_SQUOTE] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2240), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [sym_null] = ACTIONS(2238), + [sym_identifier] = ACTIONS(2238), [sym_comment] = ACTIONS(39), }, - [635] = { - [sym_type_qualifier] = STATE(118), - [sym__type_specifier] = STATE(116), - [sym_sized_type_specifier] = STATE(116), - [sym_enum_specifier] = STATE(116), - [sym_struct_specifier] = STATE(116), - [sym_union_specifier] = STATE(116), - [sym__expression] = STATE(415), - [sym_comma_expression] = STATE(416), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_pointer_expression] = STATE(415), - [sym_logical_expression] = STATE(415), - [sym_bitwise_expression] = STATE(415), - [sym_equality_expression] = STATE(415), - [sym_relational_expression] = STATE(415), - [sym_shift_expression] = STATE(415), - [sym_math_expression] = STATE(415), - [sym_cast_expression] = STATE(415), - [sym_type_descriptor] = STATE(853), - [sym_sizeof_expression] = STATE(415), - [sym_subscript_expression] = STATE(415), - [sym_call_expression] = STATE(415), - [sym_field_expression] = STATE(415), - [sym_compound_literal_expression] = STATE(415), - [sym_parenthesized_expression] = STATE(415), - [sym_char_literal] = STATE(415), - [sym_concatenated_string] = STATE(415), - [sym_string_literal] = STATE(418), - [sym_macro_type_specifier] = STATE(116), - [aux_sym_type_definition_repeat1] = STATE(118), - [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_identifier] = ACTIONS(992), - [sym_comment] = ACTIONS(39), - }, - [636] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_RPAREN] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1737), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_STAR_EQ] = ACTIONS(1735), - [anon_sym_SLASH_EQ] = ACTIONS(1735), - [anon_sym_PERCENT_EQ] = ACTIONS(1735), - [anon_sym_PLUS_EQ] = ACTIONS(1735), - [anon_sym_DASH_EQ] = ACTIONS(1735), - [anon_sym_LT_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_GT_EQ] = ACTIONS(1735), - [anon_sym_AMP_EQ] = ACTIONS(1735), - [anon_sym_CARET_EQ] = ACTIONS(1735), - [anon_sym_PIPE_EQ] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(1735), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [637] = { - [sym__expression] = STATE(854), - [sym_comma_expression] = STATE(738), - [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(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_identifier] = ACTIONS(2280), - [sym_comment] = ACTIONS(39), - }, - [638] = { - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_RBRACK] = ACTIONS(2282), - [anon_sym_EQ] = ACTIONS(2284), - [anon_sym_COLON] = ACTIONS(2282), - [anon_sym_QMARK] = ACTIONS(2282), - [anon_sym_STAR_EQ] = ACTIONS(2282), - [anon_sym_SLASH_EQ] = ACTIONS(2282), - [anon_sym_PERCENT_EQ] = ACTIONS(2282), - [anon_sym_PLUS_EQ] = ACTIONS(2282), - [anon_sym_DASH_EQ] = ACTIONS(2282), - [anon_sym_LT_LT_EQ] = ACTIONS(2282), - [anon_sym_GT_GT_EQ] = ACTIONS(2282), - [anon_sym_AMP_EQ] = ACTIONS(2282), - [anon_sym_CARET_EQ] = ACTIONS(2282), - [anon_sym_PIPE_EQ] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2284), - [anon_sym_EQ_EQ] = ACTIONS(2282), - [anon_sym_BANG_EQ] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_GT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2282), - [anon_sym_GT_EQ] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2284), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PERCENT] = ACTIONS(2284), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_DASH_GT] = ACTIONS(2282), - [sym_comment] = ACTIONS(39), - }, - [639] = { - [sym__expression] = STATE(739), - [sym_conditional_expression] = STATE(739), - [sym_assignment_expression] = STATE(739), - [sym_pointer_expression] = STATE(739), - [sym_logical_expression] = STATE(739), - [sym_bitwise_expression] = STATE(739), - [sym_equality_expression] = STATE(739), - [sym_relational_expression] = STATE(739), - [sym_shift_expression] = STATE(739), - [sym_math_expression] = STATE(739), - [sym_cast_expression] = STATE(739), - [sym_sizeof_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_call_expression] = STATE(739), - [sym_field_expression] = STATE(739), - [sym_compound_literal_expression] = STATE(739), - [sym_parenthesized_expression] = STATE(739), - [sym_char_literal] = STATE(739), - [sym_concatenated_string] = STATE(739), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_identifier] = ACTIONS(1759), - [sym_comment] = ACTIONS(39), - }, - [640] = { - [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(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2286), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_identifier] = ACTIONS(2288), - [sym_comment] = ACTIONS(39), - }, - [641] = { - [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(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2290), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2292), - [sym_false] = ACTIONS(2292), - [sym_null] = ACTIONS(2292), - [sym_identifier] = ACTIONS(2292), - [sym_comment] = ACTIONS(39), - }, - [642] = { - [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(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2294), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2296), - [sym_false] = ACTIONS(2296), - [sym_null] = ACTIONS(2296), - [sym_identifier] = ACTIONS(2296), - [sym_comment] = ACTIONS(39), - }, - [643] = { - [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(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2298), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2300), - [sym_false] = ACTIONS(2300), - [sym_null] = ACTIONS(2300), - [sym_identifier] = ACTIONS(2300), - [sym_comment] = ACTIONS(39), - }, - [644] = { - [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(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2304), - [sym_false] = ACTIONS(2304), - [sym_null] = ACTIONS(2304), - [sym_identifier] = ACTIONS(2304), - [sym_comment] = ACTIONS(39), - }, - [645] = { - [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(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2306), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2308), - [sym_false] = ACTIONS(2308), - [sym_null] = ACTIONS(2308), - [sym_identifier] = ACTIONS(2308), - [sym_comment] = ACTIONS(39), - }, - [646] = { - [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(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2312), - [sym_false] = ACTIONS(2312), - [sym_null] = ACTIONS(2312), - [sym_identifier] = ACTIONS(2312), - [sym_comment] = ACTIONS(39), - }, - [647] = { - [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(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2314), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2316), - [sym_false] = ACTIONS(2316), - [sym_null] = ACTIONS(2316), - [sym_identifier] = ACTIONS(2316), - [sym_comment] = ACTIONS(39), - }, - [648] = { - [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(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2318), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2320), - [sym_false] = ACTIONS(2320), - [sym_null] = ACTIONS(2320), - [sym_identifier] = ACTIONS(2320), - [sym_comment] = ACTIONS(39), - }, - [649] = { - [sym__expression] = STATE(864), - [sym_conditional_expression] = STATE(864), - [sym_assignment_expression] = STATE(864), - [sym_pointer_expression] = STATE(864), - [sym_logical_expression] = STATE(864), - [sym_bitwise_expression] = STATE(864), - [sym_equality_expression] = STATE(864), - [sym_relational_expression] = STATE(864), - [sym_shift_expression] = STATE(864), - [sym_math_expression] = STATE(864), - [sym_cast_expression] = STATE(864), - [sym_sizeof_expression] = STATE(864), - [sym_subscript_expression] = STATE(864), - [sym_call_expression] = STATE(864), - [sym_field_expression] = STATE(864), - [sym_compound_literal_expression] = STATE(864), - [sym_parenthesized_expression] = STATE(864), - [sym_char_literal] = STATE(864), - [sym_concatenated_string] = STATE(864), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2322), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2324), - [sym_false] = ACTIONS(2324), - [sym_null] = ACTIONS(2324), - [sym_identifier] = ACTIONS(2324), - [sym_comment] = ACTIONS(39), - }, - [650] = { - [sym__expression] = STATE(865), - [sym_conditional_expression] = STATE(865), - [sym_assignment_expression] = STATE(865), - [sym_pointer_expression] = STATE(865), - [sym_logical_expression] = STATE(865), - [sym_bitwise_expression] = STATE(865), - [sym_equality_expression] = STATE(865), - [sym_relational_expression] = STATE(865), - [sym_shift_expression] = STATE(865), - [sym_math_expression] = STATE(865), - [sym_cast_expression] = STATE(865), - [sym_sizeof_expression] = STATE(865), - [sym_subscript_expression] = STATE(865), - [sym_call_expression] = STATE(865), - [sym_field_expression] = STATE(865), - [sym_compound_literal_expression] = STATE(865), - [sym_parenthesized_expression] = STATE(865), - [sym_char_literal] = STATE(865), - [sym_concatenated_string] = STATE(865), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(2328), - [sym_comment] = ACTIONS(39), - }, - [651] = { - [sym__expression] = STATE(866), - [sym_conditional_expression] = STATE(866), - [sym_assignment_expression] = STATE(866), - [sym_pointer_expression] = STATE(866), - [sym_logical_expression] = STATE(866), - [sym_bitwise_expression] = STATE(866), - [sym_equality_expression] = STATE(866), - [sym_relational_expression] = STATE(866), - [sym_shift_expression] = STATE(866), - [sym_math_expression] = STATE(866), - [sym_cast_expression] = STATE(866), - [sym_sizeof_expression] = STATE(866), - [sym_subscript_expression] = STATE(866), - [sym_call_expression] = STATE(866), - [sym_field_expression] = STATE(866), - [sym_compound_literal_expression] = STATE(866), - [sym_parenthesized_expression] = STATE(866), - [sym_initializer_list] = STATE(867), - [sym_char_literal] = STATE(866), - [sym_concatenated_string] = STATE(866), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2332), - [sym_comment] = ACTIONS(39), - }, - [652] = { - [sym_string_literal] = STATE(868), - [aux_sym_concatenated_string_repeat1] = STATE(868), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_COMMA] = ACTIONS(1815), - [anon_sym_RPAREN] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_QMARK] = ACTIONS(1815), - [anon_sym_STAR_EQ] = ACTIONS(1815), - [anon_sym_SLASH_EQ] = ACTIONS(1815), - [anon_sym_PERCENT_EQ] = ACTIONS(1815), - [anon_sym_PLUS_EQ] = ACTIONS(1815), - [anon_sym_DASH_EQ] = ACTIONS(1815), - [anon_sym_LT_LT_EQ] = ACTIONS(1815), - [anon_sym_GT_GT_EQ] = ACTIONS(1815), - [anon_sym_AMP_EQ] = ACTIONS(1815), - [anon_sym_CARET_EQ] = ACTIONS(1815), - [anon_sym_PIPE_EQ] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1815), - [anon_sym_AMP_AMP] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1815), - [anon_sym_BANG_EQ] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1815), - [anon_sym_GT_EQ] = ACTIONS(1815), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_DASH_GT] = ACTIONS(1815), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_comment] = ACTIONS(39), - }, - [653] = { - [sym_preproc_arg] = ACTIONS(2334), - [sym_comment] = ACTIONS(49), - }, - [654] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2336), - [anon_sym_LPAREN] = ACTIONS(2338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2336), - [sym_preproc_directive] = ACTIONS(2336), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_typedef] = ACTIONS(2336), - [anon_sym_extern] = ACTIONS(2336), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2336), - [anon_sym_auto] = ACTIONS(2336), - [anon_sym_register] = ACTIONS(2336), - [anon_sym_inline] = ACTIONS(2336), - [anon_sym_const] = ACTIONS(2336), - [anon_sym_restrict] = ACTIONS(2336), - [anon_sym_volatile] = ACTIONS(2336), - [anon_sym__Atomic] = ACTIONS(2336), - [anon_sym_unsigned] = ACTIONS(2336), - [anon_sym_long] = ACTIONS(2336), - [anon_sym_short] = ACTIONS(2336), - [sym_primitive_type] = ACTIONS(2336), - [anon_sym_enum] = ACTIONS(2336), - [anon_sym_struct] = ACTIONS(2336), - [anon_sym_union] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_switch] = ACTIONS(2336), - [anon_sym_case] = ACTIONS(2336), - [anon_sym_default] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_do] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_goto] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_sizeof] = ACTIONS(2336), - [sym_number_literal] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [sym_true] = ACTIONS(2336), - [sym_false] = ACTIONS(2336), - [sym_null] = ACTIONS(2336), - [sym_identifier] = ACTIONS(2336), - [sym_comment] = ACTIONS(39), - }, - [655] = { - [sym_identifier] = ACTIONS(2340), + [627] = { + [sym_identifier] = ACTIONS(2242), [sym_comment] = ACTIONS(39), }, - [656] = { - [sym_identifier] = ACTIONS(2342), + [628] = { + [sym_identifier] = ACTIONS(2244), [sym_comment] = ACTIONS(39), }, - [657] = { - [sym_preproc_include] = STATE(893), - [sym_preproc_def] = STATE(893), - [sym_preproc_function_def] = STATE(893), - [sym_preproc_call] = STATE(893), - [sym_preproc_if_in_compound_statement] = STATE(888), - [sym_preproc_ifdef_in_compound_statement] = STATE(889), - [sym_declaration] = STATE(893), - [sym_type_definition] = STATE(893), - [sym__declaration_specifiers] = STATE(890), - [sym_compound_statement] = STATE(893), + [629] = { + [sym_preproc_include] = STATE(874), + [sym_preproc_def] = STATE(874), + [sym_preproc_function_def] = STATE(874), + [sym_preproc_call] = STATE(874), + [sym_preproc_if_in_compound_statement] = STATE(869), + [sym_preproc_ifdef_in_compound_statement] = STATE(870), + [sym_declaration] = STATE(874), + [sym_type_definition] = STATE(874), + [sym__declaration_specifiers] = STATE(871), + [sym_compound_statement] = STATE(874), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -25003,57 +24398,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(893), - [sym_expression_statement] = STATE(893), - [sym_if_statement] = STATE(893), - [sym_switch_statement] = STATE(893), - [sym_case_statement] = STATE(893), - [sym_while_statement] = STATE(893), - [sym_do_statement] = STATE(893), - [sym_for_statement] = STATE(893), - [sym_return_statement] = STATE(893), - [sym_break_statement] = STATE(893), - [sym_continue_statement] = STATE(893), - [sym_goto_statement] = STATE(893), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [sym__empty_declaration] = STATE(893), + [sym_labeled_statement] = STATE(874), + [sym_expression_statement] = STATE(874), + [sym_if_statement] = STATE(874), + [sym_switch_statement] = STATE(874), + [sym_case_statement] = STATE(874), + [sym_while_statement] = STATE(874), + [sym_do_statement] = STATE(874), + [sym_for_statement] = STATE(874), + [sym_return_statement] = STATE(874), + [sym_break_statement] = STATE(874), + [sym_continue_statement] = STATE(874), + [sym_goto_statement] = STATE(874), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [sym__empty_declaration] = STATE(874), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(893), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(874), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(366), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2350), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2246), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2248), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2250), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2252), [sym_preproc_directive] = ACTIONS(378), - [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2254), [anon_sym_typedef] = ACTIONS(380), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -25069,248 +24464,251 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(2380), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(2282), [sym_comment] = ACTIONS(39), }, - [658] = { - [sym_preproc_arg] = ACTIONS(2382), + [630] = { + [sym_preproc_arg] = ACTIONS(2284), [sym_comment] = ACTIONS(49), }, - [659] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1000), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1000), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1000), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1000), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1000), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1000), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), - [sym_identifier] = ACTIONS(1000), + [631] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(962), + [sym_preproc_directive] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_typedef] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_static] = ACTIONS(962), + [anon_sym_auto] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_inline] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [anon_sym_restrict] = ACTIONS(962), + [anon_sym_volatile] = ACTIONS(962), + [anon_sym__Atomic] = ACTIONS(962), + [anon_sym_unsigned] = ACTIONS(962), + [anon_sym_long] = ACTIONS(962), + [anon_sym_short] = ACTIONS(962), + [sym_primitive_type] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(962), + [anon_sym_struct] = ACTIONS(962), + [anon_sym_union] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_switch] = ACTIONS(962), + [anon_sym_case] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_goto] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_PLUS_PLUS] = ACTIONS(964), + [anon_sym_sizeof] = ACTIONS(962), + [sym_number_literal] = ACTIONS(964), + [anon_sym_SQUOTE] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym_true] = ACTIONS(962), + [sym_false] = ACTIONS(962), + [sym_null] = ACTIONS(962), + [sym_identifier] = ACTIONS(962), [sym_comment] = ACTIONS(39), }, - [660] = { - [anon_sym_LPAREN] = ACTIONS(2384), + [632] = { + [sym_parenthesized_expression] = STATE(876), + [anon_sym_LPAREN2] = ACTIONS(994), [sym_comment] = ACTIONS(39), }, - [661] = { - [anon_sym_LPAREN] = ACTIONS(2386), + [633] = { + [sym_parenthesized_expression] = STATE(877), + [anon_sym_LPAREN2] = ACTIONS(994), [sym_comment] = ACTIONS(39), }, - [662] = { - [sym__expression] = STATE(897), - [sym_conditional_expression] = STATE(897), - [sym_assignment_expression] = STATE(897), - [sym_pointer_expression] = STATE(897), - [sym_logical_expression] = STATE(897), - [sym_bitwise_expression] = STATE(897), - [sym_equality_expression] = STATE(897), - [sym_relational_expression] = STATE(897), - [sym_shift_expression] = STATE(897), - [sym_math_expression] = STATE(897), - [sym_cast_expression] = STATE(897), - [sym_sizeof_expression] = STATE(897), - [sym_subscript_expression] = STATE(897), - [sym_call_expression] = STATE(897), - [sym_field_expression] = STATE(897), - [sym_compound_literal_expression] = STATE(897), - [sym_parenthesized_expression] = STATE(897), - [sym_char_literal] = STATE(897), - [sym_concatenated_string] = STATE(897), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2388), - [anon_sym_SQUOTE] = ACTIONS(598), + [634] = { + [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(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2390), - [sym_false] = ACTIONS(2390), - [sym_null] = ACTIONS(2390), - [sym_identifier] = ACTIONS(2390), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2288), [sym_comment] = ACTIONS(39), }, - [663] = { - [anon_sym_COLON] = ACTIONS(2392), + [635] = { + [anon_sym_COLON] = ACTIONS(2290), [sym_comment] = ACTIONS(39), }, - [664] = { - [anon_sym_LPAREN] = ACTIONS(2394), + [636] = { + [sym_parenthesized_expression] = STATE(880), + [anon_sym_LPAREN2] = ACTIONS(994), [sym_comment] = ACTIONS(39), }, - [665] = { - [sym_compound_statement] = STATE(900), - [sym_labeled_statement] = STATE(900), - [sym_expression_statement] = STATE(900), - [sym_if_statement] = STATE(900), - [sym_switch_statement] = STATE(900), - [sym_case_statement] = STATE(900), - [sym_while_statement] = STATE(900), - [sym_do_statement] = STATE(900), - [sym_for_statement] = STATE(900), - [sym_return_statement] = STATE(900), - [sym_break_statement] = STATE(900), - [sym_continue_statement] = STATE(900), - [sym_goto_statement] = STATE(900), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1050), + [637] = { + [sym_compound_statement] = STATE(881), + [sym_labeled_statement] = STATE(881), + [sym_expression_statement] = STATE(881), + [sym_if_statement] = STATE(881), + [sym_switch_statement] = STATE(881), + [sym_case_statement] = STATE(881), + [sym_while_statement] = STATE(881), + [sym_do_statement] = STATE(881), + [sym_for_statement] = STATE(881), + [sym_return_statement] = STATE(881), + [sym_break_statement] = STATE(881), + [sym_continue_statement] = STATE(881), + [sym_goto_statement] = STATE(881), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1030), [sym_comment] = ACTIONS(39), }, - [666] = { - [anon_sym_LPAREN] = ACTIONS(2396), + [638] = { + [anon_sym_LPAREN2] = ACTIONS(2292), [sym_comment] = ACTIONS(39), }, - [667] = { - [sym__expression] = STATE(903), - [sym_conditional_expression] = STATE(903), - [sym_assignment_expression] = STATE(903), - [sym_pointer_expression] = STATE(903), - [sym_logical_expression] = STATE(903), - [sym_bitwise_expression] = STATE(903), - [sym_equality_expression] = STATE(903), - [sym_relational_expression] = STATE(903), - [sym_shift_expression] = STATE(903), - [sym_math_expression] = STATE(903), - [sym_cast_expression] = STATE(903), - [sym_sizeof_expression] = STATE(903), - [sym_subscript_expression] = STATE(903), - [sym_call_expression] = STATE(903), - [sym_field_expression] = STATE(903), - [sym_compound_literal_expression] = STATE(903), - [sym_parenthesized_expression] = STATE(903), - [sym_char_literal] = STATE(903), - [sym_concatenated_string] = STATE(903), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(2398), + [639] = { + [sym__expression] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(884), + [sym_logical_expression] = STATE(884), + [sym_bitwise_expression] = STATE(884), + [sym_equality_expression] = STATE(884), + [sym_relational_expression] = STATE(884), + [sym_shift_expression] = STATE(884), + [sym_math_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_call_expression] = STATE(884), + [sym_field_expression] = STATE(884), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(884), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -25320,276 +24718,276 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2400), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2402), - [sym_false] = ACTIONS(2402), - [sym_null] = ACTIONS(2402), - [sym_identifier] = ACTIONS(2402), + [sym_true] = ACTIONS(2298), + [sym_false] = ACTIONS(2298), + [sym_null] = ACTIONS(2298), + [sym_identifier] = ACTIONS(2298), [sym_comment] = ACTIONS(39), }, - [668] = { - [anon_sym_SEMI] = ACTIONS(2404), + [640] = { + [anon_sym_SEMI] = ACTIONS(2300), [sym_comment] = ACTIONS(39), }, - [669] = { - [anon_sym_SEMI] = ACTIONS(2406), + [641] = { + [anon_sym_SEMI] = ACTIONS(2302), [sym_comment] = ACTIONS(39), }, - [670] = { - [sym_identifier] = ACTIONS(2408), + [642] = { + [sym_identifier] = ACTIONS(2304), [sym_comment] = ACTIONS(39), }, - [671] = { - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2410), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), - [sym_identifier] = ACTIONS(86), + [643] = { + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_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_COLON] = ACTIONS(2306), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, - [672] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1102), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1104), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1102), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1102), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1102), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1102), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1102), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1102), - [sym_preproc_directive] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1104), - [anon_sym_typedef] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1102), - [anon_sym_auto] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_inline] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_restrict] = ACTIONS(1102), - [anon_sym_volatile] = ACTIONS(1102), - [anon_sym__Atomic] = ACTIONS(1102), - [anon_sym_unsigned] = ACTIONS(1102), - [anon_sym_long] = ACTIONS(1102), - [anon_sym_short] = ACTIONS(1102), - [sym_primitive_type] = ACTIONS(1102), - [anon_sym_enum] = ACTIONS(1102), - [anon_sym_struct] = ACTIONS(1102), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_switch] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_default] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_goto] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [anon_sym_sizeof] = ACTIONS(1102), - [sym_number_literal] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym_true] = ACTIONS(1102), - [sym_false] = ACTIONS(1102), - [sym_null] = ACTIONS(1102), - [sym_identifier] = ACTIONS(1102), + [644] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), + [sym_identifier] = ACTIONS(1082), [sym_comment] = ACTIONS(39), }, - [673] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1106), - [sym_preproc_directive] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_inline] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [anon_sym__Atomic] = ACTIONS(1106), - [anon_sym_unsigned] = ACTIONS(1106), - [anon_sym_long] = ACTIONS(1106), - [anon_sym_short] = ACTIONS(1106), - [sym_primitive_type] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_switch] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1106), - [anon_sym_default] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_goto] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_sizeof] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym_true] = ACTIONS(1106), - [sym_false] = ACTIONS(1106), - [sym_null] = ACTIONS(1106), - [sym_identifier] = ACTIONS(1106), + [645] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), + [sym_identifier] = ACTIONS(1086), [sym_comment] = ACTIONS(39), }, - [674] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2412), + [646] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2308), [sym_comment] = ACTIONS(39), }, - [675] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2414), + [647] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2310), [sym_comment] = ACTIONS(39), }, - [676] = { - [sym__declarator] = STATE(910), - [sym_pointer_declarator] = STATE(910), - [sym_function_declarator] = STATE(910), - [sym_array_declarator] = STATE(910), + [648] = { + [sym__declarator] = STATE(891), + [sym_pointer_declarator] = STATE(891), + [sym_function_declarator] = STATE(891), + [sym_array_declarator] = STATE(891), [sym_init_declarator] = STATE(167), - [anon_sym_LPAREN] = ACTIONS(90), [anon_sym_SEMI] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(540), - [sym_identifier] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(92), + [anon_sym_STAR] = ACTIONS(534), + [sym_identifier] = ACTIONS(2312), [sym_comment] = ACTIONS(39), }, - [677] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [649] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(1104), + [anon_sym_STAR_EQ] = ACTIONS(1106), + [anon_sym_SLASH_EQ] = ACTIONS(1106), + [anon_sym_PERCENT_EQ] = ACTIONS(1106), + [anon_sym_PLUS_EQ] = ACTIONS(1106), + [anon_sym_DASH_EQ] = ACTIONS(1106), + [anon_sym_LT_LT_EQ] = ACTIONS(1106), + [anon_sym_GT_GT_EQ] = ACTIONS(1106), + [anon_sym_AMP_EQ] = ACTIONS(1106), + [anon_sym_CARET_EQ] = ACTIONS(1106), + [anon_sym_PIPE_EQ] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_PIPE_PIPE] = ACTIONS(1110), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1114), + [anon_sym_CARET] = ACTIONS(1116), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [678] = { - [anon_sym_SEMI] = ACTIONS(2418), + [650] = { + [anon_sym_SEMI] = ACTIONS(2314), [sym_comment] = ACTIONS(39), }, - [679] = { - [sym_preproc_include] = STATE(915), - [sym_preproc_def] = STATE(915), - [sym_preproc_function_def] = STATE(915), - [sym_preproc_call] = STATE(915), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(913), - [sym_preproc_elif_in_compound_statement] = STATE(914), - [sym_declaration] = STATE(915), - [sym_type_definition] = STATE(915), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(915), + [651] = { + [sym_preproc_include] = STATE(896), + [sym_preproc_def] = STATE(896), + [sym_preproc_function_def] = STATE(896), + [sym_preproc_call] = STATE(896), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(894), + [sym_preproc_elif_in_compound_statement] = STATE(895), + [sym_declaration] = STATE(896), + [sym_type_definition] = STATE(896), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(896), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -25597,59 +24995,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(915), - [sym_expression_statement] = STATE(915), - [sym_if_statement] = STATE(915), - [sym_switch_statement] = STATE(915), - [sym_case_statement] = STATE(915), - [sym_while_statement] = STATE(915), - [sym_do_statement] = STATE(915), - [sym_for_statement] = STATE(915), - [sym_return_statement] = STATE(915), - [sym_break_statement] = STATE(915), - [sym_continue_statement] = STATE(915), - [sym_goto_statement] = STATE(915), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(915), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(896), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(915), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2420), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2316), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -25665,112 +25063,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [680] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2424), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2422), - [sym_preproc_directive] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_typedef] = ACTIONS(2422), - [anon_sym_extern] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2424), - [anon_sym_static] = ACTIONS(2422), - [anon_sym_auto] = ACTIONS(2422), - [anon_sym_register] = ACTIONS(2422), - [anon_sym_inline] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [anon_sym_restrict] = ACTIONS(2422), - [anon_sym_volatile] = ACTIONS(2422), - [anon_sym__Atomic] = ACTIONS(2422), - [anon_sym_unsigned] = ACTIONS(2422), - [anon_sym_long] = ACTIONS(2422), - [anon_sym_short] = ACTIONS(2422), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2422), - [anon_sym_struct] = ACTIONS(2422), - [anon_sym_union] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_switch] = ACTIONS(2422), - [anon_sym_case] = ACTIONS(2422), - [anon_sym_default] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_do] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_goto] = ACTIONS(2422), - [anon_sym_AMP] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_TILDE] = ACTIONS(2424), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_DASH_DASH] = ACTIONS(2424), - [anon_sym_PLUS_PLUS] = ACTIONS(2424), - [anon_sym_sizeof] = ACTIONS(2422), - [sym_number_literal] = ACTIONS(2424), - [anon_sym_SQUOTE] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2424), - [sym_true] = ACTIONS(2422), - [sym_false] = ACTIONS(2422), - [sym_null] = ACTIONS(2422), - [sym_identifier] = ACTIONS(2422), + [652] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2318), + [sym_preproc_directive] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym_typedef] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_RBRACE] = ACTIONS(2320), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2320), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_auto] = ACTIONS(2318), + [anon_sym_register] = ACTIONS(2318), + [anon_sym_inline] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_restrict] = ACTIONS(2318), + [anon_sym_volatile] = ACTIONS(2318), + [anon_sym__Atomic] = ACTIONS(2318), + [anon_sym_unsigned] = ACTIONS(2318), + [anon_sym_long] = ACTIONS(2318), + [anon_sym_short] = ACTIONS(2318), + [sym_primitive_type] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_goto] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2320), + [anon_sym_TILDE] = ACTIONS(2320), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_sizeof] = ACTIONS(2318), + [sym_number_literal] = ACTIONS(2320), + [anon_sym_SQUOTE] = ACTIONS(2320), + [anon_sym_DQUOTE] = ACTIONS(2320), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2318), [sym_comment] = ACTIONS(39), }, - [681] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2426), + [653] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2322), [sym_comment] = ACTIONS(39), }, - [682] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2428), + [654] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2324), [sym_comment] = ACTIONS(39), }, - [683] = { - [sym_preproc_include] = STATE(915), - [sym_preproc_def] = STATE(915), - [sym_preproc_function_def] = STATE(915), - [sym_preproc_call] = STATE(915), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(919), - [sym_preproc_elif_in_compound_statement] = STATE(920), - [sym_declaration] = STATE(915), - [sym_type_definition] = STATE(915), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(915), + [655] = { + [sym_preproc_include] = STATE(896), + [sym_preproc_def] = STATE(896), + [sym_preproc_function_def] = STATE(896), + [sym_preproc_call] = STATE(896), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(900), + [sym_preproc_elif_in_compound_statement] = STATE(901), + [sym_declaration] = STATE(896), + [sym_type_definition] = STATE(896), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(896), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -25778,59 +25176,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(915), - [sym_expression_statement] = STATE(915), - [sym_if_statement] = STATE(915), - [sym_switch_statement] = STATE(915), - [sym_case_statement] = STATE(915), - [sym_while_statement] = STATE(915), - [sym_do_statement] = STATE(915), - [sym_for_statement] = STATE(915), - [sym_return_statement] = STATE(915), - [sym_break_statement] = STATE(915), - [sym_continue_statement] = STATE(915), - [sym_goto_statement] = STATE(915), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(915), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(896), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(915), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2430), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2326), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -25846,112 +25244,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [684] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2432), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2434), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2432), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2432), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2432), - [sym_preproc_directive] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_typedef] = ACTIONS(2432), - [anon_sym_extern] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2434), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_auto] = ACTIONS(2432), - [anon_sym_register] = ACTIONS(2432), - [anon_sym_inline] = ACTIONS(2432), - [anon_sym_const] = ACTIONS(2432), - [anon_sym_restrict] = ACTIONS(2432), - [anon_sym_volatile] = ACTIONS(2432), - [anon_sym__Atomic] = ACTIONS(2432), - [anon_sym_unsigned] = ACTIONS(2432), - [anon_sym_long] = ACTIONS(2432), - [anon_sym_short] = ACTIONS(2432), - [sym_primitive_type] = ACTIONS(2432), - [anon_sym_enum] = ACTIONS(2432), - [anon_sym_struct] = ACTIONS(2432), - [anon_sym_union] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2432), - [anon_sym_switch] = ACTIONS(2432), - [anon_sym_case] = ACTIONS(2432), - [anon_sym_default] = ACTIONS(2432), - [anon_sym_while] = ACTIONS(2432), - [anon_sym_do] = ACTIONS(2432), - [anon_sym_for] = ACTIONS(2432), - [anon_sym_return] = ACTIONS(2432), - [anon_sym_break] = ACTIONS(2432), - [anon_sym_continue] = ACTIONS(2432), - [anon_sym_goto] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_PLUS] = ACTIONS(2432), - [anon_sym_DASH] = ACTIONS(2432), - [anon_sym_DASH_DASH] = ACTIONS(2434), - [anon_sym_PLUS_PLUS] = ACTIONS(2434), - [anon_sym_sizeof] = ACTIONS(2432), - [sym_number_literal] = ACTIONS(2434), - [anon_sym_SQUOTE] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [sym_true] = ACTIONS(2432), - [sym_false] = ACTIONS(2432), - [sym_null] = ACTIONS(2432), - [sym_identifier] = ACTIONS(2432), + [656] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2328), + [sym_preproc_directive] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_typedef] = ACTIONS(2328), + [anon_sym_extern] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_STAR] = ACTIONS(2330), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_auto] = ACTIONS(2328), + [anon_sym_register] = ACTIONS(2328), + [anon_sym_inline] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_restrict] = ACTIONS(2328), + [anon_sym_volatile] = ACTIONS(2328), + [anon_sym__Atomic] = ACTIONS(2328), + [anon_sym_unsigned] = ACTIONS(2328), + [anon_sym_long] = ACTIONS(2328), + [anon_sym_short] = ACTIONS(2328), + [sym_primitive_type] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [anon_sym_struct] = ACTIONS(2328), + [anon_sym_union] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_goto] = ACTIONS(2328), + [anon_sym_AMP] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2330), + [anon_sym_PLUS_PLUS] = ACTIONS(2330), + [anon_sym_sizeof] = ACTIONS(2328), + [sym_number_literal] = ACTIONS(2330), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2330), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_identifier] = ACTIONS(2328), [sym_comment] = ACTIONS(39), }, - [685] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2436), + [657] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2332), [sym_comment] = ACTIONS(39), }, - [686] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2438), + [658] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2334), [sym_comment] = ACTIONS(39), }, - [687] = { - [sym_preproc_include] = STATE(915), - [sym_preproc_def] = STATE(915), - [sym_preproc_function_def] = STATE(915), - [sym_preproc_call] = STATE(915), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(924), - [sym_preproc_elif_in_compound_statement] = STATE(925), - [sym_declaration] = STATE(915), - [sym_type_definition] = STATE(915), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(915), + [659] = { + [sym_preproc_include] = STATE(896), + [sym_preproc_def] = STATE(896), + [sym_preproc_function_def] = STATE(896), + [sym_preproc_call] = STATE(896), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(905), + [sym_preproc_elif_in_compound_statement] = STATE(906), + [sym_declaration] = STATE(896), + [sym_type_definition] = STATE(896), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(896), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -25959,59 +25357,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(915), - [sym_expression_statement] = STATE(915), - [sym_if_statement] = STATE(915), - [sym_switch_statement] = STATE(915), - [sym_case_statement] = STATE(915), - [sym_while_statement] = STATE(915), - [sym_do_statement] = STATE(915), - [sym_for_statement] = STATE(915), - [sym_return_statement] = STATE(915), - [sym_break_statement] = STATE(915), - [sym_continue_statement] = STATE(915), - [sym_goto_statement] = STATE(915), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(915), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(896), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(915), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2440), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2336), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -26027,68 +25425,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [688] = { + [660] = { + [anon_sym_RPAREN] = ACTIONS(2338), + [sym_comment] = ACTIONS(39), + }, + [661] = { [sym_type_qualifier] = STATE(118), [sym__type_specifier] = STATE(116), [sym_sized_type_specifier] = STATE(116), [sym_enum_specifier] = STATE(116), [sym_struct_specifier] = STATE(116), [sym_union_specifier] = STATE(116), - [sym__expression] = STATE(415), - [sym_comma_expression] = STATE(416), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_pointer_expression] = STATE(415), - [sym_logical_expression] = STATE(415), - [sym_bitwise_expression] = STATE(415), - [sym_equality_expression] = STATE(415), - [sym_relational_expression] = STATE(415), - [sym_shift_expression] = STATE(415), - [sym_math_expression] = STATE(415), - [sym_cast_expression] = STATE(415), - [sym_type_descriptor] = STATE(926), - [sym_sizeof_expression] = STATE(415), - [sym_subscript_expression] = STATE(415), - [sym_call_expression] = STATE(415), - [sym_field_expression] = STATE(415), - [sym_compound_literal_expression] = STATE(415), - [sym_parenthesized_expression] = STATE(415), - [sym_char_literal] = STATE(415), - [sym_concatenated_string] = STATE(415), - [sym_string_literal] = STATE(418), + [sym__expression] = STATE(406), + [sym_comma_expression] = STATE(407), + [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_type_descriptor] = STATE(908), + [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(409), [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -26100,386 +25502,1066 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_identifier] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), [sym_comment] = ACTIONS(39), }, - [689] = { - [sym__expression] = STATE(422), - [sym_conditional_expression] = STATE(422), - [sym_assignment_expression] = STATE(422), - [sym_pointer_expression] = STATE(422), - [sym_logical_expression] = STATE(422), - [sym_bitwise_expression] = STATE(422), - [sym_equality_expression] = STATE(422), - [sym_relational_expression] = STATE(422), - [sym_shift_expression] = STATE(422), - [sym_math_expression] = STATE(422), - [sym_cast_expression] = STATE(422), - [sym_sizeof_expression] = STATE(422), - [sym_subscript_expression] = STATE(422), - [sym_call_expression] = STATE(422), - [sym_field_expression] = STATE(422), - [sym_compound_literal_expression] = STATE(422), - [sym_parenthesized_expression] = STATE(422), - [sym_char_literal] = STATE(422), - [sym_concatenated_string] = STATE(422), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(1008), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1010), - [sym_false] = ACTIONS(1010), - [sym_null] = ACTIONS(1010), - [sym_identifier] = ACTIONS(1010), + [662] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1700), + [anon_sym_RPAREN] = ACTIONS(1700), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1702), + [anon_sym_QMARK] = ACTIONS(1700), + [anon_sym_STAR_EQ] = ACTIONS(1700), + [anon_sym_SLASH_EQ] = ACTIONS(1700), + [anon_sym_PERCENT_EQ] = ACTIONS(1700), + [anon_sym_PLUS_EQ] = ACTIONS(1700), + [anon_sym_DASH_EQ] = ACTIONS(1700), + [anon_sym_LT_LT_EQ] = ACTIONS(1700), + [anon_sym_GT_GT_EQ] = ACTIONS(1700), + [anon_sym_AMP_EQ] = ACTIONS(1700), + [anon_sym_CARET_EQ] = ACTIONS(1700), + [anon_sym_PIPE_EQ] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1700), + [anon_sym_AMP_AMP] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym_EQ_EQ] = ACTIONS(1700), + [anon_sym_BANG_EQ] = ACTIONS(1700), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1700), + [anon_sym_GT_EQ] = ACTIONS(1700), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [690] = { - [sym__expression] = STATE(449), - [sym_conditional_expression] = STATE(449), - [sym_assignment_expression] = STATE(449), - [sym_pointer_expression] = STATE(449), - [sym_logical_expression] = STATE(449), - [sym_bitwise_expression] = STATE(449), - [sym_equality_expression] = STATE(449), - [sym_relational_expression] = STATE(449), - [sym_shift_expression] = STATE(449), - [sym_math_expression] = STATE(449), - [sym_cast_expression] = STATE(449), - [sym_sizeof_expression] = STATE(449), - [sym_subscript_expression] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_field_expression] = STATE(449), - [sym_compound_literal_expression] = STATE(449), - [sym_parenthesized_expression] = STATE(449), - [sym_char_literal] = STATE(449), - [sym_concatenated_string] = STATE(449), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(1066), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1068), - [sym_false] = ACTIONS(1068), - [sym_null] = ACTIONS(1068), - [sym_identifier] = ACTIONS(1068), + [663] = { + [sym__expression] = STATE(909), + [sym_comma_expression] = STATE(730), + [sym_conditional_expression] = STATE(909), + [sym_assignment_expression] = STATE(909), + [sym_pointer_expression] = STATE(909), + [sym_logical_expression] = STATE(909), + [sym_bitwise_expression] = STATE(909), + [sym_equality_expression] = STATE(909), + [sym_relational_expression] = STATE(909), + [sym_shift_expression] = STATE(909), + [sym_math_expression] = STATE(909), + [sym_cast_expression] = STATE(909), + [sym_sizeof_expression] = STATE(909), + [sym_subscript_expression] = STATE(909), + [sym_call_expression] = STATE(909), + [sym_field_expression] = STATE(909), + [sym_compound_literal_expression] = STATE(909), + [sym_parenthesized_expression] = STATE(909), + [sym_char_literal] = STATE(909), + [sym_concatenated_string] = STATE(909), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2342), + [sym_false] = ACTIONS(2342), + [sym_null] = ACTIONS(2342), + [sym_identifier] = ACTIONS(2342), [sym_comment] = ACTIONS(39), }, - [691] = { - [sym__expression] = STATE(450), - [sym_conditional_expression] = STATE(450), - [sym_assignment_expression] = STATE(450), - [sym_pointer_expression] = STATE(450), - [sym_logical_expression] = STATE(450), - [sym_bitwise_expression] = STATE(450), - [sym_equality_expression] = STATE(450), - [sym_relational_expression] = STATE(450), - [sym_shift_expression] = STATE(450), - [sym_math_expression] = STATE(450), - [sym_cast_expression] = STATE(450), - [sym_sizeof_expression] = STATE(450), - [sym_subscript_expression] = STATE(450), - [sym_call_expression] = STATE(450), - [sym_field_expression] = STATE(450), - [sym_compound_literal_expression] = STATE(450), - [sym_parenthesized_expression] = STATE(450), - [sym_char_literal] = STATE(450), - [sym_concatenated_string] = STATE(450), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(1070), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1072), - [sym_false] = ACTIONS(1072), - [sym_null] = ACTIONS(1072), - [sym_identifier] = ACTIONS(1072), + [664] = { + [anon_sym_COMMA] = ACTIONS(2344), + [anon_sym_RPAREN] = ACTIONS(2344), + [anon_sym_SEMI] = ACTIONS(2344), + [anon_sym_RBRACE] = ACTIONS(2344), + [anon_sym_LPAREN2] = ACTIONS(2344), + [anon_sym_STAR] = ACTIONS(2346), + [anon_sym_LBRACK] = ACTIONS(2344), + [anon_sym_RBRACK] = ACTIONS(2344), + [anon_sym_EQ] = ACTIONS(2346), + [anon_sym_COLON] = ACTIONS(2344), + [anon_sym_else] = ACTIONS(2344), + [anon_sym_while] = ACTIONS(2344), + [anon_sym_QMARK] = ACTIONS(2344), + [anon_sym_STAR_EQ] = ACTIONS(2344), + [anon_sym_SLASH_EQ] = ACTIONS(2344), + [anon_sym_PERCENT_EQ] = ACTIONS(2344), + [anon_sym_PLUS_EQ] = ACTIONS(2344), + [anon_sym_DASH_EQ] = ACTIONS(2344), + [anon_sym_LT_LT_EQ] = ACTIONS(2344), + [anon_sym_GT_GT_EQ] = ACTIONS(2344), + [anon_sym_AMP_EQ] = ACTIONS(2344), + [anon_sym_CARET_EQ] = ACTIONS(2344), + [anon_sym_PIPE_EQ] = ACTIONS(2344), + [anon_sym_AMP] = ACTIONS(2346), + [anon_sym_PIPE_PIPE] = ACTIONS(2344), + [anon_sym_AMP_AMP] = ACTIONS(2344), + [anon_sym_PIPE] = ACTIONS(2346), + [anon_sym_CARET] = ACTIONS(2346), + [anon_sym_EQ_EQ] = ACTIONS(2344), + [anon_sym_BANG_EQ] = ACTIONS(2344), + [anon_sym_LT] = ACTIONS(2346), + [anon_sym_GT] = ACTIONS(2346), + [anon_sym_LT_EQ] = ACTIONS(2344), + [anon_sym_GT_EQ] = ACTIONS(2344), + [anon_sym_LT_LT] = ACTIONS(2346), + [anon_sym_GT_GT] = ACTIONS(2346), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_SLASH] = ACTIONS(2346), + [anon_sym_PERCENT] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_DOT] = ACTIONS(2344), + [anon_sym_DASH_GT] = ACTIONS(2344), [sym_comment] = ACTIONS(39), }, - [692] = { - [sym__expression] = STATE(451), - [sym_conditional_expression] = STATE(451), - [sym_assignment_expression] = STATE(451), - [sym_pointer_expression] = STATE(451), - [sym_logical_expression] = STATE(451), - [sym_bitwise_expression] = STATE(451), - [sym_equality_expression] = STATE(451), - [sym_relational_expression] = STATE(451), - [sym_shift_expression] = STATE(451), - [sym_math_expression] = STATE(451), - [sym_cast_expression] = STATE(451), - [sym_sizeof_expression] = STATE(451), - [sym_subscript_expression] = STATE(451), - [sym_call_expression] = STATE(451), - [sym_field_expression] = STATE(451), - [sym_compound_literal_expression] = STATE(451), - [sym_parenthesized_expression] = STATE(451), - [sym_char_literal] = STATE(451), - [sym_concatenated_string] = STATE(451), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(1074), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), - [sym_null] = ACTIONS(1076), - [sym_identifier] = ACTIONS(1076), + [665] = { + [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(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_null] = ACTIONS(1722), + [sym_identifier] = ACTIONS(1722), [sym_comment] = ACTIONS(39), }, - [693] = { - [sym__expression] = STATE(928), - [sym_conditional_expression] = STATE(928), - [sym_assignment_expression] = STATE(928), - [sym_pointer_expression] = STATE(928), - [sym_logical_expression] = STATE(928), - [sym_bitwise_expression] = STATE(928), - [sym_equality_expression] = STATE(928), - [sym_relational_expression] = STATE(928), - [sym_shift_expression] = STATE(928), - [sym_math_expression] = STATE(928), - [sym_cast_expression] = STATE(928), - [sym_sizeof_expression] = STATE(928), - [sym_subscript_expression] = STATE(928), - [sym_call_expression] = STATE(928), - [sym_field_expression] = STATE(928), - [sym_compound_literal_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(928), - [sym_char_literal] = STATE(928), - [sym_concatenated_string] = STATE(928), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2444), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2446), - [sym_false] = ACTIONS(2446), - [sym_null] = ACTIONS(2446), - [sym_identifier] = ACTIONS(2446), + [666] = { + [sym__expression] = STATE(910), + [sym_conditional_expression] = STATE(910), + [sym_assignment_expression] = STATE(910), + [sym_pointer_expression] = STATE(910), + [sym_logical_expression] = STATE(910), + [sym_bitwise_expression] = STATE(910), + [sym_equality_expression] = STATE(910), + [sym_relational_expression] = STATE(910), + [sym_shift_expression] = STATE(910), + [sym_math_expression] = STATE(910), + [sym_cast_expression] = STATE(910), + [sym_sizeof_expression] = STATE(910), + [sym_subscript_expression] = STATE(910), + [sym_call_expression] = STATE(910), + [sym_field_expression] = STATE(910), + [sym_compound_literal_expression] = STATE(910), + [sym_parenthesized_expression] = STATE(910), + [sym_char_literal] = STATE(910), + [sym_concatenated_string] = STATE(910), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2350), + [sym_false] = ACTIONS(2350), + [sym_null] = ACTIONS(2350), + [sym_identifier] = ACTIONS(2350), [sym_comment] = ACTIONS(39), }, - [694] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(2448), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [667] = { + [sym__expression] = STATE(911), + [sym_conditional_expression] = STATE(911), + [sym_assignment_expression] = STATE(911), + [sym_pointer_expression] = STATE(911), + [sym_logical_expression] = STATE(911), + [sym_bitwise_expression] = STATE(911), + [sym_equality_expression] = STATE(911), + [sym_relational_expression] = STATE(911), + [sym_shift_expression] = STATE(911), + [sym_math_expression] = STATE(911), + [sym_cast_expression] = STATE(911), + [sym_sizeof_expression] = STATE(911), + [sym_subscript_expression] = STATE(911), + [sym_call_expression] = STATE(911), + [sym_field_expression] = STATE(911), + [sym_compound_literal_expression] = STATE(911), + [sym_parenthesized_expression] = STATE(911), + [sym_char_literal] = STATE(911), + [sym_concatenated_string] = STATE(911), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2354), + [sym_false] = ACTIONS(2354), + [sym_null] = ACTIONS(2354), + [sym_identifier] = ACTIONS(2354), [sym_comment] = ACTIONS(39), }, - [695] = { - [sym_string_literal] = STATE(942), - [aux_sym_concatenated_string_repeat1] = STATE(942), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_RPAREN] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), + [668] = { + [sym__expression] = STATE(912), + [sym_conditional_expression] = STATE(912), + [sym_assignment_expression] = STATE(912), + [sym_pointer_expression] = STATE(912), + [sym_logical_expression] = STATE(912), + [sym_bitwise_expression] = STATE(912), + [sym_equality_expression] = STATE(912), + [sym_relational_expression] = STATE(912), + [sym_shift_expression] = STATE(912), + [sym_math_expression] = STATE(912), + [sym_cast_expression] = STATE(912), + [sym_sizeof_expression] = STATE(912), + [sym_subscript_expression] = STATE(912), + [sym_call_expression] = STATE(912), + [sym_field_expression] = STATE(912), + [sym_compound_literal_expression] = STATE(912), + [sym_parenthesized_expression] = STATE(912), + [sym_char_literal] = STATE(912), + [sym_concatenated_string] = STATE(912), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2358), + [sym_false] = ACTIONS(2358), + [sym_null] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2358), + [sym_comment] = ACTIONS(39), + }, + [669] = { + [sym__expression] = STATE(913), + [sym_conditional_expression] = STATE(913), + [sym_assignment_expression] = STATE(913), + [sym_pointer_expression] = STATE(913), + [sym_logical_expression] = STATE(913), + [sym_bitwise_expression] = STATE(913), + [sym_equality_expression] = STATE(913), + [sym_relational_expression] = STATE(913), + [sym_shift_expression] = STATE(913), + [sym_math_expression] = STATE(913), + [sym_cast_expression] = STATE(913), + [sym_sizeof_expression] = STATE(913), + [sym_subscript_expression] = STATE(913), + [sym_call_expression] = STATE(913), + [sym_field_expression] = STATE(913), + [sym_compound_literal_expression] = STATE(913), + [sym_parenthesized_expression] = STATE(913), + [sym_char_literal] = STATE(913), + [sym_concatenated_string] = STATE(913), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [sym_null] = ACTIONS(2362), + [sym_identifier] = ACTIONS(2362), + [sym_comment] = ACTIONS(39), + }, + [670] = { + [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(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(2364), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2366), + [sym_false] = ACTIONS(2366), + [sym_null] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2366), + [sym_comment] = ACTIONS(39), + }, + [671] = { + [sym__expression] = STATE(915), + [sym_conditional_expression] = STATE(915), + [sym_assignment_expression] = STATE(915), + [sym_pointer_expression] = STATE(915), + [sym_logical_expression] = STATE(915), + [sym_bitwise_expression] = STATE(915), + [sym_equality_expression] = STATE(915), + [sym_relational_expression] = STATE(915), + [sym_shift_expression] = STATE(915), + [sym_math_expression] = STATE(915), + [sym_cast_expression] = STATE(915), + [sym_sizeof_expression] = STATE(915), + [sym_subscript_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_field_expression] = STATE(915), + [sym_compound_literal_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_char_literal] = STATE(915), + [sym_concatenated_string] = STATE(915), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2370), + [sym_comment] = ACTIONS(39), + }, + [672] = { + [sym__expression] = STATE(916), + [sym_conditional_expression] = STATE(916), + [sym_assignment_expression] = STATE(916), + [sym_pointer_expression] = STATE(916), + [sym_logical_expression] = STATE(916), + [sym_bitwise_expression] = STATE(916), + [sym_equality_expression] = STATE(916), + [sym_relational_expression] = STATE(916), + [sym_shift_expression] = STATE(916), + [sym_math_expression] = STATE(916), + [sym_cast_expression] = STATE(916), + [sym_sizeof_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_call_expression] = STATE(916), + [sym_field_expression] = STATE(916), + [sym_compound_literal_expression] = STATE(916), + [sym_parenthesized_expression] = STATE(916), + [sym_char_literal] = STATE(916), + [sym_concatenated_string] = STATE(916), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(2372), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2374), + [sym_false] = ACTIONS(2374), + [sym_null] = ACTIONS(2374), + [sym_identifier] = ACTIONS(2374), + [sym_comment] = ACTIONS(39), + }, + [673] = { + [sym__expression] = STATE(917), + [sym_conditional_expression] = STATE(917), + [sym_assignment_expression] = STATE(917), + [sym_pointer_expression] = STATE(917), + [sym_logical_expression] = STATE(917), + [sym_bitwise_expression] = STATE(917), + [sym_equality_expression] = STATE(917), + [sym_relational_expression] = STATE(917), + [sym_shift_expression] = STATE(917), + [sym_math_expression] = STATE(917), + [sym_cast_expression] = STATE(917), + [sym_sizeof_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_call_expression] = STATE(917), + [sym_field_expression] = STATE(917), + [sym_compound_literal_expression] = STATE(917), + [sym_parenthesized_expression] = STATE(917), + [sym_char_literal] = STATE(917), + [sym_concatenated_string] = STATE(917), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2378), + [sym_false] = ACTIONS(2378), + [sym_null] = ACTIONS(2378), + [sym_identifier] = ACTIONS(2378), [sym_comment] = ACTIONS(39), }, - [696] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [674] = { + [sym__expression] = STATE(918), + [sym_conditional_expression] = STATE(918), + [sym_assignment_expression] = STATE(918), + [sym_pointer_expression] = STATE(918), + [sym_logical_expression] = STATE(918), + [sym_bitwise_expression] = STATE(918), + [sym_equality_expression] = STATE(918), + [sym_relational_expression] = STATE(918), + [sym_shift_expression] = STATE(918), + [sym_math_expression] = STATE(918), + [sym_cast_expression] = STATE(918), + [sym_sizeof_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_call_expression] = STATE(918), + [sym_field_expression] = STATE(918), + [sym_compound_literal_expression] = STATE(918), + [sym_parenthesized_expression] = STATE(918), + [sym_char_literal] = STATE(918), + [sym_concatenated_string] = STATE(918), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(2380), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2382), + [sym_false] = ACTIONS(2382), + [sym_null] = ACTIONS(2382), + [sym_identifier] = ACTIONS(2382), [sym_comment] = ACTIONS(39), }, - [697] = { - [anon_sym_RPAREN] = ACTIONS(2480), + [675] = { + [sym__expression] = STATE(919), + [sym_conditional_expression] = STATE(919), + [sym_assignment_expression] = STATE(919), + [sym_pointer_expression] = STATE(919), + [sym_logical_expression] = STATE(919), + [sym_bitwise_expression] = STATE(919), + [sym_equality_expression] = STATE(919), + [sym_relational_expression] = STATE(919), + [sym_shift_expression] = STATE(919), + [sym_math_expression] = STATE(919), + [sym_cast_expression] = STATE(919), + [sym_sizeof_expression] = STATE(919), + [sym_subscript_expression] = STATE(919), + [sym_call_expression] = STATE(919), + [sym_field_expression] = STATE(919), + [sym_compound_literal_expression] = STATE(919), + [sym_parenthesized_expression] = STATE(919), + [sym_char_literal] = STATE(919), + [sym_concatenated_string] = STATE(919), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(2384), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2386), + [sym_false] = ACTIONS(2386), + [sym_null] = ACTIONS(2386), + [sym_identifier] = ACTIONS(2386), [sym_comment] = ACTIONS(39), }, - [698] = { + [676] = { + [sym__expression] = STATE(920), + [sym_conditional_expression] = STATE(920), + [sym_assignment_expression] = STATE(920), + [sym_pointer_expression] = STATE(920), + [sym_logical_expression] = STATE(920), + [sym_bitwise_expression] = STATE(920), + [sym_equality_expression] = STATE(920), + [sym_relational_expression] = STATE(920), + [sym_shift_expression] = STATE(920), + [sym_math_expression] = STATE(920), + [sym_cast_expression] = STATE(920), + [sym_sizeof_expression] = STATE(920), + [sym_subscript_expression] = STATE(920), + [sym_call_expression] = STATE(920), + [sym_field_expression] = STATE(920), + [sym_compound_literal_expression] = STATE(920), + [sym_parenthesized_expression] = STATE(920), + [sym_char_literal] = STATE(920), + [sym_concatenated_string] = STATE(920), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(2388), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2390), + [sym_false] = ACTIONS(2390), + [sym_null] = ACTIONS(2390), + [sym_identifier] = ACTIONS(2390), + [sym_comment] = ACTIONS(39), + }, + [677] = { + [sym__expression] = STATE(921), + [sym_conditional_expression] = STATE(921), + [sym_assignment_expression] = STATE(921), + [sym_pointer_expression] = STATE(921), + [sym_logical_expression] = STATE(921), + [sym_bitwise_expression] = STATE(921), + [sym_equality_expression] = STATE(921), + [sym_relational_expression] = STATE(921), + [sym_shift_expression] = STATE(921), + [sym_math_expression] = STATE(921), + [sym_cast_expression] = STATE(921), + [sym_sizeof_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_call_expression] = STATE(921), + [sym_field_expression] = STATE(921), + [sym_compound_literal_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(921), + [sym_initializer_list] = STATE(922), + [sym_char_literal] = STATE(921), + [sym_concatenated_string] = STATE(921), + [sym_string_literal] = STATE(253), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2394), + [sym_false] = ACTIONS(2394), + [sym_null] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2394), + [sym_comment] = ACTIONS(39), + }, + [678] = { + [sym_string_literal] = STATE(923), + [aux_sym_concatenated_string_repeat1] = STATE(923), + [anon_sym_COMMA] = ACTIONS(1778), + [anon_sym_RPAREN] = ACTIONS(1778), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_CARET] = ACTIONS(1780), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1780), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_comment] = ACTIONS(39), + }, + [679] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(2396), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [680] = { + [anon_sym_RPAREN] = ACTIONS(2396), + [sym_comment] = ACTIONS(39), + }, + [681] = { + [sym_parenthesized_expression] = STATE(925), + [anon_sym_LPAREN2] = ACTIONS(994), + [sym_comment] = ACTIONS(39), + }, + [682] = { + [sym_parenthesized_expression] = STATE(926), + [anon_sym_LPAREN2] = ACTIONS(994), + [sym_comment] = ACTIONS(39), + }, + [683] = { + [sym__expression] = STATE(927), + [sym_conditional_expression] = STATE(927), + [sym_assignment_expression] = STATE(927), + [sym_pointer_expression] = STATE(927), + [sym_logical_expression] = STATE(927), + [sym_bitwise_expression] = STATE(927), + [sym_equality_expression] = STATE(927), + [sym_relational_expression] = STATE(927), + [sym_shift_expression] = STATE(927), + [sym_math_expression] = STATE(927), + [sym_cast_expression] = STATE(927), + [sym_sizeof_expression] = STATE(927), + [sym_subscript_expression] = STATE(927), + [sym_call_expression] = STATE(927), + [sym_field_expression] = STATE(927), + [sym_compound_literal_expression] = STATE(927), + [sym_parenthesized_expression] = STATE(927), + [sym_char_literal] = STATE(927), + [sym_concatenated_string] = STATE(927), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2398), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2400), + [sym_false] = ACTIONS(2400), + [sym_null] = ACTIONS(2400), + [sym_identifier] = ACTIONS(2400), + [sym_comment] = ACTIONS(39), + }, + [684] = { + [anon_sym_COLON] = ACTIONS(2402), + [sym_comment] = ACTIONS(39), + }, + [685] = { + [sym_parenthesized_expression] = STATE(929), + [anon_sym_LPAREN2] = ACTIONS(994), + [sym_comment] = ACTIONS(39), + }, + [686] = { + [anon_sym_LPAREN2] = ACTIONS(2404), + [sym_comment] = ACTIONS(39), + }, + [687] = { + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(2406), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_comment] = ACTIONS(39), + }, + [688] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(2412), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [sym_null] = ACTIONS(2408), + [sym_identifier] = ACTIONS(2408), + [sym_comment] = ACTIONS(39), + }, + [689] = { + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(1080), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_comment] = ACTIONS(39), + }, + [690] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2414), + [sym_preproc_directive] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2414), + [anon_sym_extern] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2416), + [anon_sym_RBRACE] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_auto] = ACTIONS(2414), + [anon_sym_register] = ACTIONS(2414), + [anon_sym_inline] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [anon_sym_restrict] = ACTIONS(2414), + [anon_sym_volatile] = ACTIONS(2414), + [anon_sym__Atomic] = ACTIONS(2414), + [anon_sym_unsigned] = ACTIONS(2414), + [anon_sym_long] = ACTIONS(2414), + [anon_sym_short] = ACTIONS(2414), + [sym_primitive_type] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [anon_sym_struct] = ACTIONS(2414), + [anon_sym_union] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_else] = ACTIONS(2414), + [anon_sym_switch] = ACTIONS(2414), + [anon_sym_case] = ACTIONS(2414), + [anon_sym_default] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_goto] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(2416), + [anon_sym_TILDE] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(2416), + [anon_sym_sizeof] = ACTIONS(2414), + [sym_number_literal] = ACTIONS(2416), + [anon_sym_SQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2414), + [sym_false] = ACTIONS(2414), + [sym_null] = ACTIONS(2414), + [sym_identifier] = ACTIONS(2414), + [sym_comment] = ACTIONS(39), + }, + [691] = { + [anon_sym_RPAREN] = ACTIONS(2418), + [sym_comment] = ACTIONS(39), + }, + [692] = { [sym_type_qualifier] = STATE(118), [sym__type_specifier] = STATE(116), [sym_sized_type_specifier] = STATE(116), [sym_enum_specifier] = STATE(116), [sym_struct_specifier] = STATE(116), [sym_union_specifier] = STATE(116), - [sym__expression] = STATE(415), - [sym_comma_expression] = STATE(416), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_pointer_expression] = STATE(415), - [sym_logical_expression] = STATE(415), - [sym_bitwise_expression] = STATE(415), - [sym_equality_expression] = STATE(415), - [sym_relational_expression] = STATE(415), - [sym_shift_expression] = STATE(415), - [sym_math_expression] = STATE(415), - [sym_cast_expression] = STATE(415), - [sym_type_descriptor] = STATE(945), - [sym_sizeof_expression] = STATE(415), - [sym_subscript_expression] = STATE(415), - [sym_call_expression] = STATE(415), - [sym_field_expression] = STATE(415), - [sym_compound_literal_expression] = STATE(415), - [sym_parenthesized_expression] = STATE(415), - [sym_char_literal] = STATE(415), - [sym_concatenated_string] = STATE(415), - [sym_string_literal] = STATE(418), + [sym__expression] = STATE(406), + [sym_comma_expression] = STATE(407), + [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_type_descriptor] = STATE(934), + [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(409), [sym_macro_type_specifier] = STATE(116), [aux_sym_type_definition_repeat1] = STATE(118), [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -26491,149 +26573,149 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_identifier] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), [sym_comment] = ACTIONS(39), }, - [699] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1737), - [anon_sym_COLON] = ACTIONS(1735), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_STAR_EQ] = ACTIONS(1735), - [anon_sym_SLASH_EQ] = ACTIONS(1735), - [anon_sym_PERCENT_EQ] = ACTIONS(1735), - [anon_sym_PLUS_EQ] = ACTIONS(1735), - [anon_sym_DASH_EQ] = ACTIONS(1735), - [anon_sym_LT_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_GT_EQ] = ACTIONS(1735), - [anon_sym_AMP_EQ] = ACTIONS(1735), - [anon_sym_CARET_EQ] = ACTIONS(1735), - [anon_sym_PIPE_EQ] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(1735), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [693] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1702), + [anon_sym_COLON] = ACTIONS(1700), + [anon_sym_QMARK] = ACTIONS(1700), + [anon_sym_STAR_EQ] = ACTIONS(1700), + [anon_sym_SLASH_EQ] = ACTIONS(1700), + [anon_sym_PERCENT_EQ] = ACTIONS(1700), + [anon_sym_PLUS_EQ] = ACTIONS(1700), + [anon_sym_DASH_EQ] = ACTIONS(1700), + [anon_sym_LT_LT_EQ] = ACTIONS(1700), + [anon_sym_GT_GT_EQ] = ACTIONS(1700), + [anon_sym_AMP_EQ] = ACTIONS(1700), + [anon_sym_CARET_EQ] = ACTIONS(1700), + [anon_sym_PIPE_EQ] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_PIPE_PIPE] = ACTIONS(1700), + [anon_sym_AMP_AMP] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym_EQ_EQ] = ACTIONS(1700), + [anon_sym_BANG_EQ] = ACTIONS(1700), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_LT_EQ] = ACTIONS(1700), + [anon_sym_GT_EQ] = ACTIONS(1700), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [700] = { - [sym__expression] = STATE(739), - [sym_conditional_expression] = STATE(739), - [sym_assignment_expression] = STATE(739), - [sym_pointer_expression] = STATE(739), - [sym_logical_expression] = STATE(739), - [sym_bitwise_expression] = STATE(739), - [sym_equality_expression] = STATE(739), - [sym_relational_expression] = STATE(739), - [sym_shift_expression] = STATE(739), - [sym_math_expression] = STATE(739), - [sym_cast_expression] = STATE(739), - [sym_sizeof_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_call_expression] = STATE(739), - [sym_field_expression] = STATE(739), - [sym_compound_literal_expression] = STATE(739), - [sym_parenthesized_expression] = STATE(739), - [sym_char_literal] = STATE(739), - [sym_concatenated_string] = STATE(739), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_identifier] = ACTIONS(1759), + [694] = { + [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(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1722), + [sym_false] = ACTIONS(1722), + [sym_null] = ACTIONS(1722), + [sym_identifier] = ACTIONS(1722), [sym_comment] = ACTIONS(39), }, - [701] = { - [sym__expression] = STATE(946), - [sym_conditional_expression] = STATE(946), - [sym_assignment_expression] = STATE(946), - [sym_pointer_expression] = STATE(946), - [sym_logical_expression] = STATE(946), - [sym_bitwise_expression] = STATE(946), - [sym_equality_expression] = STATE(946), - [sym_relational_expression] = STATE(946), - [sym_shift_expression] = STATE(946), - [sym_math_expression] = STATE(946), - [sym_cast_expression] = STATE(946), - [sym_sizeof_expression] = STATE(946), - [sym_subscript_expression] = STATE(946), - [sym_call_expression] = STATE(946), - [sym_field_expression] = STATE(946), - [sym_compound_literal_expression] = STATE(946), - [sym_parenthesized_expression] = STATE(946), - [sym_char_literal] = STATE(946), - [sym_concatenated_string] = STATE(946), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2482), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2484), - [sym_false] = ACTIONS(2484), - [sym_null] = ACTIONS(2484), - [sym_identifier] = ACTIONS(2484), + [695] = { + [sym__expression] = STATE(935), + [sym_conditional_expression] = STATE(935), + [sym_assignment_expression] = STATE(935), + [sym_pointer_expression] = STATE(935), + [sym_logical_expression] = STATE(935), + [sym_bitwise_expression] = STATE(935), + [sym_equality_expression] = STATE(935), + [sym_relational_expression] = STATE(935), + [sym_shift_expression] = STATE(935), + [sym_math_expression] = STATE(935), + [sym_cast_expression] = STATE(935), + [sym_sizeof_expression] = STATE(935), + [sym_subscript_expression] = STATE(935), + [sym_call_expression] = STATE(935), + [sym_field_expression] = STATE(935), + [sym_compound_literal_expression] = STATE(935), + [sym_parenthesized_expression] = STATE(935), + [sym_char_literal] = STATE(935), + [sym_concatenated_string] = STATE(935), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2420), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2422), + [sym_false] = ACTIONS(2422), + [sym_null] = ACTIONS(2422), + [sym_identifier] = ACTIONS(2422), [sym_comment] = ACTIONS(39), }, - [702] = { - [sym_declaration] = STATE(947), - [sym_type_definition] = STATE(947), - [sym__declaration_specifiers] = STATE(716), - [sym_compound_statement] = STATE(947), + [696] = { + [sym_declaration] = STATE(936), + [sym_type_definition] = STATE(936), + [sym__declaration_specifiers] = STATE(710), + [sym_compound_statement] = STATE(936), [sym_storage_class_specifier] = STATE(96), [sym_type_qualifier] = STATE(96), [sym__type_specifier] = STATE(95), @@ -26641,48 +26723,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(95), [sym_struct_specifier] = STATE(95), [sym_union_specifier] = STATE(95), - [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(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), + [sym_labeled_statement] = STATE(936), + [sym_expression_statement] = STATE(936), + [sym_if_statement] = STATE(936), + [sym_switch_statement] = STATE(936), + [sym_case_statement] = STATE(936), + [sym_while_statement] = STATE(936), + [sym_do_statement] = STATE(936), + [sym_for_statement] = STATE(936), + [sym_return_statement] = STATE(936), + [sym_break_statement] = STATE(936), + [sym_continue_statement] = STATE(936), + [sym_goto_statement] = STATE(936), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(550), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -26698,765 +26780,836 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1650), + [sym_comment] = ACTIONS(39), + }, + [697] = { + [sym__expression] = STATE(937), + [sym_conditional_expression] = STATE(937), + [sym_assignment_expression] = STATE(937), + [sym_pointer_expression] = STATE(937), + [sym_logical_expression] = STATE(937), + [sym_bitwise_expression] = STATE(937), + [sym_equality_expression] = STATE(937), + [sym_relational_expression] = STATE(937), + [sym_shift_expression] = STATE(937), + [sym_math_expression] = STATE(937), + [sym_cast_expression] = STATE(937), + [sym_sizeof_expression] = STATE(937), + [sym_subscript_expression] = STATE(937), + [sym_call_expression] = STATE(937), + [sym_field_expression] = STATE(937), + [sym_compound_literal_expression] = STATE(937), + [sym_parenthesized_expression] = STATE(937), + [sym_char_literal] = STATE(937), + [sym_concatenated_string] = STATE(937), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2424), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2426), + [sym_false] = ACTIONS(2426), + [sym_null] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2426), + [sym_comment] = ACTIONS(39), + }, + [698] = { + [sym__expression] = STATE(938), + [sym_conditional_expression] = STATE(938), + [sym_assignment_expression] = STATE(938), + [sym_pointer_expression] = STATE(938), + [sym_logical_expression] = STATE(938), + [sym_bitwise_expression] = STATE(938), + [sym_equality_expression] = STATE(938), + [sym_relational_expression] = STATE(938), + [sym_shift_expression] = STATE(938), + [sym_math_expression] = STATE(938), + [sym_cast_expression] = STATE(938), + [sym_sizeof_expression] = STATE(938), + [sym_subscript_expression] = STATE(938), + [sym_call_expression] = STATE(938), + [sym_field_expression] = STATE(938), + [sym_compound_literal_expression] = STATE(938), + [sym_parenthesized_expression] = STATE(938), + [sym_char_literal] = STATE(938), + [sym_concatenated_string] = STATE(938), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2428), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2430), + [sym_false] = ACTIONS(2430), + [sym_null] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2430), + [sym_comment] = ACTIONS(39), + }, + [699] = { + [sym__expression] = STATE(939), + [sym_conditional_expression] = STATE(939), + [sym_assignment_expression] = STATE(939), + [sym_pointer_expression] = STATE(939), + [sym_logical_expression] = STATE(939), + [sym_bitwise_expression] = STATE(939), + [sym_equality_expression] = STATE(939), + [sym_relational_expression] = STATE(939), + [sym_shift_expression] = STATE(939), + [sym_math_expression] = STATE(939), + [sym_cast_expression] = STATE(939), + [sym_sizeof_expression] = STATE(939), + [sym_subscript_expression] = STATE(939), + [sym_call_expression] = STATE(939), + [sym_field_expression] = STATE(939), + [sym_compound_literal_expression] = STATE(939), + [sym_parenthesized_expression] = STATE(939), + [sym_char_literal] = STATE(939), + [sym_concatenated_string] = STATE(939), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2432), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2434), + [sym_false] = ACTIONS(2434), + [sym_null] = ACTIONS(2434), + [sym_identifier] = ACTIONS(2434), + [sym_comment] = ACTIONS(39), + }, + [700] = { + [sym__expression] = STATE(940), + [sym_conditional_expression] = STATE(940), + [sym_assignment_expression] = STATE(940), + [sym_pointer_expression] = STATE(940), + [sym_logical_expression] = STATE(940), + [sym_bitwise_expression] = STATE(940), + [sym_equality_expression] = STATE(940), + [sym_relational_expression] = STATE(940), + [sym_shift_expression] = STATE(940), + [sym_math_expression] = STATE(940), + [sym_cast_expression] = STATE(940), + [sym_sizeof_expression] = STATE(940), + [sym_subscript_expression] = STATE(940), + [sym_call_expression] = STATE(940), + [sym_field_expression] = STATE(940), + [sym_compound_literal_expression] = STATE(940), + [sym_parenthesized_expression] = STATE(940), + [sym_char_literal] = STATE(940), + [sym_concatenated_string] = STATE(940), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2436), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2438), + [sym_false] = ACTIONS(2438), + [sym_null] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2438), + [sym_comment] = ACTIONS(39), + }, + [701] = { + [sym__expression] = STATE(941), + [sym_conditional_expression] = STATE(941), + [sym_assignment_expression] = STATE(941), + [sym_pointer_expression] = STATE(941), + [sym_logical_expression] = STATE(941), + [sym_bitwise_expression] = STATE(941), + [sym_equality_expression] = STATE(941), + [sym_relational_expression] = STATE(941), + [sym_shift_expression] = STATE(941), + [sym_math_expression] = STATE(941), + [sym_cast_expression] = STATE(941), + [sym_sizeof_expression] = STATE(941), + [sym_subscript_expression] = STATE(941), + [sym_call_expression] = STATE(941), + [sym_field_expression] = STATE(941), + [sym_compound_literal_expression] = STATE(941), + [sym_parenthesized_expression] = STATE(941), + [sym_char_literal] = STATE(941), + [sym_concatenated_string] = STATE(941), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2440), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2442), + [sym_false] = ACTIONS(2442), + [sym_null] = ACTIONS(2442), + [sym_identifier] = ACTIONS(2442), + [sym_comment] = ACTIONS(39), + }, + [702] = { + [sym__expression] = STATE(942), + [sym_conditional_expression] = STATE(942), + [sym_assignment_expression] = STATE(942), + [sym_pointer_expression] = STATE(942), + [sym_logical_expression] = STATE(942), + [sym_bitwise_expression] = STATE(942), + [sym_equality_expression] = STATE(942), + [sym_relational_expression] = STATE(942), + [sym_shift_expression] = STATE(942), + [sym_math_expression] = STATE(942), + [sym_cast_expression] = STATE(942), + [sym_sizeof_expression] = STATE(942), + [sym_subscript_expression] = STATE(942), + [sym_call_expression] = STATE(942), + [sym_field_expression] = STATE(942), + [sym_compound_literal_expression] = STATE(942), + [sym_parenthesized_expression] = STATE(942), + [sym_char_literal] = STATE(942), + [sym_concatenated_string] = STATE(942), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2444), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2446), + [sym_false] = ACTIONS(2446), + [sym_null] = ACTIONS(2446), + [sym_identifier] = ACTIONS(2446), [sym_comment] = ACTIONS(39), }, [703] = { - [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(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2486), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2488), - [sym_false] = ACTIONS(2488), - [sym_null] = ACTIONS(2488), - [sym_identifier] = ACTIONS(2488), + [sym__expression] = STATE(943), + [sym_conditional_expression] = STATE(943), + [sym_assignment_expression] = STATE(943), + [sym_pointer_expression] = STATE(943), + [sym_logical_expression] = STATE(943), + [sym_bitwise_expression] = STATE(943), + [sym_equality_expression] = STATE(943), + [sym_relational_expression] = STATE(943), + [sym_shift_expression] = STATE(943), + [sym_math_expression] = STATE(943), + [sym_cast_expression] = STATE(943), + [sym_sizeof_expression] = STATE(943), + [sym_subscript_expression] = STATE(943), + [sym_call_expression] = STATE(943), + [sym_field_expression] = STATE(943), + [sym_compound_literal_expression] = STATE(943), + [sym_parenthesized_expression] = STATE(943), + [sym_char_literal] = STATE(943), + [sym_concatenated_string] = STATE(943), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2450), + [sym_false] = ACTIONS(2450), + [sym_null] = ACTIONS(2450), + [sym_identifier] = ACTIONS(2450), [sym_comment] = ACTIONS(39), }, [704] = { - [sym__expression] = STATE(949), - [sym_conditional_expression] = STATE(949), - [sym_assignment_expression] = STATE(949), - [sym_pointer_expression] = STATE(949), - [sym_logical_expression] = STATE(949), - [sym_bitwise_expression] = STATE(949), - [sym_equality_expression] = STATE(949), - [sym_relational_expression] = STATE(949), - [sym_shift_expression] = STATE(949), - [sym_math_expression] = STATE(949), - [sym_cast_expression] = STATE(949), - [sym_sizeof_expression] = STATE(949), - [sym_subscript_expression] = STATE(949), - [sym_call_expression] = STATE(949), - [sym_field_expression] = STATE(949), - [sym_compound_literal_expression] = STATE(949), - [sym_parenthesized_expression] = STATE(949), - [sym_char_literal] = STATE(949), - [sym_concatenated_string] = STATE(949), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2490), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2492), - [sym_false] = ACTIONS(2492), - [sym_null] = ACTIONS(2492), - [sym_identifier] = ACTIONS(2492), + [sym__expression] = STATE(944), + [sym_conditional_expression] = STATE(944), + [sym_assignment_expression] = STATE(944), + [sym_pointer_expression] = STATE(944), + [sym_logical_expression] = STATE(944), + [sym_bitwise_expression] = STATE(944), + [sym_equality_expression] = STATE(944), + [sym_relational_expression] = STATE(944), + [sym_shift_expression] = STATE(944), + [sym_math_expression] = STATE(944), + [sym_cast_expression] = STATE(944), + [sym_sizeof_expression] = STATE(944), + [sym_subscript_expression] = STATE(944), + [sym_call_expression] = STATE(944), + [sym_field_expression] = STATE(944), + [sym_compound_literal_expression] = STATE(944), + [sym_parenthesized_expression] = STATE(944), + [sym_char_literal] = STATE(944), + [sym_concatenated_string] = STATE(944), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [sym_null] = ACTIONS(2454), + [sym_identifier] = ACTIONS(2454), [sym_comment] = ACTIONS(39), }, [705] = { - [sym__expression] = STATE(950), - [sym_conditional_expression] = STATE(950), - [sym_assignment_expression] = STATE(950), - [sym_pointer_expression] = STATE(950), - [sym_logical_expression] = STATE(950), - [sym_bitwise_expression] = STATE(950), - [sym_equality_expression] = STATE(950), - [sym_relational_expression] = STATE(950), - [sym_shift_expression] = STATE(950), - [sym_math_expression] = STATE(950), - [sym_cast_expression] = STATE(950), - [sym_sizeof_expression] = STATE(950), - [sym_subscript_expression] = STATE(950), - [sym_call_expression] = STATE(950), - [sym_field_expression] = STATE(950), - [sym_compound_literal_expression] = STATE(950), - [sym_parenthesized_expression] = STATE(950), - [sym_char_literal] = STATE(950), - [sym_concatenated_string] = STATE(950), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym__expression] = STATE(945), + [sym_conditional_expression] = STATE(945), + [sym_assignment_expression] = STATE(945), + [sym_pointer_expression] = STATE(945), + [sym_logical_expression] = STATE(945), + [sym_bitwise_expression] = STATE(945), + [sym_equality_expression] = STATE(945), + [sym_relational_expression] = STATE(945), + [sym_shift_expression] = STATE(945), + [sym_math_expression] = STATE(945), + [sym_cast_expression] = STATE(945), + [sym_sizeof_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_field_expression] = STATE(945), + [sym_compound_literal_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_char_literal] = STATE(945), + [sym_concatenated_string] = STATE(945), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2496), - [sym_false] = ACTIONS(2496), - [sym_null] = ACTIONS(2496), - [sym_identifier] = ACTIONS(2496), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_identifier] = ACTIONS(2458), [sym_comment] = ACTIONS(39), }, [706] = { - [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(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2498), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2500), - [sym_false] = ACTIONS(2500), - [sym_null] = ACTIONS(2500), - [sym_identifier] = ACTIONS(2500), + [sym__expression] = STATE(946), + [sym_conditional_expression] = STATE(946), + [sym_assignment_expression] = STATE(946), + [sym_pointer_expression] = STATE(946), + [sym_logical_expression] = STATE(946), + [sym_bitwise_expression] = STATE(946), + [sym_equality_expression] = STATE(946), + [sym_relational_expression] = STATE(946), + [sym_shift_expression] = STATE(946), + [sym_math_expression] = STATE(946), + [sym_cast_expression] = STATE(946), + [sym_sizeof_expression] = STATE(946), + [sym_subscript_expression] = STATE(946), + [sym_call_expression] = STATE(946), + [sym_field_expression] = STATE(946), + [sym_compound_literal_expression] = STATE(946), + [sym_parenthesized_expression] = STATE(946), + [sym_char_literal] = STATE(946), + [sym_concatenated_string] = STATE(946), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2462), [sym_comment] = ACTIONS(39), }, [707] = { - [sym__expression] = STATE(952), - [sym_conditional_expression] = STATE(952), - [sym_assignment_expression] = STATE(952), - [sym_pointer_expression] = STATE(952), - [sym_logical_expression] = STATE(952), - [sym_bitwise_expression] = STATE(952), - [sym_equality_expression] = STATE(952), - [sym_relational_expression] = STATE(952), - [sym_shift_expression] = STATE(952), - [sym_math_expression] = STATE(952), - [sym_cast_expression] = STATE(952), - [sym_sizeof_expression] = STATE(952), - [sym_subscript_expression] = STATE(952), - [sym_call_expression] = STATE(952), - [sym_field_expression] = STATE(952), - [sym_compound_literal_expression] = STATE(952), - [sym_parenthesized_expression] = STATE(952), - [sym_char_literal] = STATE(952), - [sym_concatenated_string] = STATE(952), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2504), - [sym_false] = ACTIONS(2504), - [sym_null] = ACTIONS(2504), - [sym_identifier] = ACTIONS(2504), + [sym_string_literal] = STATE(947), + [aux_sym_concatenated_string_repeat1] = STATE(947), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [anon_sym_COLON] = ACTIONS(1778), + [anon_sym_QMARK] = ACTIONS(1778), + [anon_sym_STAR_EQ] = ACTIONS(1778), + [anon_sym_SLASH_EQ] = ACTIONS(1778), + [anon_sym_PERCENT_EQ] = ACTIONS(1778), + [anon_sym_PLUS_EQ] = ACTIONS(1778), + [anon_sym_DASH_EQ] = ACTIONS(1778), + [anon_sym_LT_LT_EQ] = ACTIONS(1778), + [anon_sym_GT_GT_EQ] = ACTIONS(1778), + [anon_sym_AMP_EQ] = ACTIONS(1778), + [anon_sym_CARET_EQ] = ACTIONS(1778), + [anon_sym_PIPE_EQ] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1780), + [anon_sym_PIPE_PIPE] = ACTIONS(1778), + [anon_sym_AMP_AMP] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1780), + [anon_sym_CARET] = ACTIONS(1780), + [anon_sym_EQ_EQ] = ACTIONS(1778), + [anon_sym_BANG_EQ] = ACTIONS(1778), + [anon_sym_LT] = ACTIONS(1780), + [anon_sym_GT] = ACTIONS(1780), + [anon_sym_LT_EQ] = ACTIONS(1778), + [anon_sym_GT_EQ] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1780), + [anon_sym_GT_GT] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_SLASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_DASH_GT] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(41), [sym_comment] = ACTIONS(39), }, [708] = { - [sym__expression] = STATE(953), - [sym_conditional_expression] = STATE(953), - [sym_assignment_expression] = STATE(953), - [sym_pointer_expression] = STATE(953), - [sym_logical_expression] = STATE(953), - [sym_bitwise_expression] = STATE(953), - [sym_equality_expression] = STATE(953), - [sym_relational_expression] = STATE(953), - [sym_shift_expression] = STATE(953), - [sym_math_expression] = STATE(953), - [sym_cast_expression] = STATE(953), - [sym_sizeof_expression] = STATE(953), - [sym_subscript_expression] = STATE(953), - [sym_call_expression] = STATE(953), - [sym_field_expression] = STATE(953), - [sym_compound_literal_expression] = STATE(953), - [sym_parenthesized_expression] = STATE(953), - [sym_char_literal] = STATE(953), - [sym_concatenated_string] = STATE(953), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2506), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2508), - [sym_false] = ACTIONS(2508), - [sym_null] = ACTIONS(2508), - [sym_identifier] = ACTIONS(2508), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_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_COLON] = ACTIONS(1080), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, [709] = { - [sym__expression] = STATE(954), - [sym_conditional_expression] = STATE(954), - [sym_assignment_expression] = STATE(954), - [sym_pointer_expression] = STATE(954), - [sym_logical_expression] = STATE(954), - [sym_bitwise_expression] = STATE(954), - [sym_equality_expression] = STATE(954), - [sym_relational_expression] = STATE(954), - [sym_shift_expression] = STATE(954), - [sym_math_expression] = STATE(954), - [sym_cast_expression] = STATE(954), - [sym_sizeof_expression] = STATE(954), - [sym_subscript_expression] = STATE(954), - [sym_call_expression] = STATE(954), - [sym_field_expression] = STATE(954), - [sym_compound_literal_expression] = STATE(954), - [sym_parenthesized_expression] = STATE(954), - [sym_char_literal] = STATE(954), - [sym_concatenated_string] = STATE(954), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2510), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2512), - [sym_false] = ACTIONS(2512), - [sym_null] = ACTIONS(2512), - [sym_identifier] = ACTIONS(2512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2464), + [sym_preproc_directive] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2464), + [anon_sym_extern] = ACTIONS(2464), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2464), + [anon_sym_register] = ACTIONS(2464), + [anon_sym_inline] = ACTIONS(2464), + [anon_sym_const] = ACTIONS(2464), + [anon_sym_restrict] = ACTIONS(2464), + [anon_sym_volatile] = ACTIONS(2464), + [anon_sym__Atomic] = ACTIONS(2464), + [anon_sym_unsigned] = ACTIONS(2464), + [anon_sym_long] = ACTIONS(2464), + [anon_sym_short] = ACTIONS(2464), + [sym_primitive_type] = ACTIONS(2464), + [anon_sym_enum] = ACTIONS(2464), + [anon_sym_struct] = ACTIONS(2464), + [anon_sym_union] = ACTIONS(2464), + [anon_sym_if] = ACTIONS(2464), + [anon_sym_else] = ACTIONS(2464), + [anon_sym_switch] = ACTIONS(2464), + [anon_sym_case] = ACTIONS(2464), + [anon_sym_default] = ACTIONS(2464), + [anon_sym_while] = ACTIONS(2464), + [anon_sym_do] = ACTIONS(2464), + [anon_sym_for] = ACTIONS(2464), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_goto] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2466), + [anon_sym_TILDE] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_sizeof] = ACTIONS(2464), + [sym_number_literal] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2466), + [sym_true] = ACTIONS(2464), + [sym_false] = ACTIONS(2464), + [sym_null] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2464), [sym_comment] = ACTIONS(39), }, [710] = { - [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(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2514), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2516), - [sym_false] = ACTIONS(2516), - [sym_null] = ACTIONS(2516), - [sym_identifier] = ACTIONS(2516), + [sym__declarator] = STATE(446), + [sym_pointer_declarator] = STATE(446), + [sym_function_declarator] = STATE(446), + [sym_array_declarator] = STATE(446), + [sym_init_declarator] = STATE(47), + [anon_sym_LPAREN2] = ACTIONS(92), + [anon_sym_STAR] = ACTIONS(534), + [sym_identifier] = ACTIONS(1090), [sym_comment] = ACTIONS(39), }, [711] = { - [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(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2518), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2520), - [sym_false] = ACTIONS(2520), - [sym_null] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2468), + [sym_preproc_directive] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_typedef] = ACTIONS(2468), + [anon_sym_extern] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_LPAREN2] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2468), + [anon_sym_register] = ACTIONS(2468), + [anon_sym_inline] = ACTIONS(2468), + [anon_sym_const] = ACTIONS(2468), + [anon_sym_restrict] = ACTIONS(2468), + [anon_sym_volatile] = ACTIONS(2468), + [anon_sym__Atomic] = ACTIONS(2468), + [anon_sym_unsigned] = ACTIONS(2468), + [anon_sym_long] = ACTIONS(2468), + [anon_sym_short] = ACTIONS(2468), + [sym_primitive_type] = ACTIONS(2468), + [anon_sym_enum] = ACTIONS(2468), + [anon_sym_struct] = ACTIONS(2468), + [anon_sym_union] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_else] = ACTIONS(2468), + [anon_sym_switch] = ACTIONS(2468), + [anon_sym_case] = ACTIONS(2468), + [anon_sym_default] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_do] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_goto] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_sizeof] = ACTIONS(2468), + [sym_number_literal] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [sym_true] = ACTIONS(2468), + [sym_false] = ACTIONS(2468), + [sym_null] = ACTIONS(2468), + [sym_identifier] = ACTIONS(2468), [sym_comment] = ACTIONS(39), }, [712] = { - [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(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2522), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2524), - [sym_false] = ACTIONS(2524), - [sym_null] = ACTIONS(2524), - [sym_identifier] = ACTIONS(2524), + [sym_compound_statement] = STATE(955), + [sym_labeled_statement] = STATE(955), + [sym_expression_statement] = STATE(955), + [sym_if_statement] = STATE(955), + [sym_switch_statement] = STATE(955), + [sym_case_statement] = STATE(955), + [sym_while_statement] = STATE(955), + [sym_do_statement] = STATE(955), + [sym_for_statement] = STATE(955), + [sym_return_statement] = STATE(955), + [sym_break_statement] = STATE(955), + [sym_continue_statement] = STATE(955), + [sym_goto_statement] = STATE(955), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(2484), [sym_comment] = ACTIONS(39), }, [713] = { - [sym_string_literal] = STATE(958), - [aux_sym_concatenated_string_repeat1] = STATE(958), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_COLON] = ACTIONS(1815), - [anon_sym_QMARK] = ACTIONS(1815), - [anon_sym_STAR_EQ] = ACTIONS(1815), - [anon_sym_SLASH_EQ] = ACTIONS(1815), - [anon_sym_PERCENT_EQ] = ACTIONS(1815), - [anon_sym_PLUS_EQ] = ACTIONS(1815), - [anon_sym_DASH_EQ] = ACTIONS(1815), - [anon_sym_LT_LT_EQ] = ACTIONS(1815), - [anon_sym_GT_GT_EQ] = ACTIONS(1815), - [anon_sym_AMP_EQ] = ACTIONS(1815), - [anon_sym_CARET_EQ] = ACTIONS(1815), - [anon_sym_PIPE_EQ] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1815), - [anon_sym_AMP_AMP] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1815), - [anon_sym_BANG_EQ] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1815), - [anon_sym_GT_EQ] = ACTIONS(1815), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_DASH_GT] = ACTIONS(1815), - [anon_sym_DQUOTE] = ACTIONS(41), + [sym_compound_statement] = STATE(690), + [sym_labeled_statement] = STATE(690), + [sym_expression_statement] = STATE(690), + [sym_if_statement] = STATE(690), + [sym_switch_statement] = STATE(690), + [sym_case_statement] = STATE(690), + [sym_while_statement] = STATE(690), + [sym_do_statement] = STATE(690), + [sym_for_statement] = STATE(690), + [sym_return_statement] = STATE(690), + [sym_break_statement] = STATE(690), + [sym_continue_statement] = STATE(690), + [sym_goto_statement] = STATE(690), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1030), [sym_comment] = ACTIONS(39), }, [714] = { - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1100), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), - [sym_identifier] = ACTIONS(86), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(2486), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [715] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2526), - [sym_preproc_directive] = ACTIONS(2526), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_typedef] = ACTIONS(2526), - [anon_sym_extern] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2528), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_auto] = ACTIONS(2526), - [anon_sym_register] = ACTIONS(2526), - [anon_sym_inline] = ACTIONS(2526), - [anon_sym_const] = ACTIONS(2526), - [anon_sym_restrict] = ACTIONS(2526), - [anon_sym_volatile] = ACTIONS(2526), - [anon_sym__Atomic] = ACTIONS(2526), - [anon_sym_unsigned] = ACTIONS(2526), - [anon_sym_long] = ACTIONS(2526), - [anon_sym_short] = ACTIONS(2526), - [sym_primitive_type] = ACTIONS(2526), - [anon_sym_enum] = ACTIONS(2526), - [anon_sym_struct] = ACTIONS(2526), - [anon_sym_union] = ACTIONS(2526), - [anon_sym_if] = ACTIONS(2526), - [anon_sym_else] = ACTIONS(2526), - [anon_sym_switch] = ACTIONS(2526), - [anon_sym_case] = ACTIONS(2526), - [anon_sym_default] = ACTIONS(2526), - [anon_sym_while] = ACTIONS(2526), - [anon_sym_do] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2526), - [anon_sym_return] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2526), - [anon_sym_continue] = ACTIONS(2526), - [anon_sym_goto] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_sizeof] = ACTIONS(2526), - [sym_number_literal] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [sym_true] = ACTIONS(2526), - [sym_false] = ACTIONS(2526), - [sym_null] = ACTIONS(2526), - [sym_identifier] = ACTIONS(2526), - [sym_comment] = ACTIONS(39), - }, - [716] = { - [sym__declarator] = STATE(456), - [sym_pointer_declarator] = STATE(456), - [sym_function_declarator] = STATE(456), - [sym_array_declarator] = STATE(456), - [sym_init_declarator] = STATE(47), - [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_STAR] = ACTIONS(540), - [sym_identifier] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [717] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(2530), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [718] = { - [sym__expression] = STATE(960), - [sym_conditional_expression] = STATE(960), - [sym_assignment_expression] = STATE(960), - [sym_pointer_expression] = STATE(960), - [sym_logical_expression] = STATE(960), - [sym_bitwise_expression] = STATE(960), - [sym_equality_expression] = STATE(960), - [sym_relational_expression] = STATE(960), - [sym_shift_expression] = STATE(960), - [sym_math_expression] = STATE(960), - [sym_cast_expression] = STATE(960), - [sym_sizeof_expression] = STATE(960), - [sym_subscript_expression] = STATE(960), - [sym_call_expression] = STATE(960), - [sym_field_expression] = STATE(960), - [sym_compound_literal_expression] = STATE(960), - [sym_parenthesized_expression] = STATE(960), - [sym_char_literal] = STATE(960), - [sym_concatenated_string] = STATE(960), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2532), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_identifier] = ACTIONS(2534), - [sym_comment] = ACTIONS(39), - }, - [719] = { - [sym__expression] = STATE(961), - [sym_conditional_expression] = STATE(961), - [sym_assignment_expression] = STATE(961), - [sym_pointer_expression] = STATE(961), - [sym_logical_expression] = STATE(961), - [sym_bitwise_expression] = STATE(961), - [sym_equality_expression] = STATE(961), - [sym_relational_expression] = STATE(961), - [sym_shift_expression] = STATE(961), - [sym_math_expression] = STATE(961), - [sym_cast_expression] = STATE(961), - [sym_sizeof_expression] = STATE(961), - [sym_subscript_expression] = STATE(961), - [sym_call_expression] = STATE(961), - [sym_field_expression] = STATE(961), - [sym_compound_literal_expression] = STATE(961), - [sym_parenthesized_expression] = STATE(961), - [sym_char_literal] = STATE(961), - [sym_concatenated_string] = STATE(961), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2536), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2538), - [sym_false] = ACTIONS(2538), - [sym_null] = ACTIONS(2538), - [sym_identifier] = ACTIONS(2538), - [sym_comment] = ACTIONS(39), - }, - [720] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(2540), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [721] = { - [sym_declaration] = STATE(715), - [sym_type_definition] = STATE(715), - [sym__declaration_specifiers] = STATE(716), - [sym_compound_statement] = STATE(715), + [sym_declaration] = STATE(709), + [sym_type_definition] = STATE(709), + [sym__declaration_specifiers] = STATE(710), + [sym_compound_statement] = STATE(709), [sym_storage_class_specifier] = STATE(96), [sym_type_qualifier] = STATE(96), [sym__type_specifier] = STATE(95), @@ -27464,48 +27617,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(95), [sym_struct_specifier] = STATE(95), [sym_union_specifier] = STATE(95), - [sym_labeled_statement] = STATE(715), - [sym_expression_statement] = STATE(715), - [sym_if_statement] = STATE(715), - [sym_switch_statement] = STATE(715), - [sym_case_statement] = STATE(715), - [sym_while_statement] = STATE(715), - [sym_do_statement] = STATE(715), - [sym_for_statement] = STATE(715), - [sym_return_statement] = STATE(715), - [sym_break_statement] = STATE(715), - [sym_continue_statement] = STATE(715), - [sym_goto_statement] = STATE(715), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), + [sym_labeled_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_if_statement] = STATE(709), + [sym_switch_statement] = STATE(709), + [sym_case_statement] = STATE(709), + [sym_while_statement] = STATE(709), + [sym_do_statement] = STATE(709), + [sym_for_statement] = STATE(709), + [sym_return_statement] = STATE(709), + [sym_break_statement] = STATE(709), + [sym_continue_statement] = STATE(709), + [sym_goto_statement] = STATE(709), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(550), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -27521,77 +27674,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(2488), [sym_comment] = ACTIONS(39), }, - [722] = { - [sym__expression] = STATE(964), - [sym_conditional_expression] = STATE(964), - [sym_assignment_expression] = STATE(964), - [sym_pointer_expression] = STATE(964), - [sym_logical_expression] = STATE(964), - [sym_bitwise_expression] = STATE(964), - [sym_equality_expression] = STATE(964), - [sym_relational_expression] = STATE(964), - [sym_shift_expression] = STATE(964), - [sym_math_expression] = STATE(964), - [sym_cast_expression] = STATE(964), - [sym_sizeof_expression] = STATE(964), - [sym_subscript_expression] = STATE(964), - [sym_call_expression] = STATE(964), - [sym_field_expression] = STATE(964), - [sym_compound_literal_expression] = STATE(964), - [sym_parenthesized_expression] = STATE(964), - [sym_char_literal] = STATE(964), - [sym_concatenated_string] = STATE(964), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2546), - [sym_false] = ACTIONS(2546), - [sym_null] = ACTIONS(2546), - [sym_identifier] = ACTIONS(2546), + [716] = { + [sym_compound_statement] = STATE(711), + [sym_labeled_statement] = STATE(711), + [sym_expression_statement] = STATE(711), + [sym_if_statement] = STATE(711), + [sym_switch_statement] = STATE(711), + [sym_case_statement] = STATE(711), + [sym_while_statement] = STATE(711), + [sym_do_statement] = STATE(711), + [sym_for_statement] = STATE(711), + [sym_return_statement] = STATE(711), + [sym_break_statement] = STATE(711), + [sym_continue_statement] = STATE(711), + [sym_goto_statement] = STATE(711), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1030), [sym_comment] = ACTIONS(39), }, - [723] = { - [sym_declaration] = STATE(965), - [sym__declaration_specifiers] = STATE(716), + [717] = { + [anon_sym_while] = ACTIONS(2490), + [sym_comment] = ACTIONS(39), + }, + [718] = { + [sym_declaration] = STATE(959), + [sym__declaration_specifiers] = STATE(710), [sym_storage_class_specifier] = STATE(96), [sym_type_qualifier] = STATE(96), [sym__type_specifier] = STATE(95), @@ -27599,32 +27783,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(95), [sym_struct_specifier] = STATE(95), [sym_union_specifier] = STATE(95), - [sym__expression] = STATE(966), - [sym_conditional_expression] = STATE(966), - [sym_assignment_expression] = STATE(966), - [sym_pointer_expression] = STATE(966), - [sym_logical_expression] = STATE(966), - [sym_bitwise_expression] = STATE(966), - [sym_equality_expression] = STATE(966), - [sym_relational_expression] = STATE(966), - [sym_shift_expression] = STATE(966), - [sym_math_expression] = STATE(966), - [sym_cast_expression] = STATE(966), - [sym_sizeof_expression] = STATE(966), - [sym_subscript_expression] = STATE(966), - [sym_call_expression] = STATE(966), - [sym_field_expression] = STATE(966), - [sym_compound_literal_expression] = STATE(966), - [sym_parenthesized_expression] = STATE(966), - [sym_char_literal] = STATE(966), - [sym_concatenated_string] = STATE(966), - [sym_string_literal] = STATE(378), + [sym__expression] = STATE(960), + [sym_conditional_expression] = STATE(960), + [sym_assignment_expression] = STATE(960), + [sym_pointer_expression] = STATE(960), + [sym_logical_expression] = STATE(960), + [sym_bitwise_expression] = STATE(960), + [sym_equality_expression] = STATE(960), + [sym_relational_expression] = STATE(960), + [sym_shift_expression] = STATE(960), + [sym_math_expression] = STATE(960), + [sym_cast_expression] = STATE(960), + [sym_sizeof_expression] = STATE(960), + [sym_subscript_expression] = STATE(960), + [sym_call_expression] = STATE(960), + [sym_field_expression] = STATE(960), + [sym_compound_literal_expression] = STATE(960), + [sym_parenthesized_expression] = STATE(960), + [sym_char_literal] = STATE(960), + [sym_concatenated_string] = STATE(960), + [sym_string_literal] = STATE(376), [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2492), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -27649,109 +27833,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2550), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2552), - [sym_false] = ACTIONS(2552), - [sym_null] = ACTIONS(2552), - [sym_identifier] = ACTIONS(1705), + [sym_true] = ACTIONS(2496), + [sym_false] = ACTIONS(2496), + [sym_null] = ACTIONS(2496), + [sym_identifier] = ACTIONS(1670), [sym_comment] = ACTIONS(39), }, - [724] = { - [sym_compound_statement] = STATE(734), - [sym_labeled_statement] = STATE(734), - [sym_expression_statement] = STATE(734), - [sym_if_statement] = STATE(734), - [sym_switch_statement] = STATE(734), - [sym_case_statement] = STATE(734), - [sym_while_statement] = STATE(734), - [sym_do_statement] = STATE(734), - [sym_for_statement] = STATE(734), - [sym_return_statement] = STATE(734), - [sym_break_statement] = STATE(734), - [sym_continue_statement] = STATE(734), - [sym_goto_statement] = STATE(734), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1050), + [719] = { + [sym_compound_statement] = STATE(728), + [sym_labeled_statement] = STATE(728), + [sym_expression_statement] = STATE(728), + [sym_if_statement] = STATE(728), + [sym_switch_statement] = STATE(728), + [sym_case_statement] = STATE(728), + [sym_while_statement] = STATE(728), + [sym_do_statement] = STATE(728), + [sym_for_statement] = STATE(728), + [sym_return_statement] = STATE(728), + [sym_break_statement] = STATE(728), + [sym_continue_statement] = STATE(728), + [sym_goto_statement] = STATE(728), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1030), [sym_comment] = ACTIONS(39), }, - [725] = { - [anon_sym_LPAREN] = ACTIONS(2554), + [720] = { + [sym_parenthesized_expression] = STATE(961), + [anon_sym_LPAREN2] = ACTIONS(994), [sym_comment] = ACTIONS(39), }, - [726] = { - [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(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(2556), + [721] = { + [sym__expression] = STATE(963), + [sym_conditional_expression] = STATE(963), + [sym_assignment_expression] = STATE(963), + [sym_pointer_expression] = STATE(963), + [sym_logical_expression] = STATE(963), + [sym_bitwise_expression] = STATE(963), + [sym_equality_expression] = STATE(963), + [sym_relational_expression] = STATE(963), + [sym_shift_expression] = STATE(963), + [sym_math_expression] = STATE(963), + [sym_cast_expression] = STATE(963), + [sym_sizeof_expression] = STATE(963), + [sym_subscript_expression] = STATE(963), + [sym_call_expression] = STATE(963), + [sym_field_expression] = STATE(963), + [sym_compound_literal_expression] = STATE(963), + [sym_parenthesized_expression] = STATE(963), + [sym_char_literal] = STATE(963), + [sym_concatenated_string] = STATE(963), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(2498), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -27761,1207 +27946,1294 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2558), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2500), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2560), - [sym_false] = ACTIONS(2560), - [sym_null] = ACTIONS(2560), - [sym_identifier] = ACTIONS(2560), + [sym_true] = ACTIONS(2502), + [sym_false] = ACTIONS(2502), + [sym_null] = ACTIONS(2502), + [sym_identifier] = ACTIONS(2502), + [sym_comment] = ACTIONS(39), + }, + [722] = { + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_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_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_identifier] = ACTIONS(83), + [sym_comment] = ACTIONS(39), + }, + [723] = { + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2504), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [724] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2506), + [sym_preproc_directive] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2508), + [anon_sym_typedef] = ACTIONS(2506), + [anon_sym_extern] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2508), + [anon_sym_RBRACE] = ACTIONS(2508), + [anon_sym_LPAREN2] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2506), + [anon_sym_auto] = ACTIONS(2506), + [anon_sym_register] = ACTIONS(2506), + [anon_sym_inline] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(2506), + [anon_sym_restrict] = ACTIONS(2506), + [anon_sym_volatile] = ACTIONS(2506), + [anon_sym__Atomic] = ACTIONS(2506), + [anon_sym_unsigned] = ACTIONS(2506), + [anon_sym_long] = ACTIONS(2506), + [anon_sym_short] = ACTIONS(2506), + [sym_primitive_type] = ACTIONS(2506), + [anon_sym_enum] = ACTIONS(2506), + [anon_sym_struct] = ACTIONS(2506), + [anon_sym_union] = ACTIONS(2506), + [anon_sym_if] = ACTIONS(2506), + [anon_sym_else] = ACTIONS(2506), + [anon_sym_switch] = ACTIONS(2506), + [anon_sym_case] = ACTIONS(2506), + [anon_sym_default] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2506), + [anon_sym_do] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2506), + [anon_sym_return] = ACTIONS(2506), + [anon_sym_break] = ACTIONS(2506), + [anon_sym_continue] = ACTIONS(2506), + [anon_sym_goto] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_BANG] = ACTIONS(2508), + [anon_sym_TILDE] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2506), + [anon_sym_DASH] = ACTIONS(2506), + [anon_sym_DASH_DASH] = ACTIONS(2508), + [anon_sym_PLUS_PLUS] = ACTIONS(2508), + [anon_sym_sizeof] = ACTIONS(2506), + [sym_number_literal] = ACTIONS(2508), + [anon_sym_SQUOTE] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_identifier] = ACTIONS(2506), + [sym_comment] = ACTIONS(39), + }, + [725] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2510), + [sym_preproc_directive] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2510), + [anon_sym_extern] = ACTIONS(2510), + [anon_sym_LBRACE] = ACTIONS(2512), + [anon_sym_RBRACE] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2510), + [anon_sym_auto] = ACTIONS(2510), + [anon_sym_register] = ACTIONS(2510), + [anon_sym_inline] = ACTIONS(2510), + [anon_sym_const] = ACTIONS(2510), + [anon_sym_restrict] = ACTIONS(2510), + [anon_sym_volatile] = ACTIONS(2510), + [anon_sym__Atomic] = ACTIONS(2510), + [anon_sym_unsigned] = ACTIONS(2510), + [anon_sym_long] = ACTIONS(2510), + [anon_sym_short] = ACTIONS(2510), + [sym_primitive_type] = ACTIONS(2510), + [anon_sym_enum] = ACTIONS(2510), + [anon_sym_struct] = ACTIONS(2510), + [anon_sym_union] = ACTIONS(2510), + [anon_sym_if] = ACTIONS(2510), + [anon_sym_else] = ACTIONS(2510), + [anon_sym_switch] = ACTIONS(2510), + [anon_sym_case] = ACTIONS(2510), + [anon_sym_default] = ACTIONS(2510), + [anon_sym_while] = ACTIONS(2510), + [anon_sym_do] = ACTIONS(2510), + [anon_sym_for] = ACTIONS(2510), + [anon_sym_return] = ACTIONS(2510), + [anon_sym_break] = ACTIONS(2510), + [anon_sym_continue] = ACTIONS(2510), + [anon_sym_goto] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2512), + [anon_sym_BANG] = ACTIONS(2512), + [anon_sym_TILDE] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2512), + [anon_sym_PLUS_PLUS] = ACTIONS(2512), + [anon_sym_sizeof] = ACTIONS(2510), + [sym_number_literal] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2512), + [sym_true] = ACTIONS(2510), + [sym_false] = ACTIONS(2510), + [sym_null] = ACTIONS(2510), + [sym_identifier] = ACTIONS(2510), + [sym_comment] = ACTIONS(39), + }, + [726] = { + [anon_sym_RPAREN] = ACTIONS(2514), [sym_comment] = ACTIONS(39), }, [727] = { - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), - [sym_identifier] = ACTIONS(86), + [anon_sym_COMMA] = ACTIONS(2516), + [anon_sym_RPAREN] = ACTIONS(2516), + [anon_sym_SEMI] = ACTIONS(2516), + [anon_sym_RBRACE] = ACTIONS(2516), + [anon_sym_LPAREN2] = ACTIONS(2516), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_LBRACK] = ACTIONS(2516), + [anon_sym_RBRACK] = ACTIONS(2516), + [anon_sym_EQ] = ACTIONS(2518), + [anon_sym_COLON] = ACTIONS(2516), + [anon_sym_QMARK] = ACTIONS(2516), + [anon_sym_STAR_EQ] = ACTIONS(2516), + [anon_sym_SLASH_EQ] = ACTIONS(2516), + [anon_sym_PERCENT_EQ] = ACTIONS(2516), + [anon_sym_PLUS_EQ] = ACTIONS(2516), + [anon_sym_DASH_EQ] = ACTIONS(2516), + [anon_sym_LT_LT_EQ] = ACTIONS(2516), + [anon_sym_GT_GT_EQ] = ACTIONS(2516), + [anon_sym_AMP_EQ] = ACTIONS(2516), + [anon_sym_CARET_EQ] = ACTIONS(2516), + [anon_sym_PIPE_EQ] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2518), + [anon_sym_PIPE_PIPE] = ACTIONS(2516), + [anon_sym_AMP_AMP] = ACTIONS(2516), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_CARET] = ACTIONS(2518), + [anon_sym_EQ_EQ] = ACTIONS(2516), + [anon_sym_BANG_EQ] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_GT] = ACTIONS(2518), + [anon_sym_LT_EQ] = ACTIONS(2516), + [anon_sym_GT_EQ] = ACTIONS(2516), + [anon_sym_LT_LT] = ACTIONS(2518), + [anon_sym_GT_GT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(2518), + [anon_sym_PERCENT] = ACTIONS(2518), + [anon_sym_DASH_DASH] = ACTIONS(2516), + [anon_sym_PLUS_PLUS] = ACTIONS(2516), + [anon_sym_DOT] = ACTIONS(2516), + [anon_sym_DASH_GT] = ACTIONS(2516), [sym_comment] = ACTIONS(39), }, [728] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(2562), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2520), + [sym_preproc_directive] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_typedef] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_LPAREN2] = ACTIONS(2522), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_auto] = ACTIONS(2520), + [anon_sym_register] = ACTIONS(2520), + [anon_sym_inline] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_restrict] = ACTIONS(2520), + [anon_sym_volatile] = ACTIONS(2520), + [anon_sym__Atomic] = ACTIONS(2520), + [anon_sym_unsigned] = ACTIONS(2520), + [anon_sym_long] = ACTIONS(2520), + [anon_sym_short] = ACTIONS(2520), + [sym_primitive_type] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2520), + [anon_sym_union] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_switch] = ACTIONS(2520), + [anon_sym_case] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_goto] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_sizeof] = ACTIONS(2520), + [sym_number_literal] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2522), + [sym_true] = ACTIONS(2520), + [sym_false] = ACTIONS(2520), + [sym_null] = ACTIONS(2520), + [sym_identifier] = ACTIONS(2520), [sym_comment] = ACTIONS(39), }, [729] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2564), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2564), - [anon_sym_LPAREN] = ACTIONS(2566), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2564), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2564), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2564), - [sym_preproc_directive] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_typedef] = ACTIONS(2564), - [anon_sym_extern] = ACTIONS(2564), - [anon_sym_LBRACE] = ACTIONS(2566), - [anon_sym_RBRACE] = ACTIONS(2566), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_static] = ACTIONS(2564), - [anon_sym_auto] = ACTIONS(2564), - [anon_sym_register] = ACTIONS(2564), - [anon_sym_inline] = ACTIONS(2564), - [anon_sym_const] = ACTIONS(2564), - [anon_sym_restrict] = ACTIONS(2564), - [anon_sym_volatile] = ACTIONS(2564), - [anon_sym__Atomic] = ACTIONS(2564), - [anon_sym_unsigned] = ACTIONS(2564), - [anon_sym_long] = ACTIONS(2564), - [anon_sym_short] = ACTIONS(2564), - [sym_primitive_type] = ACTIONS(2564), - [anon_sym_enum] = ACTIONS(2564), - [anon_sym_struct] = ACTIONS(2564), - [anon_sym_union] = ACTIONS(2564), - [anon_sym_if] = ACTIONS(2564), - [anon_sym_else] = ACTIONS(2564), - [anon_sym_switch] = ACTIONS(2564), - [anon_sym_case] = ACTIONS(2564), - [anon_sym_default] = ACTIONS(2564), - [anon_sym_while] = ACTIONS(2564), - [anon_sym_do] = ACTIONS(2564), - [anon_sym_for] = ACTIONS(2564), - [anon_sym_return] = ACTIONS(2564), - [anon_sym_break] = ACTIONS(2564), - [anon_sym_continue] = ACTIONS(2564), - [anon_sym_goto] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_BANG] = ACTIONS(2566), - [anon_sym_TILDE] = ACTIONS(2566), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_DASH_DASH] = ACTIONS(2566), - [anon_sym_PLUS_PLUS] = ACTIONS(2566), - [anon_sym_sizeof] = ACTIONS(2564), - [sym_number_literal] = ACTIONS(2566), - [anon_sym_SQUOTE] = ACTIONS(2566), - [anon_sym_DQUOTE] = ACTIONS(2566), - [sym_true] = ACTIONS(2564), - [sym_false] = ACTIONS(2564), - [sym_null] = ACTIONS(2564), - [sym_identifier] = ACTIONS(2564), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(2524), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(1104), + [anon_sym_STAR_EQ] = ACTIONS(1106), + [anon_sym_SLASH_EQ] = ACTIONS(1106), + [anon_sym_PERCENT_EQ] = ACTIONS(1106), + [anon_sym_PLUS_EQ] = ACTIONS(1106), + [anon_sym_DASH_EQ] = ACTIONS(1106), + [anon_sym_LT_LT_EQ] = ACTIONS(1106), + [anon_sym_GT_GT_EQ] = ACTIONS(1106), + [anon_sym_AMP_EQ] = ACTIONS(1106), + [anon_sym_CARET_EQ] = ACTIONS(1106), + [anon_sym_PIPE_EQ] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_PIPE_PIPE] = ACTIONS(1110), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1114), + [anon_sym_CARET] = ACTIONS(1116), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [730] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2568), - [anon_sym_LPAREN] = ACTIONS(2570), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2568), - [sym_preproc_directive] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_typedef] = ACTIONS(2568), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_RBRACE] = ACTIONS(2570), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_auto] = ACTIONS(2568), - [anon_sym_register] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_restrict] = ACTIONS(2568), - [anon_sym_volatile] = ACTIONS(2568), - [anon_sym__Atomic] = ACTIONS(2568), - [anon_sym_unsigned] = ACTIONS(2568), - [anon_sym_long] = ACTIONS(2568), - [anon_sym_short] = ACTIONS(2568), - [sym_primitive_type] = ACTIONS(2568), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_struct] = ACTIONS(2568), - [anon_sym_union] = ACTIONS(2568), - [anon_sym_if] = ACTIONS(2568), - [anon_sym_else] = ACTIONS(2568), - [anon_sym_switch] = ACTIONS(2568), - [anon_sym_case] = ACTIONS(2568), - [anon_sym_default] = ACTIONS(2568), - [anon_sym_while] = ACTIONS(2568), - [anon_sym_do] = ACTIONS(2568), - [anon_sym_for] = ACTIONS(2568), - [anon_sym_return] = ACTIONS(2568), - [anon_sym_break] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2568), - [anon_sym_goto] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_BANG] = ACTIONS(2570), - [anon_sym_TILDE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2570), - [anon_sym_PLUS_PLUS] = ACTIONS(2570), - [anon_sym_sizeof] = ACTIONS(2568), - [sym_number_literal] = ACTIONS(2570), - [anon_sym_SQUOTE] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(2570), - [sym_true] = ACTIONS(2568), - [sym_false] = ACTIONS(2568), - [sym_null] = ACTIONS(2568), - [sym_identifier] = ACTIONS(2568), + [anon_sym_RPAREN] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2524), [sym_comment] = ACTIONS(39), }, [731] = { - [anon_sym_RPAREN] = ACTIONS(2572), + [anon_sym_COMMA] = ACTIONS(2526), + [anon_sym_RPAREN] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_RBRACE] = ACTIONS(2526), + [anon_sym_LPAREN2] = ACTIONS(2526), + [anon_sym_STAR] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym_RBRACK] = ACTIONS(2526), + [anon_sym_EQ] = ACTIONS(2528), + [anon_sym_COLON] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(2526), + [anon_sym_STAR_EQ] = ACTIONS(2526), + [anon_sym_SLASH_EQ] = ACTIONS(2526), + [anon_sym_PERCENT_EQ] = ACTIONS(2526), + [anon_sym_PLUS_EQ] = ACTIONS(2526), + [anon_sym_DASH_EQ] = ACTIONS(2526), + [anon_sym_LT_LT_EQ] = ACTIONS(2526), + [anon_sym_GT_GT_EQ] = ACTIONS(2526), + [anon_sym_AMP_EQ] = ACTIONS(2526), + [anon_sym_CARET_EQ] = ACTIONS(2526), + [anon_sym_PIPE_EQ] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_PIPE_PIPE] = ACTIONS(2526), + [anon_sym_AMP_AMP] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2528), + [anon_sym_CARET] = ACTIONS(2528), + [anon_sym_EQ_EQ] = ACTIONS(2526), + [anon_sym_BANG_EQ] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2528), + [anon_sym_GT] = ACTIONS(2528), + [anon_sym_LT_EQ] = ACTIONS(2526), + [anon_sym_GT_EQ] = ACTIONS(2526), + [anon_sym_LT_LT] = ACTIONS(2528), + [anon_sym_GT_GT] = ACTIONS(2528), + [anon_sym_PLUS] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_SLASH] = ACTIONS(2528), + [anon_sym_PERCENT] = ACTIONS(2528), + [anon_sym_DASH_DASH] = ACTIONS(2526), + [anon_sym_PLUS_PLUS] = ACTIONS(2526), + [anon_sym_DOT] = ACTIONS(2526), + [anon_sym_DASH_GT] = ACTIONS(2526), [sym_comment] = ACTIONS(39), }, [732] = { - [anon_sym_LPAREN] = ACTIONS(2574), - [anon_sym_COMMA] = ACTIONS(2574), - [anon_sym_RPAREN] = ACTIONS(2574), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_RBRACE] = ACTIONS(2574), - [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_LBRACK] = ACTIONS(2574), - [anon_sym_RBRACK] = ACTIONS(2574), - [anon_sym_EQ] = ACTIONS(2576), - [anon_sym_COLON] = ACTIONS(2574), - [anon_sym_QMARK] = ACTIONS(2574), - [anon_sym_STAR_EQ] = ACTIONS(2574), - [anon_sym_SLASH_EQ] = ACTIONS(2574), - [anon_sym_PERCENT_EQ] = ACTIONS(2574), - [anon_sym_PLUS_EQ] = ACTIONS(2574), - [anon_sym_DASH_EQ] = ACTIONS(2574), - [anon_sym_LT_LT_EQ] = ACTIONS(2574), - [anon_sym_GT_GT_EQ] = ACTIONS(2574), - [anon_sym_AMP_EQ] = ACTIONS(2574), - [anon_sym_CARET_EQ] = ACTIONS(2574), - [anon_sym_PIPE_EQ] = ACTIONS(2574), - [anon_sym_AMP] = ACTIONS(2576), - [anon_sym_PIPE_PIPE] = ACTIONS(2574), - [anon_sym_AMP_AMP] = ACTIONS(2574), - [anon_sym_PIPE] = ACTIONS(2576), - [anon_sym_CARET] = ACTIONS(2576), - [anon_sym_EQ_EQ] = ACTIONS(2574), - [anon_sym_BANG_EQ] = ACTIONS(2574), - [anon_sym_LT] = ACTIONS(2576), - [anon_sym_GT] = ACTIONS(2576), - [anon_sym_LT_EQ] = ACTIONS(2574), - [anon_sym_GT_EQ] = ACTIONS(2574), - [anon_sym_LT_LT] = ACTIONS(2576), - [anon_sym_GT_GT] = ACTIONS(2576), - [anon_sym_PLUS] = ACTIONS(2576), - [anon_sym_DASH] = ACTIONS(2576), - [anon_sym_SLASH] = ACTIONS(2576), - [anon_sym_PERCENT] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2574), - [anon_sym_PLUS_PLUS] = ACTIONS(2574), - [anon_sym_DOT] = ACTIONS(2574), - [anon_sym_DASH_GT] = ACTIONS(2574), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(968), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(2532), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [733] = { - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_COLON] = ACTIONS(1100), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2534), + [anon_sym_RPAREN] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2534), + [anon_sym_EQ] = ACTIONS(2536), + [anon_sym_COLON] = ACTIONS(2534), + [anon_sym_QMARK] = ACTIONS(2534), + [anon_sym_STAR_EQ] = ACTIONS(2534), + [anon_sym_SLASH_EQ] = ACTIONS(2534), + [anon_sym_PERCENT_EQ] = ACTIONS(2534), + [anon_sym_PLUS_EQ] = ACTIONS(2534), + [anon_sym_DASH_EQ] = ACTIONS(2534), + [anon_sym_LT_LT_EQ] = ACTIONS(2534), + [anon_sym_GT_GT_EQ] = ACTIONS(2534), + [anon_sym_AMP_EQ] = ACTIONS(2534), + [anon_sym_CARET_EQ] = ACTIONS(2534), + [anon_sym_PIPE_EQ] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2536), + [anon_sym_EQ_EQ] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_GT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_LT_LT] = ACTIONS(2536), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(2536), + [anon_sym_PERCENT] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [734] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2578), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2578), - [anon_sym_LPAREN] = ACTIONS(2580), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2578), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2578), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2578), - [sym_preproc_directive] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2580), - [anon_sym_typedef] = ACTIONS(2578), - [anon_sym_extern] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2578), - [anon_sym_auto] = ACTIONS(2578), - [anon_sym_register] = ACTIONS(2578), - [anon_sym_inline] = ACTIONS(2578), - [anon_sym_const] = ACTIONS(2578), - [anon_sym_restrict] = ACTIONS(2578), - [anon_sym_volatile] = ACTIONS(2578), - [anon_sym__Atomic] = ACTIONS(2578), - [anon_sym_unsigned] = ACTIONS(2578), - [anon_sym_long] = ACTIONS(2578), - [anon_sym_short] = ACTIONS(2578), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_enum] = ACTIONS(2578), - [anon_sym_struct] = ACTIONS(2578), - [anon_sym_union] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2578), - [anon_sym_else] = ACTIONS(2578), - [anon_sym_switch] = ACTIONS(2578), - [anon_sym_case] = ACTIONS(2578), - [anon_sym_default] = ACTIONS(2578), - [anon_sym_while] = ACTIONS(2578), - [anon_sym_do] = ACTIONS(2578), - [anon_sym_for] = ACTIONS(2578), - [anon_sym_return] = ACTIONS(2578), - [anon_sym_break] = ACTIONS(2578), - [anon_sym_continue] = ACTIONS(2578), - [anon_sym_goto] = ACTIONS(2578), - [anon_sym_AMP] = ACTIONS(2580), - [anon_sym_BANG] = ACTIONS(2580), - [anon_sym_TILDE] = ACTIONS(2580), - [anon_sym_PLUS] = ACTIONS(2578), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(2580), - [anon_sym_PLUS_PLUS] = ACTIONS(2580), - [anon_sym_sizeof] = ACTIONS(2578), - [sym_number_literal] = ACTIONS(2580), - [anon_sym_SQUOTE] = ACTIONS(2580), - [anon_sym_DQUOTE] = ACTIONS(2580), - [sym_true] = ACTIONS(2578), - [sym_false] = ACTIONS(2578), - [sym_null] = ACTIONS(2578), - [sym_identifier] = ACTIONS(2578), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2538), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [735] = { - [anon_sym_LPAREN] = ACTIONS(2582), - [anon_sym_COMMA] = ACTIONS(2582), - [anon_sym_RPAREN] = ACTIONS(2582), - [anon_sym_SEMI] = ACTIONS(2582), - [anon_sym_RBRACE] = ACTIONS(2582), - [anon_sym_STAR] = ACTIONS(2584), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_RBRACK] = ACTIONS(2582), - [anon_sym_EQ] = ACTIONS(2584), - [anon_sym_COLON] = ACTIONS(2582), - [anon_sym_QMARK] = ACTIONS(2582), - [anon_sym_STAR_EQ] = ACTIONS(2582), - [anon_sym_SLASH_EQ] = ACTIONS(2582), - [anon_sym_PERCENT_EQ] = ACTIONS(2582), - [anon_sym_PLUS_EQ] = ACTIONS(2582), - [anon_sym_DASH_EQ] = ACTIONS(2582), - [anon_sym_LT_LT_EQ] = ACTIONS(2582), - [anon_sym_GT_GT_EQ] = ACTIONS(2582), - [anon_sym_AMP_EQ] = ACTIONS(2582), - [anon_sym_CARET_EQ] = ACTIONS(2582), - [anon_sym_PIPE_EQ] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2584), - [anon_sym_PIPE_PIPE] = ACTIONS(2582), - [anon_sym_AMP_AMP] = ACTIONS(2582), - [anon_sym_PIPE] = ACTIONS(2584), - [anon_sym_CARET] = ACTIONS(2584), - [anon_sym_EQ_EQ] = ACTIONS(2582), - [anon_sym_BANG_EQ] = ACTIONS(2582), - [anon_sym_LT] = ACTIONS(2584), - [anon_sym_GT] = ACTIONS(2584), - [anon_sym_LT_EQ] = ACTIONS(2582), - [anon_sym_GT_EQ] = ACTIONS(2582), - [anon_sym_LT_LT] = ACTIONS(2584), - [anon_sym_GT_GT] = ACTIONS(2584), - [anon_sym_PLUS] = ACTIONS(2584), - [anon_sym_DASH] = ACTIONS(2584), - [anon_sym_SLASH] = ACTIONS(2584), - [anon_sym_PERCENT] = ACTIONS(2584), - [anon_sym_DASH_DASH] = ACTIONS(2582), - [anon_sym_PLUS_PLUS] = ACTIONS(2582), - [anon_sym_DOT] = ACTIONS(2582), - [anon_sym_DASH_GT] = ACTIONS(2582), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2540), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(2540), + [anon_sym_STAR_EQ] = ACTIONS(1106), + [anon_sym_SLASH_EQ] = ACTIONS(1106), + [anon_sym_PERCENT_EQ] = ACTIONS(1106), + [anon_sym_PLUS_EQ] = ACTIONS(1106), + [anon_sym_DASH_EQ] = ACTIONS(1106), + [anon_sym_LT_LT_EQ] = ACTIONS(1106), + [anon_sym_GT_GT_EQ] = ACTIONS(1106), + [anon_sym_AMP_EQ] = ACTIONS(1106), + [anon_sym_CARET_EQ] = ACTIONS(1106), + [anon_sym_PIPE_EQ] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_PIPE_PIPE] = ACTIONS(1110), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1114), + [anon_sym_CARET] = ACTIONS(1116), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [736] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(974), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(2542), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [737] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2544), + [anon_sym_SEMI] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [738] = { - [anon_sym_RPAREN] = ACTIONS(2590), - [anon_sym_SEMI] = ACTIONS(2590), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2550), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_STAR_EQ] = ACTIONS(2548), + [anon_sym_SLASH_EQ] = ACTIONS(2548), + [anon_sym_PERCENT_EQ] = ACTIONS(2548), + [anon_sym_PLUS_EQ] = ACTIONS(2548), + [anon_sym_DASH_EQ] = ACTIONS(2548), + [anon_sym_LT_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_GT_EQ] = ACTIONS(2548), + [anon_sym_AMP_EQ] = ACTIONS(2548), + [anon_sym_CARET_EQ] = ACTIONS(2548), + [anon_sym_PIPE_EQ] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_PIPE_PIPE] = ACTIONS(2548), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1114), + [anon_sym_CARET] = ACTIONS(1116), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [739] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2592), - [anon_sym_RPAREN] = ACTIONS(2592), - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym_RBRACE] = ACTIONS(2592), - [anon_sym_STAR] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2592), - [anon_sym_EQ] = ACTIONS(2594), - [anon_sym_COLON] = ACTIONS(2592), - [anon_sym_QMARK] = ACTIONS(2592), - [anon_sym_STAR_EQ] = ACTIONS(2592), - [anon_sym_SLASH_EQ] = ACTIONS(2592), - [anon_sym_PERCENT_EQ] = ACTIONS(2592), - [anon_sym_PLUS_EQ] = ACTIONS(2592), - [anon_sym_DASH_EQ] = ACTIONS(2592), - [anon_sym_LT_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_GT_EQ] = ACTIONS(2592), - [anon_sym_AMP_EQ] = ACTIONS(2592), - [anon_sym_CARET_EQ] = ACTIONS(2592), - [anon_sym_PIPE_EQ] = ACTIONS(2592), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2592), - [anon_sym_AMP_AMP] = ACTIONS(2592), - [anon_sym_PIPE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_EQ_EQ] = ACTIONS(2592), - [anon_sym_BANG_EQ] = ACTIONS(2592), - [anon_sym_LT] = ACTIONS(2594), - [anon_sym_GT] = ACTIONS(2594), - [anon_sym_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_EQ] = ACTIONS(2592), - [anon_sym_LT_LT] = ACTIONS(2594), - [anon_sym_GT_GT] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(2594), - [anon_sym_PERCENT] = ACTIONS(2594), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2550), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_STAR_EQ] = ACTIONS(2548), + [anon_sym_SLASH_EQ] = ACTIONS(2548), + [anon_sym_PERCENT_EQ] = ACTIONS(2548), + [anon_sym_PLUS_EQ] = ACTIONS(2548), + [anon_sym_DASH_EQ] = ACTIONS(2548), + [anon_sym_LT_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_GT_EQ] = ACTIONS(2548), + [anon_sym_AMP_EQ] = ACTIONS(2548), + [anon_sym_CARET_EQ] = ACTIONS(2548), + [anon_sym_PIPE_EQ] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_PIPE_PIPE] = ACTIONS(2548), + [anon_sym_AMP_AMP] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(1114), + [anon_sym_CARET] = ACTIONS(1116), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [740] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2596), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2544), + [anon_sym_SEMI] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(1116), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [741] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2598), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(2598), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2544), + [anon_sym_SEMI] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [742] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(2600), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2552), + [anon_sym_SEMI] = ACTIONS(2552), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2554), + [anon_sym_QMARK] = ACTIONS(2552), + [anon_sym_STAR_EQ] = ACTIONS(2552), + [anon_sym_SLASH_EQ] = ACTIONS(2552), + [anon_sym_PERCENT_EQ] = ACTIONS(2552), + [anon_sym_PLUS_EQ] = ACTIONS(2552), + [anon_sym_DASH_EQ] = ACTIONS(2552), + [anon_sym_LT_LT_EQ] = ACTIONS(2552), + [anon_sym_GT_GT_EQ] = ACTIONS(2552), + [anon_sym_AMP_EQ] = ACTIONS(2552), + [anon_sym_CARET_EQ] = ACTIONS(2552), + [anon_sym_PIPE_EQ] = ACTIONS(2552), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_PIPE_PIPE] = ACTIONS(2552), + [anon_sym_AMP_AMP] = ACTIONS(2552), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_EQ_EQ] = ACTIONS(2552), + [anon_sym_BANG_EQ] = ACTIONS(2552), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [743] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2556), + [anon_sym_SEMI] = ACTIONS(2556), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2558), + [anon_sym_QMARK] = ACTIONS(2556), + [anon_sym_STAR_EQ] = ACTIONS(2556), + [anon_sym_SLASH_EQ] = ACTIONS(2556), + [anon_sym_PERCENT_EQ] = ACTIONS(2556), + [anon_sym_PLUS_EQ] = ACTIONS(2556), + [anon_sym_DASH_EQ] = ACTIONS(2556), + [anon_sym_LT_LT_EQ] = ACTIONS(2556), + [anon_sym_GT_GT_EQ] = ACTIONS(2556), + [anon_sym_AMP_EQ] = ACTIONS(2556), + [anon_sym_CARET_EQ] = ACTIONS(2556), + [anon_sym_PIPE_EQ] = ACTIONS(2556), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2556), + [anon_sym_AMP_AMP] = ACTIONS(2556), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2556), + [anon_sym_BANG_EQ] = ACTIONS(2556), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_LT_EQ] = ACTIONS(2556), + [anon_sym_GT_EQ] = ACTIONS(2556), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [744] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2606), - [anon_sym_STAR_EQ] = ACTIONS(2606), - [anon_sym_SLASH_EQ] = ACTIONS(2606), - [anon_sym_PERCENT_EQ] = ACTIONS(2606), - [anon_sym_PLUS_EQ] = ACTIONS(2606), - [anon_sym_DASH_EQ] = ACTIONS(2606), - [anon_sym_LT_LT_EQ] = ACTIONS(2606), - [anon_sym_GT_GT_EQ] = ACTIONS(2606), - [anon_sym_AMP_EQ] = ACTIONS(2606), - [anon_sym_CARET_EQ] = ACTIONS(2606), - [anon_sym_PIPE_EQ] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2560), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2562), + [anon_sym_QMARK] = ACTIONS(2560), + [anon_sym_STAR_EQ] = ACTIONS(2560), + [anon_sym_SLASH_EQ] = ACTIONS(2560), + [anon_sym_PERCENT_EQ] = ACTIONS(2560), + [anon_sym_PLUS_EQ] = ACTIONS(2560), + [anon_sym_DASH_EQ] = ACTIONS(2560), + [anon_sym_LT_LT_EQ] = ACTIONS(2560), + [anon_sym_GT_GT_EQ] = ACTIONS(2560), + [anon_sym_AMP_EQ] = ACTIONS(2560), + [anon_sym_CARET_EQ] = ACTIONS(2560), + [anon_sym_PIPE_EQ] = ACTIONS(2560), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2560), + [anon_sym_AMP_AMP] = ACTIONS(2560), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2560), + [anon_sym_BANG_EQ] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2562), + [anon_sym_LT_EQ] = ACTIONS(2560), + [anon_sym_GT_EQ] = ACTIONS(2560), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2562), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [745] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2606), - [anon_sym_STAR_EQ] = ACTIONS(2606), - [anon_sym_SLASH_EQ] = ACTIONS(2606), - [anon_sym_PERCENT_EQ] = ACTIONS(2606), - [anon_sym_PLUS_EQ] = ACTIONS(2606), - [anon_sym_DASH_EQ] = ACTIONS(2606), - [anon_sym_LT_LT_EQ] = ACTIONS(2606), - [anon_sym_GT_GT_EQ] = ACTIONS(2606), - [anon_sym_AMP_EQ] = ACTIONS(2606), - [anon_sym_CARET_EQ] = ACTIONS(2606), - [anon_sym_PIPE_EQ] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2536), + [anon_sym_QMARK] = ACTIONS(2534), + [anon_sym_STAR_EQ] = ACTIONS(2534), + [anon_sym_SLASH_EQ] = ACTIONS(2534), + [anon_sym_PERCENT_EQ] = ACTIONS(2534), + [anon_sym_PLUS_EQ] = ACTIONS(2534), + [anon_sym_DASH_EQ] = ACTIONS(2534), + [anon_sym_LT_LT_EQ] = ACTIONS(2534), + [anon_sym_GT_GT_EQ] = ACTIONS(2534), + [anon_sym_AMP_EQ] = ACTIONS(2534), + [anon_sym_CARET_EQ] = ACTIONS(2534), + [anon_sym_PIPE_EQ] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2536), + [anon_sym_EQ_EQ] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_GT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_LT_LT] = ACTIONS(2536), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [746] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2564), + [anon_sym_RBRACE] = ACTIONS(2564), + [anon_sym_LPAREN2] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_LBRACK] = ACTIONS(2564), + [anon_sym_RBRACK] = ACTIONS(2564), + [anon_sym_EQ] = ACTIONS(2566), + [anon_sym_COLON] = ACTIONS(2564), + [anon_sym_QMARK] = ACTIONS(2564), + [anon_sym_STAR_EQ] = ACTIONS(2564), + [anon_sym_SLASH_EQ] = ACTIONS(2564), + [anon_sym_PERCENT_EQ] = ACTIONS(2564), + [anon_sym_PLUS_EQ] = ACTIONS(2564), + [anon_sym_DASH_EQ] = ACTIONS(2564), + [anon_sym_LT_LT_EQ] = ACTIONS(2564), + [anon_sym_GT_GT_EQ] = ACTIONS(2564), + [anon_sym_AMP_EQ] = ACTIONS(2564), + [anon_sym_CARET_EQ] = ACTIONS(2564), + [anon_sym_PIPE_EQ] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_PIPE_PIPE] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(2564), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_CARET] = ACTIONS(2566), + [anon_sym_EQ_EQ] = ACTIONS(2564), + [anon_sym_BANG_EQ] = ACTIONS(2564), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_GT] = ACTIONS(2566), + [anon_sym_LT_EQ] = ACTIONS(2564), + [anon_sym_GT_EQ] = ACTIONS(2564), + [anon_sym_LT_LT] = ACTIONS(2566), + [anon_sym_GT_GT] = ACTIONS(2566), + [anon_sym_PLUS] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2566), + [anon_sym_SLASH] = ACTIONS(2566), + [anon_sym_PERCENT] = ACTIONS(2566), + [anon_sym_DASH_DASH] = ACTIONS(2564), + [anon_sym_PLUS_PLUS] = ACTIONS(2564), + [anon_sym_DOT] = ACTIONS(2564), + [anon_sym_DASH_GT] = ACTIONS(2564), [sym_comment] = ACTIONS(39), }, [747] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_string_literal] = STATE(747), + [aux_sym_concatenated_string_repeat1] = STATE(747), + [anon_sym_COMMA] = ACTIONS(2568), + [anon_sym_SEMI] = ACTIONS(2568), + [anon_sym_LPAREN2] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_EQ] = ACTIONS(2570), + [anon_sym_QMARK] = ACTIONS(2568), + [anon_sym_STAR_EQ] = ACTIONS(2568), + [anon_sym_SLASH_EQ] = ACTIONS(2568), + [anon_sym_PERCENT_EQ] = ACTIONS(2568), + [anon_sym_PLUS_EQ] = ACTIONS(2568), + [anon_sym_DASH_EQ] = ACTIONS(2568), + [anon_sym_LT_LT_EQ] = ACTIONS(2568), + [anon_sym_GT_GT_EQ] = ACTIONS(2568), + [anon_sym_AMP_EQ] = ACTIONS(2568), + [anon_sym_CARET_EQ] = ACTIONS(2568), + [anon_sym_PIPE_EQ] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2568), + [anon_sym_AMP_AMP] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_LT_EQ] = ACTIONS(2568), + [anon_sym_GT_EQ] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2570), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2570), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2568), + [anon_sym_DOT] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2572), [sym_comment] = ACTIONS(39), }, [748] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2610), - [anon_sym_SEMI] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2612), - [anon_sym_QMARK] = ACTIONS(2610), - [anon_sym_STAR_EQ] = ACTIONS(2610), - [anon_sym_SLASH_EQ] = ACTIONS(2610), - [anon_sym_PERCENT_EQ] = ACTIONS(2610), - [anon_sym_PLUS_EQ] = ACTIONS(2610), - [anon_sym_DASH_EQ] = ACTIONS(2610), - [anon_sym_LT_LT_EQ] = ACTIONS(2610), - [anon_sym_GT_GT_EQ] = ACTIONS(2610), - [anon_sym_AMP_EQ] = ACTIONS(2610), - [anon_sym_CARET_EQ] = ACTIONS(2610), - [anon_sym_PIPE_EQ] = ACTIONS(2610), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE_PIPE] = ACTIONS(2610), - [anon_sym_AMP_AMP] = ACTIONS(2610), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_CARET] = ACTIONS(2612), - [anon_sym_EQ_EQ] = ACTIONS(2610), - [anon_sym_BANG_EQ] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [anon_sym_COMMA] = ACTIONS(2575), + [anon_sym_RPAREN] = ACTIONS(2575), [sym_comment] = ACTIONS(39), }, [749] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2616), - [anon_sym_QMARK] = ACTIONS(2614), - [anon_sym_STAR_EQ] = ACTIONS(2614), - [anon_sym_SLASH_EQ] = ACTIONS(2614), - [anon_sym_PERCENT_EQ] = ACTIONS(2614), - [anon_sym_PLUS_EQ] = ACTIONS(2614), - [anon_sym_DASH_EQ] = ACTIONS(2614), - [anon_sym_LT_LT_EQ] = ACTIONS(2614), - [anon_sym_GT_GT_EQ] = ACTIONS(2614), - [anon_sym_AMP_EQ] = ACTIONS(2614), - [anon_sym_CARET_EQ] = ACTIONS(2614), - [anon_sym_PIPE_EQ] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_CARET] = ACTIONS(2616), - [anon_sym_EQ_EQ] = ACTIONS(2614), - [anon_sym_BANG_EQ] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_GT] = ACTIONS(2616), - [anon_sym_LT_EQ] = ACTIONS(2614), - [anon_sym_GT_EQ] = ACTIONS(2614), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [anon_sym_COMMA] = ACTIONS(2577), + [anon_sym_RPAREN] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2577), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2577), + [anon_sym_EQ] = ACTIONS(2577), + [anon_sym_COLON] = ACTIONS(2577), [sym_comment] = ACTIONS(39), }, [750] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2618), - [anon_sym_SEMI] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2618), - [anon_sym_STAR_EQ] = ACTIONS(2618), - [anon_sym_SLASH_EQ] = ACTIONS(2618), - [anon_sym_PERCENT_EQ] = ACTIONS(2618), - [anon_sym_PLUS_EQ] = ACTIONS(2618), - [anon_sym_DASH_EQ] = ACTIONS(2618), - [anon_sym_LT_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_GT_EQ] = ACTIONS(2618), - [anon_sym_AMP_EQ] = ACTIONS(2618), - [anon_sym_CARET_EQ] = ACTIONS(2618), - [anon_sym_PIPE_EQ] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_EQ_EQ] = ACTIONS(2618), - [anon_sym_BANG_EQ] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_LT_LT] = ACTIONS(2620), - [anon_sym_GT_GT] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_parameter_list_repeat1] = STATE(750), + [anon_sym_COMMA] = ACTIONS(2579), + [anon_sym_RPAREN] = ACTIONS(2575), [sym_comment] = ACTIONS(39), }, [751] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2592), - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2594), - [anon_sym_QMARK] = ACTIONS(2592), - [anon_sym_STAR_EQ] = ACTIONS(2592), - [anon_sym_SLASH_EQ] = ACTIONS(2592), - [anon_sym_PERCENT_EQ] = ACTIONS(2592), - [anon_sym_PLUS_EQ] = ACTIONS(2592), - [anon_sym_DASH_EQ] = ACTIONS(2592), - [anon_sym_LT_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_GT_EQ] = ACTIONS(2592), - [anon_sym_AMP_EQ] = ACTIONS(2592), - [anon_sym_CARET_EQ] = ACTIONS(2592), - [anon_sym_PIPE_EQ] = ACTIONS(2592), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2592), - [anon_sym_AMP_AMP] = ACTIONS(2592), - [anon_sym_PIPE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_EQ_EQ] = ACTIONS(2592), - [anon_sym_BANG_EQ] = ACTIONS(2592), - [anon_sym_LT] = ACTIONS(2594), - [anon_sym_GT] = ACTIONS(2594), - [anon_sym_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_EQ] = ACTIONS(2592), - [anon_sym_LT_LT] = ACTIONS(2594), - [anon_sym_GT_GT] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym__declarator] = STATE(122), + [sym__abstract_declarator] = STATE(386), + [sym_pointer_declarator] = STATE(122), + [sym_abstract_pointer_declarator] = STATE(386), + [sym_function_declarator] = STATE(122), + [sym_abstract_function_declarator] = STATE(386), + [sym_array_declarator] = STATE(122), + [sym_abstract_array_declarator] = STATE(386), + [sym_type_qualifier] = STATE(971), + [sym_parameter_list] = STATE(212), + [aux_sym_type_definition_repeat1] = STATE(971), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_LPAREN2] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(235), [sym_comment] = ACTIONS(39), }, [752] = { - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_COMMA] = ACTIONS(2622), - [anon_sym_RPAREN] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2622), - [anon_sym_RBRACE] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2624), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_RBRACK] = ACTIONS(2622), - [anon_sym_EQ] = ACTIONS(2624), - [anon_sym_COLON] = ACTIONS(2622), - [anon_sym_QMARK] = ACTIONS(2622), - [anon_sym_STAR_EQ] = ACTIONS(2622), - [anon_sym_SLASH_EQ] = ACTIONS(2622), - [anon_sym_PERCENT_EQ] = ACTIONS(2622), - [anon_sym_PLUS_EQ] = ACTIONS(2622), - [anon_sym_DASH_EQ] = ACTIONS(2622), - [anon_sym_LT_LT_EQ] = ACTIONS(2622), - [anon_sym_GT_GT_EQ] = ACTIONS(2622), - [anon_sym_AMP_EQ] = ACTIONS(2622), - [anon_sym_CARET_EQ] = ACTIONS(2622), - [anon_sym_PIPE_EQ] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_PIPE_PIPE] = ACTIONS(2622), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_PIPE] = ACTIONS(2624), - [anon_sym_CARET] = ACTIONS(2624), - [anon_sym_EQ_EQ] = ACTIONS(2622), - [anon_sym_BANG_EQ] = ACTIONS(2622), - [anon_sym_LT] = ACTIONS(2624), - [anon_sym_GT] = ACTIONS(2624), - [anon_sym_LT_EQ] = ACTIONS(2622), - [anon_sym_GT_EQ] = ACTIONS(2622), - [anon_sym_LT_LT] = ACTIONS(2624), - [anon_sym_GT_GT] = ACTIONS(2624), - [anon_sym_PLUS] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2624), - [anon_sym_SLASH] = ACTIONS(2624), - [anon_sym_PERCENT] = ACTIONS(2624), - [anon_sym_DASH_DASH] = ACTIONS(2622), - [anon_sym_PLUS_PLUS] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2622), - [anon_sym_DASH_GT] = ACTIONS(2622), + [anon_sym_COMMA] = ACTIONS(81), + [anon_sym_RPAREN] = ACTIONS(2582), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(81), + [anon_sym_LBRACK] = ACTIONS(2582), + [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), + [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, [753] = { - [sym_string_literal] = STATE(753), - [aux_sym_concatenated_string_repeat1] = STATE(753), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_STAR_EQ] = ACTIONS(2626), - [anon_sym_SLASH_EQ] = ACTIONS(2626), - [anon_sym_PERCENT_EQ] = ACTIONS(2626), - [anon_sym_PLUS_EQ] = ACTIONS(2626), - [anon_sym_DASH_EQ] = ACTIONS(2626), - [anon_sym_LT_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_GT_EQ] = ACTIONS(2626), - [anon_sym_AMP_EQ] = ACTIONS(2626), - [anon_sym_CARET_EQ] = ACTIONS(2626), - [anon_sym_PIPE_EQ] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2628), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_EQ_EQ] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2626), - [anon_sym_LT_LT] = ACTIONS(2628), - [anon_sym_GT_GT] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_SLASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_DASH_DASH] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2630), + [sym__declarator] = STATE(218), + [sym__abstract_declarator] = STATE(618), + [sym_pointer_declarator] = STATE(218), + [sym_abstract_pointer_declarator] = STATE(618), + [sym_function_declarator] = STATE(218), + [sym_abstract_function_declarator] = STATE(618), + [sym_array_declarator] = STATE(218), + [sym_abstract_array_declarator] = STATE(618), + [sym_type_qualifier] = STATE(972), + [sym_parameter_list] = STATE(212), + [aux_sym_type_definition_repeat1] = STATE(972), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1144), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(532), [sym_comment] = ACTIONS(39), }, [754] = { - [sym__expression] = STATE(866), - [sym_conditional_expression] = STATE(866), - [sym_assignment_expression] = STATE(866), - [sym_pointer_expression] = STATE(866), - [sym_logical_expression] = STATE(866), - [sym_bitwise_expression] = STATE(866), - [sym_equality_expression] = STATE(866), - [sym_relational_expression] = STATE(866), - [sym_shift_expression] = STATE(866), - [sym_math_expression] = STATE(866), - [sym_cast_expression] = STATE(866), - [sym_sizeof_expression] = STATE(866), - [sym_subscript_expression] = STATE(866), - [sym_call_expression] = STATE(866), - [sym_field_expression] = STATE(866), - [sym_compound_literal_expression] = STATE(866), - [sym_parenthesized_expression] = STATE(866), - [sym_initializer_list] = STATE(867), - [sym_char_literal] = STATE(866), - [sym_concatenated_string] = STATE(866), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2332), + [sym_storage_class_specifier] = STATE(754), + [sym_type_qualifier] = STATE(754), + [aux_sym__declaration_specifiers_repeat1] = STATE(754), + [anon_sym_COMMA] = ACTIONS(646), + [anon_sym_RPAREN] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(303), + [anon_sym_LPAREN2] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(646), + [anon_sym_static] = ACTIONS(303), + [anon_sym_auto] = ACTIONS(303), + [anon_sym_register] = ACTIONS(303), + [anon_sym_inline] = ACTIONS(303), + [anon_sym_const] = ACTIONS(306), + [anon_sym_restrict] = ACTIONS(306), + [anon_sym_volatile] = ACTIONS(306), + [anon_sym__Atomic] = ACTIONS(306), + [sym_identifier] = ACTIONS(309), [sym_comment] = ACTIONS(39), }, [755] = { - [anon_sym_RPAREN] = ACTIONS(2633), + [sym_storage_class_specifier] = STATE(754), + [sym_type_qualifier] = STATE(754), + [aux_sym__declaration_specifiers_repeat1] = STATE(754), + [anon_sym_COMMA] = ACTIONS(648), + [anon_sym_RPAREN] = ACTIONS(648), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(648), + [anon_sym_STAR] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(648), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(650), [sym_comment] = ACTIONS(39), }, [756] = { - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_COMMA] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_EQ] = ACTIONS(2635), + [sym__expression] = STATE(921), + [sym_conditional_expression] = STATE(921), + [sym_assignment_expression] = STATE(921), + [sym_pointer_expression] = STATE(921), + [sym_logical_expression] = STATE(921), + [sym_bitwise_expression] = STATE(921), + [sym_equality_expression] = STATE(921), + [sym_relational_expression] = STATE(921), + [sym_shift_expression] = STATE(921), + [sym_math_expression] = STATE(921), + [sym_cast_expression] = STATE(921), + [sym_sizeof_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_call_expression] = STATE(921), + [sym_field_expression] = STATE(921), + [sym_compound_literal_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(921), + [sym_initializer_list] = STATE(922), + [sym_char_literal] = STATE(921), + [sym_concatenated_string] = STATE(921), + [sym_string_literal] = STATE(272), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2394), + [sym_false] = ACTIONS(2394), + [sym_null] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2394), [sym_comment] = ACTIONS(39), }, [757] = { - [sym_storage_class_specifier] = STATE(757), - [sym_type_qualifier] = STATE(757), - [aux_sym__declaration_specifiers_repeat1] = STATE(757), - [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_RPAREN] = ACTIONS(2589), + [sym_comment] = ACTIONS(39), + }, + [758] = { + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_RPAREN] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_LPAREN2] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_EQ] = ACTIONS(2591), + [sym_comment] = ACTIONS(39), + }, + [759] = { + [sym_storage_class_specifier] = STATE(759), + [sym_type_qualifier] = STATE(759), + [aux_sym__declaration_specifiers_repeat1] = STATE(759), [anon_sym_extern] = ACTIONS(303), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_RBRACK] = ACTIONS(644), + [anon_sym_LPAREN2] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_RBRACK] = ACTIONS(646), [anon_sym_static] = ACTIONS(303), [anon_sym_auto] = ACTIONS(303), [anon_sym_register] = ACTIONS(303), @@ -28970,525 +29242,525 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(306), [anon_sym_volatile] = ACTIONS(306), [anon_sym__Atomic] = ACTIONS(306), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(644), + [anon_sym_AMP] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_TILDE] = ACTIONS(646), [anon_sym_PLUS] = ACTIONS(309), [anon_sym_DASH] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(644), - [anon_sym_PLUS_PLUS] = ACTIONS(644), + [anon_sym_DASH_DASH] = ACTIONS(646), + [anon_sym_PLUS_PLUS] = ACTIONS(646), [anon_sym_sizeof] = ACTIONS(309), - [sym_number_literal] = ACTIONS(644), - [anon_sym_SQUOTE] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(644), + [sym_number_literal] = ACTIONS(646), + [anon_sym_SQUOTE] = ACTIONS(646), + [anon_sym_DQUOTE] = ACTIONS(646), [sym_true] = ACTIONS(309), [sym_false] = ACTIONS(309), [sym_null] = ACTIONS(309), [sym_identifier] = ACTIONS(309), [sym_comment] = ACTIONS(39), }, - [758] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2598), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(2598), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [759] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(2637), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, [760] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2602), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2540), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(2540), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [761] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2606), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2606), - [anon_sym_STAR_EQ] = ACTIONS(2606), - [anon_sym_SLASH_EQ] = ACTIONS(2606), - [anon_sym_PERCENT_EQ] = ACTIONS(2606), - [anon_sym_PLUS_EQ] = ACTIONS(2606), - [anon_sym_DASH_EQ] = ACTIONS(2606), - [anon_sym_LT_LT_EQ] = ACTIONS(2606), - [anon_sym_GT_GT_EQ] = ACTIONS(2606), - [anon_sym_AMP_EQ] = ACTIONS(2606), - [anon_sym_CARET_EQ] = ACTIONS(2606), - [anon_sym_PIPE_EQ] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(2593), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [762] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2606), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2606), - [anon_sym_STAR_EQ] = ACTIONS(2606), - [anon_sym_SLASH_EQ] = ACTIONS(2606), - [anon_sym_PERCENT_EQ] = ACTIONS(2606), - [anon_sym_PLUS_EQ] = ACTIONS(2606), - [anon_sym_DASH_EQ] = ACTIONS(2606), - [anon_sym_LT_LT_EQ] = ACTIONS(2606), - [anon_sym_GT_GT_EQ] = ACTIONS(2606), - [anon_sym_AMP_EQ] = ACTIONS(2606), - [anon_sym_CARET_EQ] = ACTIONS(2606), - [anon_sym_PIPE_EQ] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2544), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [763] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2602), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2548), + [anon_sym_EQ] = ACTIONS(2550), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_STAR_EQ] = ACTIONS(2548), + [anon_sym_SLASH_EQ] = ACTIONS(2548), + [anon_sym_PERCENT_EQ] = ACTIONS(2548), + [anon_sym_PLUS_EQ] = ACTIONS(2548), + [anon_sym_DASH_EQ] = ACTIONS(2548), + [anon_sym_LT_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_GT_EQ] = ACTIONS(2548), + [anon_sym_AMP_EQ] = ACTIONS(2548), + [anon_sym_CARET_EQ] = ACTIONS(2548), + [anon_sym_PIPE_EQ] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(2548), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [764] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2602), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2548), + [anon_sym_EQ] = ACTIONS(2550), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_STAR_EQ] = ACTIONS(2548), + [anon_sym_SLASH_EQ] = ACTIONS(2548), + [anon_sym_PERCENT_EQ] = ACTIONS(2548), + [anon_sym_PLUS_EQ] = ACTIONS(2548), + [anon_sym_DASH_EQ] = ACTIONS(2548), + [anon_sym_LT_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_GT_EQ] = ACTIONS(2548), + [anon_sym_AMP_EQ] = ACTIONS(2548), + [anon_sym_CARET_EQ] = ACTIONS(2548), + [anon_sym_PIPE_EQ] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(2548), + [anon_sym_AMP_AMP] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [765] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2610), - [anon_sym_EQ] = ACTIONS(2612), - [anon_sym_QMARK] = ACTIONS(2610), - [anon_sym_STAR_EQ] = ACTIONS(2610), - [anon_sym_SLASH_EQ] = ACTIONS(2610), - [anon_sym_PERCENT_EQ] = ACTIONS(2610), - [anon_sym_PLUS_EQ] = ACTIONS(2610), - [anon_sym_DASH_EQ] = ACTIONS(2610), - [anon_sym_LT_LT_EQ] = ACTIONS(2610), - [anon_sym_GT_GT_EQ] = ACTIONS(2610), - [anon_sym_AMP_EQ] = ACTIONS(2610), - [anon_sym_CARET_EQ] = ACTIONS(2610), - [anon_sym_PIPE_EQ] = ACTIONS(2610), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE_PIPE] = ACTIONS(2610), - [anon_sym_AMP_AMP] = ACTIONS(2610), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_CARET] = ACTIONS(2612), - [anon_sym_EQ_EQ] = ACTIONS(2610), - [anon_sym_BANG_EQ] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2544), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [766] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2614), - [anon_sym_EQ] = ACTIONS(2616), - [anon_sym_QMARK] = ACTIONS(2614), - [anon_sym_STAR_EQ] = ACTIONS(2614), - [anon_sym_SLASH_EQ] = ACTIONS(2614), - [anon_sym_PERCENT_EQ] = ACTIONS(2614), - [anon_sym_PLUS_EQ] = ACTIONS(2614), - [anon_sym_DASH_EQ] = ACTIONS(2614), - [anon_sym_LT_LT_EQ] = ACTIONS(2614), - [anon_sym_GT_GT_EQ] = ACTIONS(2614), - [anon_sym_AMP_EQ] = ACTIONS(2614), - [anon_sym_CARET_EQ] = ACTIONS(2614), - [anon_sym_PIPE_EQ] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_CARET] = ACTIONS(2616), - [anon_sym_EQ_EQ] = ACTIONS(2614), - [anon_sym_BANG_EQ] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_GT] = ACTIONS(2616), - [anon_sym_LT_EQ] = ACTIONS(2614), - [anon_sym_GT_EQ] = ACTIONS(2614), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2544), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [767] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2618), - [anon_sym_EQ] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2618), - [anon_sym_STAR_EQ] = ACTIONS(2618), - [anon_sym_SLASH_EQ] = ACTIONS(2618), - [anon_sym_PERCENT_EQ] = ACTIONS(2618), - [anon_sym_PLUS_EQ] = ACTIONS(2618), - [anon_sym_DASH_EQ] = ACTIONS(2618), - [anon_sym_LT_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_GT_EQ] = ACTIONS(2618), - [anon_sym_AMP_EQ] = ACTIONS(2618), - [anon_sym_CARET_EQ] = ACTIONS(2618), - [anon_sym_PIPE_EQ] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_EQ_EQ] = ACTIONS(2618), - [anon_sym_BANG_EQ] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_LT_LT] = ACTIONS(2620), - [anon_sym_GT_GT] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2552), + [anon_sym_EQ] = ACTIONS(2554), + [anon_sym_QMARK] = ACTIONS(2552), + [anon_sym_STAR_EQ] = ACTIONS(2552), + [anon_sym_SLASH_EQ] = ACTIONS(2552), + [anon_sym_PERCENT_EQ] = ACTIONS(2552), + [anon_sym_PLUS_EQ] = ACTIONS(2552), + [anon_sym_DASH_EQ] = ACTIONS(2552), + [anon_sym_LT_LT_EQ] = ACTIONS(2552), + [anon_sym_GT_GT_EQ] = ACTIONS(2552), + [anon_sym_AMP_EQ] = ACTIONS(2552), + [anon_sym_CARET_EQ] = ACTIONS(2552), + [anon_sym_PIPE_EQ] = ACTIONS(2552), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_PIPE_PIPE] = ACTIONS(2552), + [anon_sym_AMP_AMP] = ACTIONS(2552), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_EQ_EQ] = ACTIONS(2552), + [anon_sym_BANG_EQ] = ACTIONS(2552), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [768] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2592), - [anon_sym_EQ] = ACTIONS(2594), - [anon_sym_QMARK] = ACTIONS(2592), - [anon_sym_STAR_EQ] = ACTIONS(2592), - [anon_sym_SLASH_EQ] = ACTIONS(2592), - [anon_sym_PERCENT_EQ] = ACTIONS(2592), - [anon_sym_PLUS_EQ] = ACTIONS(2592), - [anon_sym_DASH_EQ] = ACTIONS(2592), - [anon_sym_LT_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_GT_EQ] = ACTIONS(2592), - [anon_sym_AMP_EQ] = ACTIONS(2592), - [anon_sym_CARET_EQ] = ACTIONS(2592), - [anon_sym_PIPE_EQ] = ACTIONS(2592), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2592), - [anon_sym_AMP_AMP] = ACTIONS(2592), - [anon_sym_PIPE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_EQ_EQ] = ACTIONS(2592), - [anon_sym_BANG_EQ] = ACTIONS(2592), - [anon_sym_LT] = ACTIONS(2594), - [anon_sym_GT] = ACTIONS(2594), - [anon_sym_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_EQ] = ACTIONS(2592), - [anon_sym_LT_LT] = ACTIONS(2594), - [anon_sym_GT_GT] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2556), + [anon_sym_EQ] = ACTIONS(2558), + [anon_sym_QMARK] = ACTIONS(2556), + [anon_sym_STAR_EQ] = ACTIONS(2556), + [anon_sym_SLASH_EQ] = ACTIONS(2556), + [anon_sym_PERCENT_EQ] = ACTIONS(2556), + [anon_sym_PLUS_EQ] = ACTIONS(2556), + [anon_sym_DASH_EQ] = ACTIONS(2556), + [anon_sym_LT_LT_EQ] = ACTIONS(2556), + [anon_sym_GT_GT_EQ] = ACTIONS(2556), + [anon_sym_AMP_EQ] = ACTIONS(2556), + [anon_sym_CARET_EQ] = ACTIONS(2556), + [anon_sym_PIPE_EQ] = ACTIONS(2556), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2556), + [anon_sym_AMP_AMP] = ACTIONS(2556), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2556), + [anon_sym_BANG_EQ] = ACTIONS(2556), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_LT_EQ] = ACTIONS(2556), + [anon_sym_GT_EQ] = ACTIONS(2556), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [769] = { - [sym_string_literal] = STATE(769), - [aux_sym_concatenated_string_repeat1] = STATE(769), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_RBRACK] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_STAR_EQ] = ACTIONS(2626), - [anon_sym_SLASH_EQ] = ACTIONS(2626), - [anon_sym_PERCENT_EQ] = ACTIONS(2626), - [anon_sym_PLUS_EQ] = ACTIONS(2626), - [anon_sym_DASH_EQ] = ACTIONS(2626), - [anon_sym_LT_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_GT_EQ] = ACTIONS(2626), - [anon_sym_AMP_EQ] = ACTIONS(2626), - [anon_sym_CARET_EQ] = ACTIONS(2626), - [anon_sym_PIPE_EQ] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2628), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_EQ_EQ] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2626), - [anon_sym_LT_LT] = ACTIONS(2628), - [anon_sym_GT_GT] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_SLASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_DASH_DASH] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2630), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2560), + [anon_sym_EQ] = ACTIONS(2562), + [anon_sym_QMARK] = ACTIONS(2560), + [anon_sym_STAR_EQ] = ACTIONS(2560), + [anon_sym_SLASH_EQ] = ACTIONS(2560), + [anon_sym_PERCENT_EQ] = ACTIONS(2560), + [anon_sym_PLUS_EQ] = ACTIONS(2560), + [anon_sym_DASH_EQ] = ACTIONS(2560), + [anon_sym_LT_LT_EQ] = ACTIONS(2560), + [anon_sym_GT_GT_EQ] = ACTIONS(2560), + [anon_sym_AMP_EQ] = ACTIONS(2560), + [anon_sym_CARET_EQ] = ACTIONS(2560), + [anon_sym_PIPE_EQ] = ACTIONS(2560), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2560), + [anon_sym_AMP_AMP] = ACTIONS(2560), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2560), + [anon_sym_BANG_EQ] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2562), + [anon_sym_LT_EQ] = ACTIONS(2560), + [anon_sym_GT_EQ] = ACTIONS(2560), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2562), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [770] = { - [sym_storage_class_specifier] = STATE(757), - [sym_type_qualifier] = STATE(757), - [aux_sym__declaration_specifiers_repeat1] = STATE(757), - [anon_sym_LPAREN] = ACTIONS(646), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2534), + [anon_sym_EQ] = ACTIONS(2536), + [anon_sym_QMARK] = ACTIONS(2534), + [anon_sym_STAR_EQ] = ACTIONS(2534), + [anon_sym_SLASH_EQ] = ACTIONS(2534), + [anon_sym_PERCENT_EQ] = ACTIONS(2534), + [anon_sym_PLUS_EQ] = ACTIONS(2534), + [anon_sym_DASH_EQ] = ACTIONS(2534), + [anon_sym_LT_LT_EQ] = ACTIONS(2534), + [anon_sym_GT_GT_EQ] = ACTIONS(2534), + [anon_sym_AMP_EQ] = ACTIONS(2534), + [anon_sym_CARET_EQ] = ACTIONS(2534), + [anon_sym_PIPE_EQ] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2536), + [anon_sym_EQ_EQ] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_GT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_LT_LT] = ACTIONS(2536), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [771] = { + [sym_string_literal] = STATE(771), + [aux_sym_concatenated_string_repeat1] = STATE(771), + [anon_sym_LPAREN2] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_RBRACK] = ACTIONS(2568), + [anon_sym_EQ] = ACTIONS(2570), + [anon_sym_QMARK] = ACTIONS(2568), + [anon_sym_STAR_EQ] = ACTIONS(2568), + [anon_sym_SLASH_EQ] = ACTIONS(2568), + [anon_sym_PERCENT_EQ] = ACTIONS(2568), + [anon_sym_PLUS_EQ] = ACTIONS(2568), + [anon_sym_DASH_EQ] = ACTIONS(2568), + [anon_sym_LT_LT_EQ] = ACTIONS(2568), + [anon_sym_GT_GT_EQ] = ACTIONS(2568), + [anon_sym_AMP_EQ] = ACTIONS(2568), + [anon_sym_CARET_EQ] = ACTIONS(2568), + [anon_sym_PIPE_EQ] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2568), + [anon_sym_AMP_AMP] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_LT_EQ] = ACTIONS(2568), + [anon_sym_GT_EQ] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2570), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2570), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2568), + [anon_sym_DOT] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2572), + [sym_comment] = ACTIONS(39), + }, + [772] = { + [sym_storage_class_specifier] = STATE(759), + [sym_type_qualifier] = STATE(759), + [aux_sym__declaration_specifiers_repeat1] = STATE(759), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_LPAREN2] = ACTIONS(648), + [anon_sym_STAR] = ACTIONS(648), + [anon_sym_RBRACK] = ACTIONS(648), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -29497,116 +29769,171 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(646), - [anon_sym_BANG] = ACTIONS(646), - [anon_sym_TILDE] = ACTIONS(646), - [anon_sym_PLUS] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(648), - [anon_sym_DASH_DASH] = ACTIONS(646), - [anon_sym_PLUS_PLUS] = ACTIONS(646), - [anon_sym_sizeof] = ACTIONS(648), - [sym_number_literal] = ACTIONS(646), - [anon_sym_SQUOTE] = ACTIONS(646), - [anon_sym_DQUOTE] = ACTIONS(646), - [sym_true] = ACTIONS(648), - [sym_false] = ACTIONS(648), - [sym_null] = ACTIONS(648), - [sym_identifier] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(648), + [anon_sym_TILDE] = ACTIONS(648), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_DASH_DASH] = ACTIONS(648), + [anon_sym_PLUS_PLUS] = ACTIONS(648), + [anon_sym_sizeof] = ACTIONS(650), + [sym_number_literal] = ACTIONS(648), + [anon_sym_SQUOTE] = ACTIONS(648), + [anon_sym_DQUOTE] = ACTIONS(648), + [sym_true] = ACTIONS(650), + [sym_false] = ACTIONS(650), + [sym_null] = ACTIONS(650), + [sym_identifier] = ACTIONS(650), [sym_comment] = ACTIONS(39), }, - [771] = { - [anon_sym_LPAREN] = ACTIONS(2639), - [anon_sym_COMMA] = ACTIONS(2639), - [anon_sym_RPAREN] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym_RBRACE] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_RBRACK] = ACTIONS(2639), - [anon_sym_EQ] = ACTIONS(2641), - [anon_sym_COLON] = ACTIONS(2639), - [anon_sym_QMARK] = ACTIONS(2639), - [anon_sym_STAR_EQ] = ACTIONS(2639), - [anon_sym_SLASH_EQ] = ACTIONS(2639), - [anon_sym_PERCENT_EQ] = ACTIONS(2639), - [anon_sym_PLUS_EQ] = ACTIONS(2639), - [anon_sym_DASH_EQ] = ACTIONS(2639), - [anon_sym_LT_LT_EQ] = ACTIONS(2639), - [anon_sym_GT_GT_EQ] = ACTIONS(2639), - [anon_sym_AMP_EQ] = ACTIONS(2639), - [anon_sym_CARET_EQ] = ACTIONS(2639), - [anon_sym_PIPE_EQ] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_PIPE_PIPE] = ACTIONS(2639), - [anon_sym_AMP_AMP] = ACTIONS(2639), - [anon_sym_PIPE] = ACTIONS(2641), - [anon_sym_CARET] = ACTIONS(2641), - [anon_sym_EQ_EQ] = ACTIONS(2639), - [anon_sym_BANG_EQ] = ACTIONS(2639), - [anon_sym_LT] = ACTIONS(2641), - [anon_sym_GT] = ACTIONS(2641), - [anon_sym_LT_EQ] = ACTIONS(2639), - [anon_sym_GT_EQ] = ACTIONS(2639), - [anon_sym_LT_LT] = ACTIONS(2641), - [anon_sym_GT_GT] = ACTIONS(2641), - [anon_sym_PLUS] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_SLASH] = ACTIONS(2641), - [anon_sym_PERCENT] = ACTIONS(2641), - [anon_sym_DASH_DASH] = ACTIONS(2639), - [anon_sym_PLUS_PLUS] = ACTIONS(2639), - [anon_sym_DOT] = ACTIONS(2639), - [anon_sym_DASH_GT] = ACTIONS(2639), + [773] = { + [anon_sym_COMMA] = ACTIONS(2595), + [anon_sym_RPAREN] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_RBRACE] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_RBRACK] = ACTIONS(2595), + [anon_sym_EQ] = ACTIONS(2597), + [anon_sym_COLON] = ACTIONS(2595), + [anon_sym_QMARK] = ACTIONS(2595), + [anon_sym_STAR_EQ] = ACTIONS(2595), + [anon_sym_SLASH_EQ] = ACTIONS(2595), + [anon_sym_PERCENT_EQ] = ACTIONS(2595), + [anon_sym_PLUS_EQ] = ACTIONS(2595), + [anon_sym_DASH_EQ] = ACTIONS(2595), + [anon_sym_LT_LT_EQ] = ACTIONS(2595), + [anon_sym_GT_GT_EQ] = ACTIONS(2595), + [anon_sym_AMP_EQ] = ACTIONS(2595), + [anon_sym_CARET_EQ] = ACTIONS(2595), + [anon_sym_PIPE_EQ] = ACTIONS(2595), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_PIPE_PIPE] = ACTIONS(2595), + [anon_sym_AMP_AMP] = ACTIONS(2595), + [anon_sym_PIPE] = ACTIONS(2597), + [anon_sym_CARET] = ACTIONS(2597), + [anon_sym_EQ_EQ] = ACTIONS(2595), + [anon_sym_BANG_EQ] = ACTIONS(2595), + [anon_sym_LT] = ACTIONS(2597), + [anon_sym_GT] = ACTIONS(2597), + [anon_sym_LT_EQ] = ACTIONS(2595), + [anon_sym_GT_EQ] = ACTIONS(2595), + [anon_sym_LT_LT] = ACTIONS(2597), + [anon_sym_GT_GT] = ACTIONS(2597), + [anon_sym_PLUS] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2597), + [anon_sym_SLASH] = ACTIONS(2597), + [anon_sym_PERCENT] = ACTIONS(2597), + [anon_sym_DASH_DASH] = ACTIONS(2595), + [anon_sym_PLUS_PLUS] = ACTIONS(2595), + [anon_sym_DOT] = ACTIONS(2595), + [anon_sym_DASH_GT] = ACTIONS(2595), [sym_comment] = ACTIONS(39), }, - [772] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2643), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [774] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2599), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [773] = { - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_EQ] = ACTIONS(2645), - [anon_sym_DOT] = ACTIONS(2645), + [775] = { + [anon_sym_LBRACK] = ACTIONS(2601), + [anon_sym_EQ] = ACTIONS(2601), + [anon_sym_DOT] = ACTIONS(2601), [sym_comment] = ACTIONS(39), }, - [774] = { + [776] = { + [sym__expression] = STATE(977), + [sym_conditional_expression] = STATE(977), + [sym_assignment_expression] = STATE(977), + [sym_pointer_expression] = STATE(977), + [sym_logical_expression] = STATE(977), + [sym_bitwise_expression] = STATE(977), + [sym_equality_expression] = STATE(977), + [sym_relational_expression] = STATE(977), + [sym_shift_expression] = STATE(977), + [sym_math_expression] = STATE(977), + [sym_cast_expression] = STATE(977), + [sym_sizeof_expression] = STATE(977), + [sym_subscript_expression] = STATE(977), + [sym_call_expression] = STATE(977), + [sym_field_expression] = STATE(977), + [sym_compound_literal_expression] = STATE(977), + [sym_parenthesized_expression] = STATE(977), + [sym_initializer_list] = STATE(978), + [sym_initializer_pair] = STATE(978), + [sym_subscript_designator] = STATE(506), + [sym_field_designator] = STATE(506), + [sym_char_literal] = STATE(977), + [sym_concatenated_string] = STATE(977), + [sym_string_literal] = STATE(346), + [aux_sym_initializer_pair_repeat1] = STATE(506), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_sizeof] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(1204), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_null] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2607), + [sym_comment] = ACTIONS(39), + }, + [777] = { + [aux_sym_initializer_list_repeat1] = STATE(980), + [anon_sym_COMMA] = ACTIONS(2609), + [anon_sym_RBRACE] = ACTIONS(2603), + [sym_comment] = ACTIONS(39), + }, + [778] = { [sym__expression] = STATE(981), [sym_conditional_expression] = STATE(981), [sym_assignment_expression] = STATE(981), @@ -29625,18 +29952,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(981), [sym_parenthesized_expression] = STATE(981), [sym_initializer_list] = STATE(982), - [sym_initializer_pair] = STATE(982), - [sym_subscript_designator] = STATE(506), - [sym_field_designator] = STATE(506), [sym_char_literal] = STATE(981), [sym_concatenated_string] = STATE(981), - [sym_string_literal] = STATE(348), - [aux_sym_initializer_pair_repeat1] = STATE(506), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_RBRACE] = ACTIONS(2647), + [sym_string_literal] = STATE(346), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(1204), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), [anon_sym_TILDE] = ACTIONS(813), @@ -29645,192 +29966,144 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [anon_sym_DOT] = ACTIONS(1206), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2611), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2651), - [sym_false] = ACTIONS(2651), - [sym_null] = ACTIONS(2651), - [sym_identifier] = ACTIONS(2651), + [sym_true] = ACTIONS(2613), + [sym_false] = ACTIONS(2613), + [sym_null] = ACTIONS(2613), + [sym_identifier] = ACTIONS(2613), [sym_comment] = ACTIONS(39), }, - [775] = { - [aux_sym_initializer_list_repeat1] = STATE(984), - [anon_sym_COMMA] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2647), + [779] = { + [sym_subscript_designator] = STATE(779), + [sym_field_designator] = STATE(779), + [aux_sym_initializer_pair_repeat1] = STATE(779), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2618), + [anon_sym_DOT] = ACTIONS(2620), [sym_comment] = ACTIONS(39), }, - [776] = { - [sym__expression] = STATE(985), - [sym_conditional_expression] = STATE(985), - [sym_assignment_expression] = STATE(985), - [sym_pointer_expression] = STATE(985), - [sym_logical_expression] = STATE(985), - [sym_bitwise_expression] = STATE(985), - [sym_equality_expression] = STATE(985), - [sym_relational_expression] = STATE(985), - [sym_shift_expression] = STATE(985), - [sym_math_expression] = STATE(985), - [sym_cast_expression] = STATE(985), - [sym_sizeof_expression] = STATE(985), - [sym_subscript_expression] = STATE(985), - [sym_call_expression] = STATE(985), - [sym_field_expression] = STATE(985), - [sym_compound_literal_expression] = STATE(985), - [sym_parenthesized_expression] = STATE(985), - [sym_initializer_list] = STATE(986), - [sym_char_literal] = STATE(985), - [sym_concatenated_string] = STATE(985), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2655), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2657), - [sym_false] = ACTIONS(2657), - [sym_null] = ACTIONS(2657), - [sym_identifier] = ACTIONS(2657), - [sym_comment] = ACTIONS(39), - }, - [777] = { - [sym_subscript_designator] = STATE(777), - [sym_field_designator] = STATE(777), - [aux_sym_initializer_pair_repeat1] = STATE(777), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_EQ] = ACTIONS(2662), - [anon_sym_DOT] = ACTIONS(2664), + [780] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1227), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1227), + [sym_false] = ACTIONS(1227), + [sym_null] = ACTIONS(1227), + [sym_identifier] = ACTIONS(1227), [sym_comment] = ACTIONS(39), }, - [778] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1221), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1223), - [sym_preproc_directive] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym_typedef] = ACTIONS(1223), - [anon_sym_extern] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_auto] = ACTIONS(1223), - [anon_sym_register] = ACTIONS(1223), - [anon_sym_inline] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(1223), - [anon_sym_restrict] = ACTIONS(1223), - [anon_sym_volatile] = ACTIONS(1223), - [anon_sym__Atomic] = ACTIONS(1223), - [anon_sym_unsigned] = ACTIONS(1223), - [anon_sym_long] = ACTIONS(1223), - [anon_sym_short] = ACTIONS(1223), - [sym_primitive_type] = ACTIONS(1223), - [anon_sym_enum] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_union] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_case] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_goto] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1221), - [anon_sym_sizeof] = ACTIONS(1223), - [sym_number_literal] = ACTIONS(1221), - [anon_sym_SQUOTE] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [sym_null] = ACTIONS(1223), - [sym_identifier] = ACTIONS(1223), + [781] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1313), + [sym_preproc_directive] = ACTIONS(1313), + [anon_sym_typedef] = ACTIONS(1313), + [anon_sym_extern] = ACTIONS(1313), + [anon_sym_static] = ACTIONS(1313), + [anon_sym_auto] = ACTIONS(1313), + [anon_sym_register] = ACTIONS(1313), + [anon_sym_inline] = ACTIONS(1313), + [anon_sym_const] = ACTIONS(1313), + [anon_sym_restrict] = ACTIONS(1313), + [anon_sym_volatile] = ACTIONS(1313), + [anon_sym__Atomic] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(1313), + [anon_sym_long] = ACTIONS(1313), + [anon_sym_short] = ACTIONS(1313), + [sym_primitive_type] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1313), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_union] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1313), [sym_comment] = ACTIONS(39), }, - [779] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(1231), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1233), - [sym_preproc_directive] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_typedef] = ACTIONS(1233), - [anon_sym_extern] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_auto] = ACTIONS(1233), - [anon_sym_register] = ACTIONS(1233), - [anon_sym_inline] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_restrict] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym__Atomic] = ACTIONS(1233), - [anon_sym_unsigned] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [sym_primitive_type] = ACTIONS(1233), - [anon_sym_enum] = ACTIONS(1233), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_union] = ACTIONS(1233), - [anon_sym_if] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1233), - [anon_sym_case] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1233), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_return] = ACTIONS(1233), - [anon_sym_break] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(1233), - [anon_sym_goto] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1233), - [sym_number_literal] = ACTIONS(1231), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [sym_true] = ACTIONS(1233), - [sym_false] = ACTIONS(1233), - [sym_null] = ACTIONS(1233), - [sym_identifier] = ACTIONS(1233), + [782] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1317), + [sym_preproc_directive] = ACTIONS(1317), + [anon_sym_typedef] = ACTIONS(1317), + [anon_sym_extern] = ACTIONS(1317), + [anon_sym_static] = ACTIONS(1317), + [anon_sym_auto] = ACTIONS(1317), + [anon_sym_register] = ACTIONS(1317), + [anon_sym_inline] = ACTIONS(1317), + [anon_sym_const] = ACTIONS(1317), + [anon_sym_restrict] = ACTIONS(1317), + [anon_sym_volatile] = ACTIONS(1317), + [anon_sym__Atomic] = ACTIONS(1317), + [anon_sym_unsigned] = ACTIONS(1317), + [anon_sym_long] = ACTIONS(1317), + [anon_sym_short] = ACTIONS(1317), + [sym_primitive_type] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1317), + [anon_sym_struct] = ACTIONS(1317), + [anon_sym_union] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1317), [sym_comment] = ACTIONS(39), }, - [780] = { + [783] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1321), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1321), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1321), @@ -29860,131 +30133,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(1321), [sym_comment] = ACTIONS(39), }, - [781] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1325), - [sym_preproc_directive] = ACTIONS(1325), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [sym_identifier] = ACTIONS(1325), - [sym_comment] = ACTIONS(39), - }, - [782] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1329), - [sym_preproc_directive] = ACTIONS(1329), - [anon_sym_typedef] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_auto] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_inline] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_restrict] = ACTIONS(1329), - [anon_sym_volatile] = ACTIONS(1329), - [anon_sym__Atomic] = ACTIONS(1329), - [anon_sym_unsigned] = ACTIONS(1329), - [anon_sym_long] = ACTIONS(1329), - [anon_sym_short] = ACTIONS(1329), - [sym_primitive_type] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [sym_identifier] = ACTIONS(1329), - [sym_comment] = ACTIONS(39), - }, - [783] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(650), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(652), - [sym_preproc_directive] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_typedef] = ACTIONS(652), - [anon_sym_extern] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_static] = ACTIONS(652), - [anon_sym_auto] = ACTIONS(652), - [anon_sym_register] = ACTIONS(652), - [anon_sym_inline] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_restrict] = ACTIONS(652), - [anon_sym_volatile] = ACTIONS(652), - [anon_sym__Atomic] = ACTIONS(652), - [anon_sym_unsigned] = ACTIONS(652), - [anon_sym_long] = ACTIONS(652), - [anon_sym_short] = ACTIONS(652), - [sym_primitive_type] = ACTIONS(652), - [anon_sym_enum] = ACTIONS(652), - [anon_sym_struct] = ACTIONS(652), - [anon_sym_union] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_switch] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_do] = ACTIONS(652), - [anon_sym_for] = ACTIONS(652), - [anon_sym_return] = ACTIONS(652), - [anon_sym_break] = ACTIONS(652), - [anon_sym_continue] = ACTIONS(652), - [anon_sym_goto] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_sizeof] = ACTIONS(652), - [sym_number_literal] = ACTIONS(650), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_DQUOTE] = ACTIONS(650), - [sym_true] = ACTIONS(652), - [sym_false] = ACTIONS(652), - [sym_null] = ACTIONS(652), - [sym_identifier] = ACTIONS(652), - [sym_comment] = ACTIONS(39), - }, [784] = { - [anon_sym_LF] = ACTIONS(2667), - [sym_comment] = ACTIONS(49), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(654), + [sym_preproc_directive] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_typedef] = ACTIONS(654), + [anon_sym_extern] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_static] = ACTIONS(654), + [anon_sym_auto] = ACTIONS(654), + [anon_sym_register] = ACTIONS(654), + [anon_sym_inline] = ACTIONS(654), + [anon_sym_const] = ACTIONS(654), + [anon_sym_restrict] = ACTIONS(654), + [anon_sym_volatile] = ACTIONS(654), + [anon_sym__Atomic] = ACTIONS(654), + [anon_sym_unsigned] = ACTIONS(654), + [anon_sym_long] = ACTIONS(654), + [anon_sym_short] = ACTIONS(654), + [sym_primitive_type] = ACTIONS(654), + [anon_sym_enum] = ACTIONS(654), + [anon_sym_struct] = ACTIONS(654), + [anon_sym_union] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_break] = ACTIONS(654), + [anon_sym_continue] = ACTIONS(654), + [anon_sym_goto] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(652), + [anon_sym_sizeof] = ACTIONS(654), + [sym_number_literal] = ACTIONS(652), + [anon_sym_SQUOTE] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(652), + [sym_true] = ACTIONS(654), + [sym_false] = ACTIONS(654), + [sym_null] = ACTIONS(654), + [sym_identifier] = ACTIONS(654), + [sym_comment] = ACTIONS(39), }, [785] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(672), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(670), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(672), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(672), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(672), @@ -29994,6 +30202,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(672), [anon_sym_extern] = ACTIONS(672), [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_LPAREN2] = ACTIONS(670), [anon_sym_STAR] = ACTIONS(670), [anon_sym_static] = ACTIONS(672), [anon_sym_auto] = ACTIONS(672), @@ -30039,166 +30248,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [786] = { - [anon_sym_LF] = ACTIONS(2669), - [sym_comment] = ACTIONS(49), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(676), + [sym_preproc_directive] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(674), + [anon_sym_typedef] = ACTIONS(676), + [anon_sym_extern] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(674), + [anon_sym_LPAREN2] = ACTIONS(674), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_static] = ACTIONS(676), + [anon_sym_auto] = ACTIONS(676), + [anon_sym_register] = ACTIONS(676), + [anon_sym_inline] = ACTIONS(676), + [anon_sym_const] = ACTIONS(676), + [anon_sym_restrict] = ACTIONS(676), + [anon_sym_volatile] = ACTIONS(676), + [anon_sym__Atomic] = ACTIONS(676), + [anon_sym_unsigned] = ACTIONS(676), + [anon_sym_long] = ACTIONS(676), + [anon_sym_short] = ACTIONS(676), + [sym_primitive_type] = ACTIONS(676), + [anon_sym_enum] = ACTIONS(676), + [anon_sym_struct] = ACTIONS(676), + [anon_sym_union] = ACTIONS(676), + [anon_sym_if] = ACTIONS(676), + [anon_sym_switch] = ACTIONS(676), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(676), + [anon_sym_while] = ACTIONS(676), + [anon_sym_do] = ACTIONS(676), + [anon_sym_for] = ACTIONS(676), + [anon_sym_return] = ACTIONS(676), + [anon_sym_break] = ACTIONS(676), + [anon_sym_continue] = ACTIONS(676), + [anon_sym_goto] = ACTIONS(676), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(674), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_DQUOTE] = ACTIONS(674), + [sym_true] = ACTIONS(676), + [sym_false] = ACTIONS(676), + [sym_null] = ACTIONS(676), + [sym_identifier] = ACTIONS(676), + [sym_comment] = ACTIONS(39), }, [787] = { - [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_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), - [sym_identifier] = ACTIONS(726), - [sym_comment] = ACTIONS(39), + [anon_sym_LF] = ACTIONS(2623), + [sym_comment] = ACTIONS(49), }, [788] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(730), + [sym_preproc_directive] = ACTIONS(730), + [anon_sym_typedef] = ACTIONS(730), + [anon_sym_extern] = ACTIONS(730), + [anon_sym_static] = ACTIONS(730), + [anon_sym_auto] = ACTIONS(730), + [anon_sym_register] = ACTIONS(730), + [anon_sym_inline] = ACTIONS(730), + [anon_sym_const] = ACTIONS(730), + [anon_sym_restrict] = ACTIONS(730), + [anon_sym_volatile] = ACTIONS(730), + [anon_sym__Atomic] = ACTIONS(730), + [anon_sym_unsigned] = ACTIONS(730), + [anon_sym_long] = ACTIONS(730), + [anon_sym_short] = ACTIONS(730), + [sym_primitive_type] = ACTIONS(730), + [anon_sym_enum] = ACTIONS(730), + [anon_sym_struct] = ACTIONS(730), + [anon_sym_union] = ACTIONS(730), + [sym_identifier] = ACTIONS(730), [sym_comment] = ACTIONS(39), }, [789] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(762), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(762), - [sym_preproc_directive] = ACTIONS(762), - [anon_sym_typedef] = ACTIONS(762), - [anon_sym_extern] = ACTIONS(762), - [anon_sym_static] = ACTIONS(762), - [anon_sym_auto] = ACTIONS(762), - [anon_sym_register] = ACTIONS(762), - [anon_sym_inline] = ACTIONS(762), - [anon_sym_const] = ACTIONS(762), - [anon_sym_restrict] = ACTIONS(762), - [anon_sym_volatile] = ACTIONS(762), - [anon_sym__Atomic] = ACTIONS(762), - [anon_sym_unsigned] = ACTIONS(762), - [anon_sym_long] = ACTIONS(762), - [anon_sym_short] = ACTIONS(762), - [sym_primitive_type] = ACTIONS(762), - [anon_sym_enum] = ACTIONS(762), - [anon_sym_struct] = ACTIONS(762), - [anon_sym_union] = ACTIONS(762), - [sym_identifier] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2625), [sym_comment] = ACTIONS(39), }, [790] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2673), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(766), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(766), + [sym_preproc_directive] = ACTIONS(766), + [anon_sym_typedef] = ACTIONS(766), + [anon_sym_extern] = ACTIONS(766), + [anon_sym_static] = ACTIONS(766), + [anon_sym_auto] = ACTIONS(766), + [anon_sym_register] = ACTIONS(766), + [anon_sym_inline] = ACTIONS(766), + [anon_sym_const] = ACTIONS(766), + [anon_sym_restrict] = ACTIONS(766), + [anon_sym_volatile] = ACTIONS(766), + [anon_sym__Atomic] = ACTIONS(766), + [anon_sym_unsigned] = ACTIONS(766), + [anon_sym_long] = ACTIONS(766), + [anon_sym_short] = ACTIONS(766), + [sym_primitive_type] = ACTIONS(766), + [anon_sym_enum] = ACTIONS(766), + [anon_sym_struct] = ACTIONS(766), + [anon_sym_union] = ACTIONS(766), + [sym_identifier] = ACTIONS(766), [sym_comment] = ACTIONS(39), }, [791] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(768), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(768), - [sym_preproc_directive] = ACTIONS(768), - [anon_sym_typedef] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(768), - [anon_sym_static] = ACTIONS(768), - [anon_sym_auto] = ACTIONS(768), - [anon_sym_register] = ACTIONS(768), - [anon_sym_inline] = ACTIONS(768), - [anon_sym_const] = ACTIONS(768), - [anon_sym_restrict] = ACTIONS(768), - [anon_sym_volatile] = ACTIONS(768), - [anon_sym__Atomic] = ACTIONS(768), - [anon_sym_unsigned] = ACTIONS(768), - [anon_sym_long] = ACTIONS(768), - [anon_sym_short] = ACTIONS(768), - [sym_primitive_type] = ACTIONS(768), - [anon_sym_enum] = ACTIONS(768), - [anon_sym_struct] = ACTIONS(768), - [anon_sym_union] = ACTIONS(768), - [sym_identifier] = ACTIONS(768), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2627), [sym_comment] = ACTIONS(39), }, [792] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2675), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(772), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(772), + [sym_preproc_directive] = ACTIONS(772), + [anon_sym_typedef] = ACTIONS(772), + [anon_sym_extern] = ACTIONS(772), + [anon_sym_static] = ACTIONS(772), + [anon_sym_auto] = ACTIONS(772), + [anon_sym_register] = ACTIONS(772), + [anon_sym_inline] = ACTIONS(772), + [anon_sym_const] = ACTIONS(772), + [anon_sym_restrict] = ACTIONS(772), + [anon_sym_volatile] = ACTIONS(772), + [anon_sym__Atomic] = ACTIONS(772), + [anon_sym_unsigned] = ACTIONS(772), + [anon_sym_long] = ACTIONS(772), + [anon_sym_short] = ACTIONS(772), + [sym_primitive_type] = ACTIONS(772), + [anon_sym_enum] = ACTIONS(772), + [anon_sym_struct] = ACTIONS(772), + [anon_sym_union] = ACTIONS(772), + [sym_identifier] = ACTIONS(772), [sym_comment] = ACTIONS(39), }, [793] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(774), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(774), - [anon_sym_LPAREN] = ACTIONS(772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(774), - [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), - [sym_preproc_directive] = ACTIONS(774), - [anon_sym_SEMI] = ACTIONS(772), - [anon_sym_typedef] = ACTIONS(774), - [anon_sym_extern] = ACTIONS(774), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_static] = ACTIONS(774), - [anon_sym_auto] = ACTIONS(774), - [anon_sym_register] = ACTIONS(774), - [anon_sym_inline] = ACTIONS(774), - [anon_sym_const] = ACTIONS(774), - [anon_sym_restrict] = ACTIONS(774), - [anon_sym_volatile] = ACTIONS(774), - [anon_sym__Atomic] = ACTIONS(774), - [anon_sym_unsigned] = ACTIONS(774), - [anon_sym_long] = ACTIONS(774), - [anon_sym_short] = ACTIONS(774), - [sym_primitive_type] = ACTIONS(774), - [anon_sym_enum] = ACTIONS(774), - [anon_sym_struct] = ACTIONS(774), - [anon_sym_union] = ACTIONS(774), - [anon_sym_if] = ACTIONS(774), - [anon_sym_switch] = ACTIONS(774), - [anon_sym_case] = ACTIONS(774), - [anon_sym_default] = ACTIONS(774), - [anon_sym_while] = ACTIONS(774), - [anon_sym_do] = ACTIONS(774), - [anon_sym_for] = ACTIONS(774), - [anon_sym_return] = ACTIONS(774), - [anon_sym_break] = ACTIONS(774), - [anon_sym_continue] = ACTIONS(774), - [anon_sym_goto] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(772), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_PLUS] = ACTIONS(774), - [anon_sym_DASH] = ACTIONS(774), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_sizeof] = ACTIONS(774), - [sym_number_literal] = ACTIONS(772), - [anon_sym_SQUOTE] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(772), - [sym_true] = ACTIONS(774), - [sym_false] = ACTIONS(774), - [sym_null] = ACTIONS(774), - [sym_identifier] = ACTIONS(774), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2629), [sym_comment] = ACTIONS(39), }, [794] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(782), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(780), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(782), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(782), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(782), @@ -30208,6 +30416,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(782), [anon_sym_extern] = ACTIONS(782), [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_LPAREN2] = ACTIONS(780), [anon_sym_STAR] = ACTIONS(780), [anon_sym_static] = ACTIONS(782), [anon_sym_auto] = ACTIONS(782), @@ -30254,10 +30463,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [795] = { - [sym_parameter_list] = STATE(181), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(426), + [sym_parameter_list] = STATE(180), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(243), + [anon_sym_LBRACK] = ACTIONS(428), [sym_comment] = ACTIONS(39), }, [796] = { @@ -30289,17 +30498,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [797] = { - [sym_preproc_include] = STATE(338), - [sym_preproc_def] = STATE(338), - [sym_preproc_function_def] = STATE(338), - [sym_preproc_call] = STATE(338), - [sym_preproc_if] = STATE(338), - [sym_preproc_ifdef] = STATE(338), - [sym_function_definition] = STATE(338), - [sym_declaration] = STATE(338), - [sym_type_definition] = STATE(338), + [sym_preproc_include] = STATE(336), + [sym_preproc_def] = STATE(336), + [sym_preproc_function_def] = STATE(336), + [sym_preproc_call] = STATE(336), + [sym_preproc_if] = STATE(336), + [sym_preproc_ifdef] = STATE(336), + [sym_function_definition] = STATE(336), + [sym_declaration] = STATE(336), + [sym_type_definition] = STATE(336), [sym__declaration_specifiers] = STATE(17), - [sym_linkage_specification] = STATE(338), + [sym_linkage_specification] = STATE(336), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -30307,9 +30516,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(338), + [sym__empty_declaration] = STATE(336), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(338), + [aux_sym_translation_unit_repeat1] = STATE(336), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), @@ -30320,7 +30529,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2633), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -30340,74 +30549,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [798] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1006), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1004), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1006), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1006), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1006), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1006), - [sym_preproc_directive] = ACTIONS(1006), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_typedef] = ACTIONS(1006), - [anon_sym_extern] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_static] = ACTIONS(1006), - [anon_sym_auto] = ACTIONS(1006), - [anon_sym_register] = ACTIONS(1006), - [anon_sym_inline] = ACTIONS(1006), - [anon_sym_const] = ACTIONS(1006), - [anon_sym_restrict] = ACTIONS(1006), - [anon_sym_volatile] = ACTIONS(1006), - [anon_sym__Atomic] = ACTIONS(1006), - [anon_sym_unsigned] = ACTIONS(1006), - [anon_sym_long] = ACTIONS(1006), - [anon_sym_short] = ACTIONS(1006), - [sym_primitive_type] = ACTIONS(1006), - [anon_sym_enum] = ACTIONS(1006), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_union] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1006), - [anon_sym_case] = ACTIONS(1006), - [anon_sym_default] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_goto] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_TILDE] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_sizeof] = ACTIONS(1006), - [sym_number_literal] = ACTIONS(1004), - [anon_sym_SQUOTE] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym_true] = ACTIONS(1006), - [sym_false] = ACTIONS(1006), - [sym_null] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1006), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(968), + [sym_preproc_directive] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_LPAREN2] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_static] = ACTIONS(968), + [anon_sym_auto] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_inline] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_restrict] = ACTIONS(968), + [anon_sym_volatile] = ACTIONS(968), + [anon_sym__Atomic] = ACTIONS(968), + [anon_sym_unsigned] = ACTIONS(968), + [anon_sym_long] = ACTIONS(968), + [anon_sym_short] = ACTIONS(968), + [sym_primitive_type] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(968), + [anon_sym_case] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_goto] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_sizeof] = ACTIONS(968), + [sym_number_literal] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_true] = ACTIONS(968), + [sym_false] = ACTIONS(968), + [sym_null] = ACTIONS(968), + [sym_identifier] = ACTIONS(968), [sym_comment] = ACTIONS(39), }, [799] = { - [sym_preproc_include] = STATE(478), - [sym_preproc_def] = STATE(478), - [sym_preproc_function_def] = STATE(478), - [sym_preproc_call] = STATE(478), - [sym_preproc_if_in_compound_statement] = STATE(255), - [sym_preproc_ifdef_in_compound_statement] = STATE(256), - [sym_declaration] = STATE(478), - [sym_type_definition] = STATE(478), - [sym__declaration_specifiers] = STATE(257), - [sym_compound_statement] = STATE(478), + [sym_preproc_include] = STATE(468), + [sym_preproc_def] = STATE(468), + [sym_preproc_function_def] = STATE(468), + [sym_preproc_call] = STATE(468), + [sym_preproc_if_in_compound_statement] = STATE(248), + [sym_preproc_ifdef_in_compound_statement] = STATE(249), + [sym_declaration] = STATE(468), + [sym_type_definition] = STATE(468), + [sym__declaration_specifiers] = STATE(250), + [sym_compound_statement] = STATE(468), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -30415,57 +30624,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(478), - [sym_expression_statement] = STATE(478), - [sym_if_statement] = STATE(478), - [sym_switch_statement] = STATE(478), - [sym_case_statement] = STATE(478), - [sym_while_statement] = STATE(478), - [sym_do_statement] = STATE(478), - [sym_for_statement] = STATE(478), - [sym_return_statement] = STATE(478), - [sym_break_statement] = STATE(478), - [sym_continue_statement] = STATE(478), - [sym_goto_statement] = STATE(478), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [sym__empty_declaration] = STATE(478), + [sym_labeled_statement] = STATE(468), + [sym_expression_statement] = STATE(468), + [sym_if_statement] = STATE(468), + [sym_switch_statement] = STATE(468), + [sym_case_statement] = STATE(468), + [sym_while_statement] = STATE(468), + [sym_do_statement] = STATE(468), + [sym_for_statement] = STATE(468), + [sym_return_statement] = STATE(468), + [sym_break_statement] = STATE(468), + [sym_continue_statement] = STATE(468), + [sym_goto_statement] = STATE(468), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(468), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(478), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(468), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(548), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(542), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(552), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(544), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(546), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(548), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(550), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_RBRACE] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_RBRACE] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -30481,273 +30690,273 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(596), [sym_comment] = ACTIONS(39), }, [800] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1216), - [anon_sym_LPAREN] = ACTIONS(1214), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1216), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [sym_null] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1216), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1214), + [sym_preproc_directive] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_typedef] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_auto] = ACTIONS(1214), + [anon_sym_register] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_restrict] = ACTIONS(1214), + [anon_sym_volatile] = ACTIONS(1214), + [anon_sym__Atomic] = ACTIONS(1214), + [anon_sym_unsigned] = ACTIONS(1214), + [anon_sym_long] = ACTIONS(1214), + [anon_sym_short] = ACTIONS(1214), + [sym_primitive_type] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_struct] = ACTIONS(1214), + [anon_sym_union] = ACTIONS(1214), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_switch] = ACTIONS(1214), + [anon_sym_case] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_goto] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_TILDE] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_sizeof] = ACTIONS(1214), + [sym_number_literal] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1212), + [sym_true] = ACTIONS(1214), + [sym_false] = ACTIONS(1214), + [sym_null] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1214), [sym_comment] = ACTIONS(39), }, [801] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1345), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1345), - [anon_sym_LPAREN] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1345), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1345), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1345), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1345), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1345), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1345), - [sym_preproc_directive] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1345), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_static] = ACTIONS(1345), - [anon_sym_auto] = ACTIONS(1345), - [anon_sym_register] = ACTIONS(1345), - [anon_sym_inline] = ACTIONS(1345), - [anon_sym_const] = ACTIONS(1345), - [anon_sym_restrict] = ACTIONS(1345), - [anon_sym_volatile] = ACTIONS(1345), - [anon_sym__Atomic] = ACTIONS(1345), - [anon_sym_unsigned] = ACTIONS(1345), - [anon_sym_long] = ACTIONS(1345), - [anon_sym_short] = ACTIONS(1345), - [sym_primitive_type] = ACTIONS(1345), - [anon_sym_enum] = ACTIONS(1345), - [anon_sym_struct] = ACTIONS(1345), - [anon_sym_union] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_switch] = ACTIONS(1345), - [anon_sym_case] = ACTIONS(1345), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_goto] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [anon_sym_TILDE] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_sizeof] = ACTIONS(1345), - [sym_number_literal] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), - [sym_true] = ACTIONS(1345), - [sym_false] = ACTIONS(1345), - [sym_null] = ACTIONS(1345), - [sym_identifier] = ACTIONS(1345), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1337), + [sym_preproc_directive] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1337), + [anon_sym_auto] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_inline] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_restrict] = ACTIONS(1337), + [anon_sym_volatile] = ACTIONS(1337), + [anon_sym__Atomic] = ACTIONS(1337), + [anon_sym_unsigned] = ACTIONS(1337), + [anon_sym_long] = ACTIONS(1337), + [anon_sym_short] = ACTIONS(1337), + [sym_primitive_type] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_struct] = ACTIONS(1337), + [anon_sym_union] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1337), + [anon_sym_switch] = ACTIONS(1337), + [anon_sym_case] = ACTIONS(1337), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_goto] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(1335), + [anon_sym_sizeof] = ACTIONS(1337), + [sym_number_literal] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_true] = ACTIONS(1337), + [sym_false] = ACTIONS(1337), + [sym_null] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1337), [sym_comment] = ACTIONS(39), }, [802] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1349), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1349), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1349), - [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), - [sym_preproc_directive] = ACTIONS(1349), - [anon_sym_typedef] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym_static] = ACTIONS(1349), - [anon_sym_auto] = ACTIONS(1349), - [anon_sym_register] = ACTIONS(1349), - [anon_sym_inline] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [anon_sym_restrict] = ACTIONS(1349), - [anon_sym_volatile] = ACTIONS(1349), - [anon_sym__Atomic] = ACTIONS(1349), - [anon_sym_unsigned] = ACTIONS(1349), - [anon_sym_long] = ACTIONS(1349), - [anon_sym_short] = ACTIONS(1349), - [sym_primitive_type] = ACTIONS(1349), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_struct] = ACTIONS(1349), - [anon_sym_union] = ACTIONS(1349), - [sym_identifier] = ACTIONS(1349), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1341), + [sym_preproc_directive] = ACTIONS(1341), + [anon_sym_typedef] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_auto] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_inline] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_restrict] = ACTIONS(1341), + [anon_sym_volatile] = ACTIONS(1341), + [anon_sym__Atomic] = ACTIONS(1341), + [anon_sym_unsigned] = ACTIONS(1341), + [anon_sym_long] = ACTIONS(1341), + [anon_sym_short] = ACTIONS(1341), + [sym_primitive_type] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_struct] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1341), + [sym_identifier] = ACTIONS(1341), [sym_comment] = ACTIONS(39), }, [803] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1821), - [anon_sym_LPAREN] = ACTIONS(1819), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1821), - [sym_preproc_directive] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_typedef] = ACTIONS(1821), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_static] = ACTIONS(1821), - [anon_sym_auto] = ACTIONS(1821), - [anon_sym_register] = ACTIONS(1821), - [anon_sym_inline] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_restrict] = ACTIONS(1821), - [anon_sym_volatile] = ACTIONS(1821), - [anon_sym__Atomic] = ACTIONS(1821), - [anon_sym_unsigned] = ACTIONS(1821), - [anon_sym_long] = ACTIONS(1821), - [anon_sym_short] = ACTIONS(1821), - [sym_primitive_type] = ACTIONS(1821), - [anon_sym_enum] = ACTIONS(1821), - [anon_sym_struct] = ACTIONS(1821), - [anon_sym_union] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_else] = ACTIONS(1821), - [anon_sym_switch] = ACTIONS(1821), - [anon_sym_case] = ACTIONS(1821), - [anon_sym_default] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_do] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_goto] = ACTIONS(1821), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1819), - [anon_sym_sizeof] = ACTIONS(1821), - [sym_number_literal] = ACTIONS(1819), - [anon_sym_SQUOTE] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym_true] = ACTIONS(1821), - [sym_false] = ACTIONS(1821), - [sym_null] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1821), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1784), + [sym_preproc_directive] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_typedef] = ACTIONS(1784), + [anon_sym_extern] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_LPAREN2] = ACTIONS(1782), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1784), + [anon_sym_auto] = ACTIONS(1784), + [anon_sym_register] = ACTIONS(1784), + [anon_sym_inline] = ACTIONS(1784), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_restrict] = ACTIONS(1784), + [anon_sym_volatile] = ACTIONS(1784), + [anon_sym__Atomic] = ACTIONS(1784), + [anon_sym_unsigned] = ACTIONS(1784), + [anon_sym_long] = ACTIONS(1784), + [anon_sym_short] = ACTIONS(1784), + [sym_primitive_type] = ACTIONS(1784), + [anon_sym_enum] = ACTIONS(1784), + [anon_sym_struct] = ACTIONS(1784), + [anon_sym_union] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_else] = ACTIONS(1784), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_case] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_goto] = ACTIONS(1784), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1784), + [sym_number_literal] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [sym_true] = ACTIONS(1784), + [sym_false] = ACTIONS(1784), + [sym_null] = ACTIONS(1784), + [sym_identifier] = ACTIONS(1784), [sym_comment] = ACTIONS(39), }, [804] = { - [anon_sym_LPAREN] = ACTIONS(2683), - [anon_sym_RPAREN] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_RPAREN] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), [sym_comment] = ACTIONS(39), }, [805] = { - [sym__expression] = STATE(866), - [sym_conditional_expression] = STATE(866), - [sym_assignment_expression] = STATE(866), - [sym_pointer_expression] = STATE(866), - [sym_logical_expression] = STATE(866), - [sym_bitwise_expression] = STATE(866), - [sym_equality_expression] = STATE(866), - [sym_relational_expression] = STATE(866), - [sym_shift_expression] = STATE(866), - [sym_math_expression] = STATE(866), - [sym_cast_expression] = STATE(866), - [sym_sizeof_expression] = STATE(866), - [sym_subscript_expression] = STATE(866), - [sym_call_expression] = STATE(866), - [sym_field_expression] = STATE(866), - [sym_compound_literal_expression] = STATE(866), - [sym_parenthesized_expression] = STATE(866), - [sym_initializer_list] = STATE(867), - [sym_char_literal] = STATE(866), - [sym_concatenated_string] = STATE(866), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(630), + [sym__expression] = STATE(921), + [sym_conditional_expression] = STATE(921), + [sym_assignment_expression] = STATE(921), + [sym_pointer_expression] = STATE(921), + [sym_logical_expression] = STATE(921), + [sym_bitwise_expression] = STATE(921), + [sym_equality_expression] = STATE(921), + [sym_relational_expression] = STATE(921), + [sym_shift_expression] = STATE(921), + [sym_math_expression] = STATE(921), + [sym_cast_expression] = STATE(921), + [sym_sizeof_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_call_expression] = STATE(921), + [sym_field_expression] = STATE(921), + [sym_compound_literal_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(921), + [sym_initializer_list] = STATE(922), + [sym_char_literal] = STATE(921), + [sym_concatenated_string] = STATE(921), + [sym_string_literal] = STATE(346), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -30757,522 +30966,522 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2332), + [sym_true] = ACTIONS(2394), + [sym_false] = ACTIONS(2394), + [sym_null] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2394), [sym_comment] = ACTIONS(39), }, [806] = { - [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2639), [sym_comment] = ACTIONS(39), }, [807] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2598), - [anon_sym_RBRACE] = ACTIONS(2598), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1361), - [anon_sym_QMARK] = ACTIONS(2598), - [anon_sym_STAR_EQ] = ACTIONS(1365), - [anon_sym_SLASH_EQ] = ACTIONS(1365), - [anon_sym_PERCENT_EQ] = ACTIONS(1365), - [anon_sym_PLUS_EQ] = ACTIONS(1365), - [anon_sym_DASH_EQ] = ACTIONS(1365), - [anon_sym_LT_LT_EQ] = ACTIONS(1365), - [anon_sym_GT_GT_EQ] = ACTIONS(1365), - [anon_sym_AMP_EQ] = ACTIONS(1365), - [anon_sym_CARET_EQ] = ACTIONS(1365), - [anon_sym_PIPE_EQ] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1371), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_EQ_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(1381), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2540), + [anon_sym_RBRACE] = ACTIONS(2540), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(2540), + [anon_sym_STAR_EQ] = ACTIONS(1357), + [anon_sym_SLASH_EQ] = ACTIONS(1357), + [anon_sym_PERCENT_EQ] = ACTIONS(1357), + [anon_sym_PLUS_EQ] = ACTIONS(1357), + [anon_sym_DASH_EQ] = ACTIONS(1357), + [anon_sym_LT_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_GT_EQ] = ACTIONS(1357), + [anon_sym_AMP_EQ] = ACTIONS(1357), + [anon_sym_CARET_EQ] = ACTIONS(1357), + [anon_sym_PIPE_EQ] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1365), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [808] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(2687), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(2641), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [809] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2602), - [anon_sym_RBRACE] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(1381), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2544), + [anon_sym_RBRACE] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [810] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_RBRACE] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2606), - [anon_sym_STAR_EQ] = ACTIONS(2606), - [anon_sym_SLASH_EQ] = ACTIONS(2606), - [anon_sym_PERCENT_EQ] = ACTIONS(2606), - [anon_sym_PLUS_EQ] = ACTIONS(2606), - [anon_sym_DASH_EQ] = ACTIONS(2606), - [anon_sym_LT_LT_EQ] = ACTIONS(2606), - [anon_sym_GT_GT_EQ] = ACTIONS(2606), - [anon_sym_AMP_EQ] = ACTIONS(2606), - [anon_sym_CARET_EQ] = ACTIONS(2606), - [anon_sym_PIPE_EQ] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(1371), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_EQ_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(1381), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_RBRACE] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2550), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_STAR_EQ] = ACTIONS(2548), + [anon_sym_SLASH_EQ] = ACTIONS(2548), + [anon_sym_PERCENT_EQ] = ACTIONS(2548), + [anon_sym_PLUS_EQ] = ACTIONS(2548), + [anon_sym_DASH_EQ] = ACTIONS(2548), + [anon_sym_LT_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_GT_EQ] = ACTIONS(2548), + [anon_sym_AMP_EQ] = ACTIONS(2548), + [anon_sym_CARET_EQ] = ACTIONS(2548), + [anon_sym_PIPE_EQ] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_PIPE_PIPE] = ACTIONS(2548), + [anon_sym_AMP_AMP] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1365), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [811] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_RBRACE] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2606), - [anon_sym_STAR_EQ] = ACTIONS(2606), - [anon_sym_SLASH_EQ] = ACTIONS(2606), - [anon_sym_PERCENT_EQ] = ACTIONS(2606), - [anon_sym_PLUS_EQ] = ACTIONS(2606), - [anon_sym_DASH_EQ] = ACTIONS(2606), - [anon_sym_LT_LT_EQ] = ACTIONS(2606), - [anon_sym_GT_GT_EQ] = ACTIONS(2606), - [anon_sym_AMP_EQ] = ACTIONS(2606), - [anon_sym_CARET_EQ] = ACTIONS(2606), - [anon_sym_PIPE_EQ] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_EQ_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(1381), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_RBRACE] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2550), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_STAR_EQ] = ACTIONS(2548), + [anon_sym_SLASH_EQ] = ACTIONS(2548), + [anon_sym_PERCENT_EQ] = ACTIONS(2548), + [anon_sym_PLUS_EQ] = ACTIONS(2548), + [anon_sym_DASH_EQ] = ACTIONS(2548), + [anon_sym_LT_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_GT_EQ] = ACTIONS(2548), + [anon_sym_AMP_EQ] = ACTIONS(2548), + [anon_sym_CARET_EQ] = ACTIONS(2548), + [anon_sym_PIPE_EQ] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_PIPE_PIPE] = ACTIONS(2548), + [anon_sym_AMP_AMP] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(1365), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [812] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2602), - [anon_sym_RBRACE] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_EQ_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(1381), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2544), + [anon_sym_RBRACE] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [813] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2602), - [anon_sym_RBRACE] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(1381), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2544), + [anon_sym_RBRACE] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [814] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2610), - [anon_sym_RBRACE] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2612), - [anon_sym_QMARK] = ACTIONS(2610), - [anon_sym_STAR_EQ] = ACTIONS(2610), - [anon_sym_SLASH_EQ] = ACTIONS(2610), - [anon_sym_PERCENT_EQ] = ACTIONS(2610), - [anon_sym_PLUS_EQ] = ACTIONS(2610), - [anon_sym_DASH_EQ] = ACTIONS(2610), - [anon_sym_LT_LT_EQ] = ACTIONS(2610), - [anon_sym_GT_GT_EQ] = ACTIONS(2610), - [anon_sym_AMP_EQ] = ACTIONS(2610), - [anon_sym_CARET_EQ] = ACTIONS(2610), - [anon_sym_PIPE_EQ] = ACTIONS(2610), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE_PIPE] = ACTIONS(2610), - [anon_sym_AMP_AMP] = ACTIONS(2610), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_CARET] = ACTIONS(2612), - [anon_sym_EQ_EQ] = ACTIONS(2610), - [anon_sym_BANG_EQ] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(1381), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2552), + [anon_sym_RBRACE] = ACTIONS(2552), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2554), + [anon_sym_QMARK] = ACTIONS(2552), + [anon_sym_STAR_EQ] = ACTIONS(2552), + [anon_sym_SLASH_EQ] = ACTIONS(2552), + [anon_sym_PERCENT_EQ] = ACTIONS(2552), + [anon_sym_PLUS_EQ] = ACTIONS(2552), + [anon_sym_DASH_EQ] = ACTIONS(2552), + [anon_sym_LT_LT_EQ] = ACTIONS(2552), + [anon_sym_GT_GT_EQ] = ACTIONS(2552), + [anon_sym_AMP_EQ] = ACTIONS(2552), + [anon_sym_CARET_EQ] = ACTIONS(2552), + [anon_sym_PIPE_EQ] = ACTIONS(2552), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_PIPE_PIPE] = ACTIONS(2552), + [anon_sym_AMP_AMP] = ACTIONS(2552), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_EQ_EQ] = ACTIONS(2552), + [anon_sym_BANG_EQ] = ACTIONS(2552), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [815] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2614), - [anon_sym_RBRACE] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2616), - [anon_sym_QMARK] = ACTIONS(2614), - [anon_sym_STAR_EQ] = ACTIONS(2614), - [anon_sym_SLASH_EQ] = ACTIONS(2614), - [anon_sym_PERCENT_EQ] = ACTIONS(2614), - [anon_sym_PLUS_EQ] = ACTIONS(2614), - [anon_sym_DASH_EQ] = ACTIONS(2614), - [anon_sym_LT_LT_EQ] = ACTIONS(2614), - [anon_sym_GT_GT_EQ] = ACTIONS(2614), - [anon_sym_AMP_EQ] = ACTIONS(2614), - [anon_sym_CARET_EQ] = ACTIONS(2614), - [anon_sym_PIPE_EQ] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_CARET] = ACTIONS(2616), - [anon_sym_EQ_EQ] = ACTIONS(2614), - [anon_sym_BANG_EQ] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_GT] = ACTIONS(2616), - [anon_sym_LT_EQ] = ACTIONS(2614), - [anon_sym_GT_EQ] = ACTIONS(2614), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2556), + [anon_sym_RBRACE] = ACTIONS(2556), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2558), + [anon_sym_QMARK] = ACTIONS(2556), + [anon_sym_STAR_EQ] = ACTIONS(2556), + [anon_sym_SLASH_EQ] = ACTIONS(2556), + [anon_sym_PERCENT_EQ] = ACTIONS(2556), + [anon_sym_PLUS_EQ] = ACTIONS(2556), + [anon_sym_DASH_EQ] = ACTIONS(2556), + [anon_sym_LT_LT_EQ] = ACTIONS(2556), + [anon_sym_GT_GT_EQ] = ACTIONS(2556), + [anon_sym_AMP_EQ] = ACTIONS(2556), + [anon_sym_CARET_EQ] = ACTIONS(2556), + [anon_sym_PIPE_EQ] = ACTIONS(2556), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2556), + [anon_sym_AMP_AMP] = ACTIONS(2556), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2556), + [anon_sym_BANG_EQ] = ACTIONS(2556), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_LT_EQ] = ACTIONS(2556), + [anon_sym_GT_EQ] = ACTIONS(2556), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [816] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2618), - [anon_sym_STAR_EQ] = ACTIONS(2618), - [anon_sym_SLASH_EQ] = ACTIONS(2618), - [anon_sym_PERCENT_EQ] = ACTIONS(2618), - [anon_sym_PLUS_EQ] = ACTIONS(2618), - [anon_sym_DASH_EQ] = ACTIONS(2618), - [anon_sym_LT_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_GT_EQ] = ACTIONS(2618), - [anon_sym_AMP_EQ] = ACTIONS(2618), - [anon_sym_CARET_EQ] = ACTIONS(2618), - [anon_sym_PIPE_EQ] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_EQ_EQ] = ACTIONS(2618), - [anon_sym_BANG_EQ] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_LT_LT] = ACTIONS(2620), - [anon_sym_GT_GT] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2560), + [anon_sym_RBRACE] = ACTIONS(2560), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2562), + [anon_sym_QMARK] = ACTIONS(2560), + [anon_sym_STAR_EQ] = ACTIONS(2560), + [anon_sym_SLASH_EQ] = ACTIONS(2560), + [anon_sym_PERCENT_EQ] = ACTIONS(2560), + [anon_sym_PLUS_EQ] = ACTIONS(2560), + [anon_sym_DASH_EQ] = ACTIONS(2560), + [anon_sym_LT_LT_EQ] = ACTIONS(2560), + [anon_sym_GT_GT_EQ] = ACTIONS(2560), + [anon_sym_AMP_EQ] = ACTIONS(2560), + [anon_sym_CARET_EQ] = ACTIONS(2560), + [anon_sym_PIPE_EQ] = ACTIONS(2560), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2560), + [anon_sym_AMP_AMP] = ACTIONS(2560), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2560), + [anon_sym_BANG_EQ] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2562), + [anon_sym_LT_EQ] = ACTIONS(2560), + [anon_sym_GT_EQ] = ACTIONS(2560), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2562), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [817] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2592), - [anon_sym_RBRACE] = ACTIONS(2592), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2594), - [anon_sym_QMARK] = ACTIONS(2592), - [anon_sym_STAR_EQ] = ACTIONS(2592), - [anon_sym_SLASH_EQ] = ACTIONS(2592), - [anon_sym_PERCENT_EQ] = ACTIONS(2592), - [anon_sym_PLUS_EQ] = ACTIONS(2592), - [anon_sym_DASH_EQ] = ACTIONS(2592), - [anon_sym_LT_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_GT_EQ] = ACTIONS(2592), - [anon_sym_AMP_EQ] = ACTIONS(2592), - [anon_sym_CARET_EQ] = ACTIONS(2592), - [anon_sym_PIPE_EQ] = ACTIONS(2592), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2592), - [anon_sym_AMP_AMP] = ACTIONS(2592), - [anon_sym_PIPE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_EQ_EQ] = ACTIONS(2592), - [anon_sym_BANG_EQ] = ACTIONS(2592), - [anon_sym_LT] = ACTIONS(2594), - [anon_sym_GT] = ACTIONS(2594), - [anon_sym_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_EQ] = ACTIONS(2592), - [anon_sym_LT_LT] = ACTIONS(2594), - [anon_sym_GT_GT] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2536), + [anon_sym_QMARK] = ACTIONS(2534), + [anon_sym_STAR_EQ] = ACTIONS(2534), + [anon_sym_SLASH_EQ] = ACTIONS(2534), + [anon_sym_PERCENT_EQ] = ACTIONS(2534), + [anon_sym_PLUS_EQ] = ACTIONS(2534), + [anon_sym_DASH_EQ] = ACTIONS(2534), + [anon_sym_LT_LT_EQ] = ACTIONS(2534), + [anon_sym_GT_GT_EQ] = ACTIONS(2534), + [anon_sym_AMP_EQ] = ACTIONS(2534), + [anon_sym_CARET_EQ] = ACTIONS(2534), + [anon_sym_PIPE_EQ] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2536), + [anon_sym_EQ_EQ] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_GT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_LT_LT] = ACTIONS(2536), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [818] = { [sym_string_literal] = STATE(818), [aux_sym_concatenated_string_repeat1] = STATE(818), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_STAR_EQ] = ACTIONS(2626), - [anon_sym_SLASH_EQ] = ACTIONS(2626), - [anon_sym_PERCENT_EQ] = ACTIONS(2626), - [anon_sym_PLUS_EQ] = ACTIONS(2626), - [anon_sym_DASH_EQ] = ACTIONS(2626), - [anon_sym_LT_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_GT_EQ] = ACTIONS(2626), - [anon_sym_AMP_EQ] = ACTIONS(2626), - [anon_sym_CARET_EQ] = ACTIONS(2626), - [anon_sym_PIPE_EQ] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2628), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_EQ_EQ] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2626), - [anon_sym_LT_LT] = ACTIONS(2628), - [anon_sym_GT_GT] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_SLASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_DASH_DASH] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2630), + [anon_sym_COMMA] = ACTIONS(2568), + [anon_sym_RBRACE] = ACTIONS(2568), + [anon_sym_LPAREN2] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_EQ] = ACTIONS(2570), + [anon_sym_QMARK] = ACTIONS(2568), + [anon_sym_STAR_EQ] = ACTIONS(2568), + [anon_sym_SLASH_EQ] = ACTIONS(2568), + [anon_sym_PERCENT_EQ] = ACTIONS(2568), + [anon_sym_PLUS_EQ] = ACTIONS(2568), + [anon_sym_DASH_EQ] = ACTIONS(2568), + [anon_sym_LT_LT_EQ] = ACTIONS(2568), + [anon_sym_GT_GT_EQ] = ACTIONS(2568), + [anon_sym_AMP_EQ] = ACTIONS(2568), + [anon_sym_CARET_EQ] = ACTIONS(2568), + [anon_sym_PIPE_EQ] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2568), + [anon_sym_AMP_AMP] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_LT_EQ] = ACTIONS(2568), + [anon_sym_GT_EQ] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2570), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2570), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2568), + [anon_sym_DOT] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2572), [sym_comment] = ACTIONS(39), }, [819] = { @@ -31316,18 +31525,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [820] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2689), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2643), [sym_comment] = ACTIONS(39), }, [821] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2691), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2645), [sym_comment] = ACTIONS(39), }, [822] = { [sym_preproc_if_in_field_declaration_list] = STATE(107), [sym_preproc_ifdef_in_field_declaration_list] = STATE(108), - [sym_preproc_else_in_field_declaration_list] = STATE(997), - [sym_preproc_elif_in_field_declaration_list] = STATE(998), + [sym_preproc_else_in_field_declaration_list] = STATE(992), + [sym_preproc_elif_in_field_declaration_list] = STATE(993), [sym__declaration_specifiers] = STATE(109), [sym_storage_class_specifier] = STATE(112), [sym_type_qualifier] = STATE(112), @@ -31336,14 +31545,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(110), [sym_struct_specifier] = STATE(110), [sym_union_specifier] = STATE(110), - [sym__field_declaration_list_item] = STATE(580), - [sym_field_declaration] = STATE(580), + [sym__field_declaration_list_item] = STATE(579), + [sym_field_declaration] = STATE(579), [sym_macro_type_specifier] = STATE(110), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(580), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(579), [aux_sym__declaration_specifiers_repeat1] = STATE(112), [aux_sym_sized_type_specifier_repeat1] = STATE(113), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2693), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2647), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(197), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(199), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(831), @@ -31368,191 +31577,191 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [823] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2697), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2697), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2697), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2697), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2697), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym_RBRACE] = ACTIONS(2697), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_auto] = ACTIONS(2695), - [anon_sym_register] = ACTIONS(2695), - [anon_sym_inline] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_restrict] = ACTIONS(2695), - [anon_sym_volatile] = ACTIONS(2695), - [anon_sym__Atomic] = ACTIONS(2695), - [anon_sym_unsigned] = ACTIONS(2695), - [anon_sym_long] = ACTIONS(2695), - [anon_sym_short] = ACTIONS(2695), - [sym_primitive_type] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [sym_identifier] = ACTIONS(2695), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2649), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2651), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2651), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2651), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2651), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2651), + [anon_sym_extern] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2651), + [anon_sym_static] = ACTIONS(2649), + [anon_sym_auto] = ACTIONS(2649), + [anon_sym_register] = ACTIONS(2649), + [anon_sym_inline] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_restrict] = ACTIONS(2649), + [anon_sym_volatile] = ACTIONS(2649), + [anon_sym__Atomic] = ACTIONS(2649), + [anon_sym_unsigned] = ACTIONS(2649), + [anon_sym_long] = ACTIONS(2649), + [anon_sym_short] = ACTIONS(2649), + [sym_primitive_type] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2649), [sym_comment] = ACTIONS(39), }, [824] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2701), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2701), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2701), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2701), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2701), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym_RBRACE] = ACTIONS(2701), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_auto] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [sym_identifier] = ACTIONS(2699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2653), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2653), + [anon_sym_auto] = ACTIONS(2653), + [anon_sym_register] = ACTIONS(2653), + [anon_sym_inline] = ACTIONS(2653), + [anon_sym_const] = ACTIONS(2653), + [anon_sym_restrict] = ACTIONS(2653), + [anon_sym_volatile] = ACTIONS(2653), + [anon_sym__Atomic] = ACTIONS(2653), + [anon_sym_unsigned] = ACTIONS(2653), + [anon_sym_long] = ACTIONS(2653), + [anon_sym_short] = ACTIONS(2653), + [sym_primitive_type] = ACTIONS(2653), + [anon_sym_enum] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2653), [sym_comment] = ACTIONS(39), }, [825] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2703), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2705), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2705), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2705), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2705), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2705), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym_RBRACE] = ACTIONS(2705), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_auto] = ACTIONS(2703), - [anon_sym_register] = ACTIONS(2703), - [anon_sym_inline] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_restrict] = ACTIONS(2703), - [anon_sym_volatile] = ACTIONS(2703), - [anon_sym__Atomic] = ACTIONS(2703), - [anon_sym_unsigned] = ACTIONS(2703), - [anon_sym_long] = ACTIONS(2703), - [anon_sym_short] = ACTIONS(2703), - [sym_primitive_type] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [sym_identifier] = ACTIONS(2703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2657), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_auto] = ACTIONS(2657), + [anon_sym_register] = ACTIONS(2657), + [anon_sym_inline] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_restrict] = ACTIONS(2657), + [anon_sym_volatile] = ACTIONS(2657), + [anon_sym__Atomic] = ACTIONS(2657), + [anon_sym_unsigned] = ACTIONS(2657), + [anon_sym_long] = ACTIONS(2657), + [anon_sym_short] = ACTIONS(2657), + [sym_primitive_type] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [sym_identifier] = ACTIONS(2657), [sym_comment] = ACTIONS(39), }, [826] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2709), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2709), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2709), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2709), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2709), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_auto] = ACTIONS(2707), - [anon_sym_register] = ACTIONS(2707), - [anon_sym_inline] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_restrict] = ACTIONS(2707), - [anon_sym_volatile] = ACTIONS(2707), - [anon_sym__Atomic] = ACTIONS(2707), - [anon_sym_unsigned] = ACTIONS(2707), - [anon_sym_long] = ACTIONS(2707), - [anon_sym_short] = ACTIONS(2707), - [sym_primitive_type] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [sym_identifier] = ACTIONS(2707), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2661), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2663), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2663), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2663), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2663), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_auto] = ACTIONS(2661), + [anon_sym_register] = ACTIONS(2661), + [anon_sym_inline] = ACTIONS(2661), + [anon_sym_const] = ACTIONS(2661), + [anon_sym_restrict] = ACTIONS(2661), + [anon_sym_volatile] = ACTIONS(2661), + [anon_sym__Atomic] = ACTIONS(2661), + [anon_sym_unsigned] = ACTIONS(2661), + [anon_sym_long] = ACTIONS(2661), + [anon_sym_short] = ACTIONS(2661), + [sym_primitive_type] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(2661), + [anon_sym_union] = ACTIONS(2661), + [sym_identifier] = ACTIONS(2661), [sym_comment] = ACTIONS(39), }, [827] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2711), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym_RBRACE] = ACTIONS(2713), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_auto] = ACTIONS(2711), - [anon_sym_register] = ACTIONS(2711), - [anon_sym_inline] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_restrict] = ACTIONS(2711), - [anon_sym_volatile] = ACTIONS(2711), - [anon_sym__Atomic] = ACTIONS(2711), - [anon_sym_unsigned] = ACTIONS(2711), - [anon_sym_long] = ACTIONS(2711), - [anon_sym_short] = ACTIONS(2711), - [sym_primitive_type] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [sym_identifier] = ACTIONS(2711), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2665), + [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2665), + [anon_sym_auto] = ACTIONS(2665), + [anon_sym_register] = ACTIONS(2665), + [anon_sym_inline] = ACTIONS(2665), + [anon_sym_const] = ACTIONS(2665), + [anon_sym_restrict] = ACTIONS(2665), + [anon_sym_volatile] = ACTIONS(2665), + [anon_sym__Atomic] = ACTIONS(2665), + [anon_sym_unsigned] = ACTIONS(2665), + [anon_sym_long] = ACTIONS(2665), + [anon_sym_short] = ACTIONS(2665), + [sym_primitive_type] = ACTIONS(2665), + [anon_sym_enum] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(2665), + [anon_sym_union] = ACTIONS(2665), + [sym_identifier] = ACTIONS(2665), [sym_comment] = ACTIONS(39), }, [828] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2715), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2717), - [anon_sym_extern] = ACTIONS(2715), - [anon_sym_RBRACE] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(2715), - [anon_sym_auto] = ACTIONS(2715), - [anon_sym_register] = ACTIONS(2715), - [anon_sym_inline] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_restrict] = ACTIONS(2715), - [anon_sym_volatile] = ACTIONS(2715), - [anon_sym__Atomic] = ACTIONS(2715), - [anon_sym_unsigned] = ACTIONS(2715), - [anon_sym_long] = ACTIONS(2715), - [anon_sym_short] = ACTIONS(2715), - [sym_primitive_type] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [sym_identifier] = ACTIONS(2715), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2669), + [anon_sym_RBRACE] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_auto] = ACTIONS(2669), + [anon_sym_register] = ACTIONS(2669), + [anon_sym_inline] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_restrict] = ACTIONS(2669), + [anon_sym_volatile] = ACTIONS(2669), + [anon_sym__Atomic] = ACTIONS(2669), + [anon_sym_unsigned] = ACTIONS(2669), + [anon_sym_long] = ACTIONS(2669), + [anon_sym_short] = ACTIONS(2669), + [sym_primitive_type] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2669), [sym_comment] = ACTIONS(39), }, [829] = { - [sym__expression] = STATE(866), - [sym_conditional_expression] = STATE(866), - [sym_assignment_expression] = STATE(866), - [sym_pointer_expression] = STATE(866), - [sym_logical_expression] = STATE(866), - [sym_bitwise_expression] = STATE(866), - [sym_equality_expression] = STATE(866), - [sym_relational_expression] = STATE(866), - [sym_shift_expression] = STATE(866), - [sym_math_expression] = STATE(866), - [sym_cast_expression] = STATE(866), - [sym_sizeof_expression] = STATE(866), - [sym_subscript_expression] = STATE(866), - [sym_call_expression] = STATE(866), - [sym_field_expression] = STATE(866), - [sym_compound_literal_expression] = STATE(866), - [sym_parenthesized_expression] = STATE(866), - [sym_initializer_list] = STATE(867), - [sym_char_literal] = STATE(866), - [sym_concatenated_string] = STATE(866), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_LBRACE] = ACTIONS(630), + [sym__expression] = STATE(921), + [sym_conditional_expression] = STATE(921), + [sym_assignment_expression] = STATE(921), + [sym_pointer_expression] = STATE(921), + [sym_logical_expression] = STATE(921), + [sym_bitwise_expression] = STATE(921), + [sym_equality_expression] = STATE(921), + [sym_relational_expression] = STATE(921), + [sym_shift_expression] = STATE(921), + [sym_math_expression] = STATE(921), + [sym_cast_expression] = STATE(921), + [sym_sizeof_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_call_expression] = STATE(921), + [sym_field_expression] = STATE(921), + [sym_compound_literal_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(921), + [sym_initializer_list] = STATE(922), + [sym_char_literal] = STATE(921), + [sym_concatenated_string] = STATE(921), + [sym_string_literal] = STATE(376), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -31562,1471 +31771,749 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2332), + [sym_true] = ACTIONS(2394), + [sym_false] = ACTIONS(2394), + [sym_null] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2394), [sym_comment] = ACTIONS(39), }, [830] = { - [anon_sym_RPAREN] = ACTIONS(2719), + [anon_sym_RPAREN] = ACTIONS(2673), [sym_comment] = ACTIONS(39), }, [831] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(2598), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(2540), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [832] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(2721), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(2675), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [833] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [834] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2606), - [anon_sym_STAR_EQ] = ACTIONS(2606), - [anon_sym_SLASH_EQ] = ACTIONS(2606), - [anon_sym_PERCENT_EQ] = ACTIONS(2606), - [anon_sym_PLUS_EQ] = ACTIONS(2606), - [anon_sym_DASH_EQ] = ACTIONS(2606), - [anon_sym_LT_LT_EQ] = ACTIONS(2606), - [anon_sym_GT_GT_EQ] = ACTIONS(2606), - [anon_sym_AMP_EQ] = ACTIONS(2606), - [anon_sym_CARET_EQ] = ACTIONS(2606), - [anon_sym_PIPE_EQ] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2550), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_STAR_EQ] = ACTIONS(2548), + [anon_sym_SLASH_EQ] = ACTIONS(2548), + [anon_sym_PERCENT_EQ] = ACTIONS(2548), + [anon_sym_PLUS_EQ] = ACTIONS(2548), + [anon_sym_DASH_EQ] = ACTIONS(2548), + [anon_sym_LT_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_GT_EQ] = ACTIONS(2548), + [anon_sym_AMP_EQ] = ACTIONS(2548), + [anon_sym_CARET_EQ] = ACTIONS(2548), + [anon_sym_PIPE_EQ] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(2548), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [835] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2606), - [anon_sym_STAR_EQ] = ACTIONS(2606), - [anon_sym_SLASH_EQ] = ACTIONS(2606), - [anon_sym_PERCENT_EQ] = ACTIONS(2606), - [anon_sym_PLUS_EQ] = ACTIONS(2606), - [anon_sym_DASH_EQ] = ACTIONS(2606), - [anon_sym_LT_LT_EQ] = ACTIONS(2606), - [anon_sym_GT_GT_EQ] = ACTIONS(2606), - [anon_sym_AMP_EQ] = ACTIONS(2606), - [anon_sym_CARET_EQ] = ACTIONS(2606), - [anon_sym_PIPE_EQ] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2550), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_STAR_EQ] = ACTIONS(2548), + [anon_sym_SLASH_EQ] = ACTIONS(2548), + [anon_sym_PERCENT_EQ] = ACTIONS(2548), + [anon_sym_PLUS_EQ] = ACTIONS(2548), + [anon_sym_DASH_EQ] = ACTIONS(2548), + [anon_sym_LT_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_GT_EQ] = ACTIONS(2548), + [anon_sym_AMP_EQ] = ACTIONS(2548), + [anon_sym_CARET_EQ] = ACTIONS(2548), + [anon_sym_PIPE_EQ] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(2548), + [anon_sym_AMP_AMP] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [836] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [837] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [838] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2612), - [anon_sym_QMARK] = ACTIONS(2610), - [anon_sym_STAR_EQ] = ACTIONS(2610), - [anon_sym_SLASH_EQ] = ACTIONS(2610), - [anon_sym_PERCENT_EQ] = ACTIONS(2610), - [anon_sym_PLUS_EQ] = ACTIONS(2610), - [anon_sym_DASH_EQ] = ACTIONS(2610), - [anon_sym_LT_LT_EQ] = ACTIONS(2610), - [anon_sym_GT_GT_EQ] = ACTIONS(2610), - [anon_sym_AMP_EQ] = ACTIONS(2610), - [anon_sym_CARET_EQ] = ACTIONS(2610), - [anon_sym_PIPE_EQ] = ACTIONS(2610), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE_PIPE] = ACTIONS(2610), - [anon_sym_AMP_AMP] = ACTIONS(2610), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_CARET] = ACTIONS(2612), - [anon_sym_EQ_EQ] = ACTIONS(2610), - [anon_sym_BANG_EQ] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2552), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2554), + [anon_sym_QMARK] = ACTIONS(2552), + [anon_sym_STAR_EQ] = ACTIONS(2552), + [anon_sym_SLASH_EQ] = ACTIONS(2552), + [anon_sym_PERCENT_EQ] = ACTIONS(2552), + [anon_sym_PLUS_EQ] = ACTIONS(2552), + [anon_sym_DASH_EQ] = ACTIONS(2552), + [anon_sym_LT_LT_EQ] = ACTIONS(2552), + [anon_sym_GT_GT_EQ] = ACTIONS(2552), + [anon_sym_AMP_EQ] = ACTIONS(2552), + [anon_sym_CARET_EQ] = ACTIONS(2552), + [anon_sym_PIPE_EQ] = ACTIONS(2552), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_PIPE_PIPE] = ACTIONS(2552), + [anon_sym_AMP_AMP] = ACTIONS(2552), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_EQ_EQ] = ACTIONS(2552), + [anon_sym_BANG_EQ] = ACTIONS(2552), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [839] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2616), - [anon_sym_QMARK] = ACTIONS(2614), - [anon_sym_STAR_EQ] = ACTIONS(2614), - [anon_sym_SLASH_EQ] = ACTIONS(2614), - [anon_sym_PERCENT_EQ] = ACTIONS(2614), - [anon_sym_PLUS_EQ] = ACTIONS(2614), - [anon_sym_DASH_EQ] = ACTIONS(2614), - [anon_sym_LT_LT_EQ] = ACTIONS(2614), - [anon_sym_GT_GT_EQ] = ACTIONS(2614), - [anon_sym_AMP_EQ] = ACTIONS(2614), - [anon_sym_CARET_EQ] = ACTIONS(2614), - [anon_sym_PIPE_EQ] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_CARET] = ACTIONS(2616), - [anon_sym_EQ_EQ] = ACTIONS(2614), - [anon_sym_BANG_EQ] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_GT] = ACTIONS(2616), - [anon_sym_LT_EQ] = ACTIONS(2614), - [anon_sym_GT_EQ] = ACTIONS(2614), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2556), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2558), + [anon_sym_QMARK] = ACTIONS(2556), + [anon_sym_STAR_EQ] = ACTIONS(2556), + [anon_sym_SLASH_EQ] = ACTIONS(2556), + [anon_sym_PERCENT_EQ] = ACTIONS(2556), + [anon_sym_PLUS_EQ] = ACTIONS(2556), + [anon_sym_DASH_EQ] = ACTIONS(2556), + [anon_sym_LT_LT_EQ] = ACTIONS(2556), + [anon_sym_GT_GT_EQ] = ACTIONS(2556), + [anon_sym_AMP_EQ] = ACTIONS(2556), + [anon_sym_CARET_EQ] = ACTIONS(2556), + [anon_sym_PIPE_EQ] = ACTIONS(2556), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2556), + [anon_sym_AMP_AMP] = ACTIONS(2556), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2556), + [anon_sym_BANG_EQ] = ACTIONS(2556), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_LT_EQ] = ACTIONS(2556), + [anon_sym_GT_EQ] = ACTIONS(2556), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [840] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2618), - [anon_sym_STAR_EQ] = ACTIONS(2618), - [anon_sym_SLASH_EQ] = ACTIONS(2618), - [anon_sym_PERCENT_EQ] = ACTIONS(2618), - [anon_sym_PLUS_EQ] = ACTIONS(2618), - [anon_sym_DASH_EQ] = ACTIONS(2618), - [anon_sym_LT_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_GT_EQ] = ACTIONS(2618), - [anon_sym_AMP_EQ] = ACTIONS(2618), - [anon_sym_CARET_EQ] = ACTIONS(2618), - [anon_sym_PIPE_EQ] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_EQ_EQ] = ACTIONS(2618), - [anon_sym_BANG_EQ] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_LT_LT] = ACTIONS(2620), - [anon_sym_GT_GT] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2560), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2562), + [anon_sym_QMARK] = ACTIONS(2560), + [anon_sym_STAR_EQ] = ACTIONS(2560), + [anon_sym_SLASH_EQ] = ACTIONS(2560), + [anon_sym_PERCENT_EQ] = ACTIONS(2560), + [anon_sym_PLUS_EQ] = ACTIONS(2560), + [anon_sym_DASH_EQ] = ACTIONS(2560), + [anon_sym_LT_LT_EQ] = ACTIONS(2560), + [anon_sym_GT_GT_EQ] = ACTIONS(2560), + [anon_sym_AMP_EQ] = ACTIONS(2560), + [anon_sym_CARET_EQ] = ACTIONS(2560), + [anon_sym_PIPE_EQ] = ACTIONS(2560), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2560), + [anon_sym_AMP_AMP] = ACTIONS(2560), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2560), + [anon_sym_BANG_EQ] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2562), + [anon_sym_LT_EQ] = ACTIONS(2560), + [anon_sym_GT_EQ] = ACTIONS(2560), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2562), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [841] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2594), - [anon_sym_QMARK] = ACTIONS(2592), - [anon_sym_STAR_EQ] = ACTIONS(2592), - [anon_sym_SLASH_EQ] = ACTIONS(2592), - [anon_sym_PERCENT_EQ] = ACTIONS(2592), - [anon_sym_PLUS_EQ] = ACTIONS(2592), - [anon_sym_DASH_EQ] = ACTIONS(2592), - [anon_sym_LT_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_GT_EQ] = ACTIONS(2592), - [anon_sym_AMP_EQ] = ACTIONS(2592), - [anon_sym_CARET_EQ] = ACTIONS(2592), - [anon_sym_PIPE_EQ] = ACTIONS(2592), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2592), - [anon_sym_AMP_AMP] = ACTIONS(2592), - [anon_sym_PIPE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_EQ_EQ] = ACTIONS(2592), - [anon_sym_BANG_EQ] = ACTIONS(2592), - [anon_sym_LT] = ACTIONS(2594), - [anon_sym_GT] = ACTIONS(2594), - [anon_sym_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_EQ] = ACTIONS(2592), - [anon_sym_LT_LT] = ACTIONS(2594), - [anon_sym_GT_GT] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2536), + [anon_sym_QMARK] = ACTIONS(2534), + [anon_sym_STAR_EQ] = ACTIONS(2534), + [anon_sym_SLASH_EQ] = ACTIONS(2534), + [anon_sym_PERCENT_EQ] = ACTIONS(2534), + [anon_sym_PLUS_EQ] = ACTIONS(2534), + [anon_sym_DASH_EQ] = ACTIONS(2534), + [anon_sym_LT_LT_EQ] = ACTIONS(2534), + [anon_sym_GT_GT_EQ] = ACTIONS(2534), + [anon_sym_AMP_EQ] = ACTIONS(2534), + [anon_sym_CARET_EQ] = ACTIONS(2534), + [anon_sym_PIPE_EQ] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2536), + [anon_sym_EQ_EQ] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_GT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_LT_LT] = ACTIONS(2536), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [842] = { [sym_string_literal] = STATE(842), [aux_sym_concatenated_string_repeat1] = STATE(842), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_STAR_EQ] = ACTIONS(2626), - [anon_sym_SLASH_EQ] = ACTIONS(2626), - [anon_sym_PERCENT_EQ] = ACTIONS(2626), - [anon_sym_PLUS_EQ] = ACTIONS(2626), - [anon_sym_DASH_EQ] = ACTIONS(2626), - [anon_sym_LT_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_GT_EQ] = ACTIONS(2626), - [anon_sym_AMP_EQ] = ACTIONS(2626), - [anon_sym_CARET_EQ] = ACTIONS(2626), - [anon_sym_PIPE_EQ] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2628), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_EQ_EQ] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2626), - [anon_sym_LT_LT] = ACTIONS(2628), - [anon_sym_GT_GT] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_SLASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_DASH_DASH] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2630), + [anon_sym_SEMI] = ACTIONS(2568), + [anon_sym_LPAREN2] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_EQ] = ACTIONS(2570), + [anon_sym_QMARK] = ACTIONS(2568), + [anon_sym_STAR_EQ] = ACTIONS(2568), + [anon_sym_SLASH_EQ] = ACTIONS(2568), + [anon_sym_PERCENT_EQ] = ACTIONS(2568), + [anon_sym_PLUS_EQ] = ACTIONS(2568), + [anon_sym_DASH_EQ] = ACTIONS(2568), + [anon_sym_LT_LT_EQ] = ACTIONS(2568), + [anon_sym_GT_GT_EQ] = ACTIONS(2568), + [anon_sym_AMP_EQ] = ACTIONS(2568), + [anon_sym_CARET_EQ] = ACTIONS(2568), + [anon_sym_PIPE_EQ] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2568), + [anon_sym_AMP_AMP] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_LT_EQ] = ACTIONS(2568), + [anon_sym_GT_EQ] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2570), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2570), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2568), + [anon_sym_DOT] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2572), [sym_comment] = ACTIONS(39), }, [843] = { - [anon_sym_LPAREN] = ACTIONS(2723), - [anon_sym_COMMA] = ACTIONS(2723), - [anon_sym_RPAREN] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2723), - [anon_sym_COLON] = ACTIONS(2723), + [anon_sym_COMMA] = ACTIONS(2677), + [anon_sym_RPAREN] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym_LPAREN2] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_COLON] = ACTIONS(2677), [sym_comment] = ACTIONS(39), }, [844] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2725), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [845] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2727), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2729), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2729), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2729), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2729), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2729), - [anon_sym_extern] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2727), - [anon_sym_auto] = ACTIONS(2727), - [anon_sym_register] = ACTIONS(2727), - [anon_sym_inline] = ACTIONS(2727), - [anon_sym_const] = ACTIONS(2727), - [anon_sym_restrict] = ACTIONS(2727), - [anon_sym_volatile] = ACTIONS(2727), - [anon_sym__Atomic] = ACTIONS(2727), - [anon_sym_unsigned] = ACTIONS(2727), - [anon_sym_long] = ACTIONS(2727), - [anon_sym_short] = ACTIONS(2727), - [sym_primitive_type] = ACTIONS(2727), - [anon_sym_enum] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_union] = ACTIONS(2727), - [sym_identifier] = ACTIONS(2727), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2681), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_auto] = ACTIONS(2681), + [anon_sym_register] = ACTIONS(2681), + [anon_sym_inline] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_restrict] = ACTIONS(2681), + [anon_sym_volatile] = ACTIONS(2681), + [anon_sym__Atomic] = ACTIONS(2681), + [anon_sym_unsigned] = ACTIONS(2681), + [anon_sym_long] = ACTIONS(2681), + [anon_sym_short] = ACTIONS(2681), + [sym_primitive_type] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2681), + [anon_sym_union] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2681), [sym_comment] = ACTIONS(39), }, [846] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(2731), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [847] = { - [anon_sym_LPAREN] = ACTIONS(2733), - [anon_sym_COMMA] = ACTIONS(2733), - [anon_sym_RPAREN] = ACTIONS(2733), - [anon_sym_LBRACK] = ACTIONS(2733), + [anon_sym_COMMA] = ACTIONS(2687), + [anon_sym_RPAREN] = ACTIONS(2687), + [anon_sym_LPAREN2] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), [sym_comment] = ACTIONS(39), }, [848] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2735), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2689), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [849] = { - [sym__declarator] = STATE(219), - [sym__abstract_declarator] = STATE(619), - [sym_pointer_declarator] = STATE(219), - [sym_abstract_pointer_declarator] = STATE(619), - [sym_function_declarator] = STATE(219), - [sym_abstract_function_declarator] = STATE(619), - [sym_array_declarator] = STATE(219), - [sym_abstract_array_declarator] = STATE(619), - [sym_type_qualifier] = STATE(1004), - [sym_parameter_list] = STATE(213), - [aux_sym_type_definition_repeat1] = STATE(1004), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(516), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(530), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(654), + [sym_preproc_directive] = ACTIONS(654), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_typedef] = ACTIONS(654), + [anon_sym_extern] = ACTIONS(654), + [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_static] = ACTIONS(654), + [anon_sym_auto] = ACTIONS(654), + [anon_sym_register] = ACTIONS(654), + [anon_sym_inline] = ACTIONS(654), + [anon_sym_const] = ACTIONS(654), + [anon_sym_restrict] = ACTIONS(654), + [anon_sym_volatile] = ACTIONS(654), + [anon_sym__Atomic] = ACTIONS(654), + [anon_sym_unsigned] = ACTIONS(654), + [anon_sym_long] = ACTIONS(654), + [anon_sym_short] = ACTIONS(654), + [sym_primitive_type] = ACTIONS(654), + [anon_sym_enum] = ACTIONS(654), + [anon_sym_struct] = ACTIONS(654), + [anon_sym_union] = ACTIONS(654), + [anon_sym_if] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(654), + [anon_sym_case] = ACTIONS(654), + [anon_sym_default] = ACTIONS(654), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(654), + [anon_sym_for] = ACTIONS(654), + [anon_sym_return] = ACTIONS(654), + [anon_sym_break] = ACTIONS(654), + [anon_sym_continue] = ACTIONS(654), + [anon_sym_goto] = ACTIONS(654), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(652), + [anon_sym_TILDE] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(654), + [anon_sym_DASH] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(652), + [anon_sym_PLUS_PLUS] = ACTIONS(652), + [anon_sym_sizeof] = ACTIONS(654), + [sym_number_literal] = ACTIONS(652), + [anon_sym_SQUOTE] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(652), + [sym_true] = ACTIONS(654), + [sym_false] = ACTIONS(654), + [sym_null] = ACTIONS(654), + [sym_identifier] = ACTIONS(654), [sym_comment] = ACTIONS(39), }, [850] = { - [sym_type_qualifier] = STATE(850), - [aux_sym_type_definition_repeat1] = STATE(850), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_COMMA] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_const] = ACTIONS(434), - [anon_sym_restrict] = ACTIONS(434), - [anon_sym_volatile] = ACTIONS(434), - [anon_sym__Atomic] = ACTIONS(434), - [sym_identifier] = ACTIONS(437), - [sym_comment] = ACTIONS(39), - }, - [851] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(650), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(652), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(652), - [sym_preproc_directive] = ACTIONS(652), - [anon_sym_SEMI] = ACTIONS(650), - [anon_sym_typedef] = ACTIONS(652), - [anon_sym_extern] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(650), - [anon_sym_RBRACE] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_static] = ACTIONS(652), - [anon_sym_auto] = ACTIONS(652), - [anon_sym_register] = ACTIONS(652), - [anon_sym_inline] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_restrict] = ACTIONS(652), - [anon_sym_volatile] = ACTIONS(652), - [anon_sym__Atomic] = ACTIONS(652), - [anon_sym_unsigned] = ACTIONS(652), - [anon_sym_long] = ACTIONS(652), - [anon_sym_short] = ACTIONS(652), - [sym_primitive_type] = ACTIONS(652), - [anon_sym_enum] = ACTIONS(652), - [anon_sym_struct] = ACTIONS(652), - [anon_sym_union] = ACTIONS(652), - [anon_sym_if] = ACTIONS(652), - [anon_sym_switch] = ACTIONS(652), - [anon_sym_case] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_while] = ACTIONS(652), - [anon_sym_do] = ACTIONS(652), - [anon_sym_for] = ACTIONS(652), - [anon_sym_return] = ACTIONS(652), - [anon_sym_break] = ACTIONS(652), - [anon_sym_continue] = ACTIONS(652), - [anon_sym_goto] = ACTIONS(652), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_TILDE] = ACTIONS(650), - [anon_sym_PLUS] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(652), - [anon_sym_DASH_DASH] = ACTIONS(650), - [anon_sym_PLUS_PLUS] = ACTIONS(650), - [anon_sym_sizeof] = ACTIONS(652), - [sym_number_literal] = ACTIONS(650), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_DQUOTE] = ACTIONS(650), - [sym_true] = ACTIONS(652), - [sym_false] = ACTIONS(652), - [sym_null] = ACTIONS(652), - [sym_identifier] = ACTIONS(652), - [sym_comment] = ACTIONS(39), - }, - [852] = { - [sym__expression] = STATE(866), - [sym_conditional_expression] = STATE(866), - [sym_assignment_expression] = STATE(866), - [sym_pointer_expression] = STATE(866), - [sym_logical_expression] = STATE(866), - [sym_bitwise_expression] = STATE(866), - [sym_equality_expression] = STATE(866), - [sym_relational_expression] = STATE(866), - [sym_shift_expression] = STATE(866), - [sym_math_expression] = STATE(866), - [sym_cast_expression] = STATE(866), - [sym_sizeof_expression] = STATE(866), - [sym_subscript_expression] = STATE(866), - [sym_call_expression] = STATE(866), - [sym_field_expression] = STATE(866), - [sym_compound_literal_expression] = STATE(866), - [sym_parenthesized_expression] = STATE(866), - [sym_initializer_list] = STATE(867), - [sym_char_literal] = STATE(866), - [sym_concatenated_string] = STATE(866), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2332), - [sym_comment] = ACTIONS(39), - }, - [853] = { - [anon_sym_RPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(39), - }, - [854] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1533), - [anon_sym_RPAREN] = ACTIONS(2590), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [855] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2598), - [anon_sym_RPAREN] = ACTIONS(2598), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(2598), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [856] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(2739), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [857] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2602), - [anon_sym_RPAREN] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [858] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_RPAREN] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2606), - [anon_sym_STAR_EQ] = ACTIONS(2606), - [anon_sym_SLASH_EQ] = ACTIONS(2606), - [anon_sym_PERCENT_EQ] = ACTIONS(2606), - [anon_sym_PLUS_EQ] = ACTIONS(2606), - [anon_sym_DASH_EQ] = ACTIONS(2606), - [anon_sym_LT_LT_EQ] = ACTIONS(2606), - [anon_sym_GT_GT_EQ] = ACTIONS(2606), - [anon_sym_AMP_EQ] = ACTIONS(2606), - [anon_sym_CARET_EQ] = ACTIONS(2606), - [anon_sym_PIPE_EQ] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [859] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_RPAREN] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2606), - [anon_sym_STAR_EQ] = ACTIONS(2606), - [anon_sym_SLASH_EQ] = ACTIONS(2606), - [anon_sym_PERCENT_EQ] = ACTIONS(2606), - [anon_sym_PLUS_EQ] = ACTIONS(2606), - [anon_sym_DASH_EQ] = ACTIONS(2606), - [anon_sym_LT_LT_EQ] = ACTIONS(2606), - [anon_sym_GT_GT_EQ] = ACTIONS(2606), - [anon_sym_AMP_EQ] = ACTIONS(2606), - [anon_sym_CARET_EQ] = ACTIONS(2606), - [anon_sym_PIPE_EQ] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [860] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2602), - [anon_sym_RPAREN] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [861] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2602), - [anon_sym_RPAREN] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [862] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2610), - [anon_sym_RPAREN] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2612), - [anon_sym_QMARK] = ACTIONS(2610), - [anon_sym_STAR_EQ] = ACTIONS(2610), - [anon_sym_SLASH_EQ] = ACTIONS(2610), - [anon_sym_PERCENT_EQ] = ACTIONS(2610), - [anon_sym_PLUS_EQ] = ACTIONS(2610), - [anon_sym_DASH_EQ] = ACTIONS(2610), - [anon_sym_LT_LT_EQ] = ACTIONS(2610), - [anon_sym_GT_GT_EQ] = ACTIONS(2610), - [anon_sym_AMP_EQ] = ACTIONS(2610), - [anon_sym_CARET_EQ] = ACTIONS(2610), - [anon_sym_PIPE_EQ] = ACTIONS(2610), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE_PIPE] = ACTIONS(2610), - [anon_sym_AMP_AMP] = ACTIONS(2610), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_CARET] = ACTIONS(2612), - [anon_sym_EQ_EQ] = ACTIONS(2610), - [anon_sym_BANG_EQ] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [863] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2614), - [anon_sym_RPAREN] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2616), - [anon_sym_QMARK] = ACTIONS(2614), - [anon_sym_STAR_EQ] = ACTIONS(2614), - [anon_sym_SLASH_EQ] = ACTIONS(2614), - [anon_sym_PERCENT_EQ] = ACTIONS(2614), - [anon_sym_PLUS_EQ] = ACTIONS(2614), - [anon_sym_DASH_EQ] = ACTIONS(2614), - [anon_sym_LT_LT_EQ] = ACTIONS(2614), - [anon_sym_GT_GT_EQ] = ACTIONS(2614), - [anon_sym_AMP_EQ] = ACTIONS(2614), - [anon_sym_CARET_EQ] = ACTIONS(2614), - [anon_sym_PIPE_EQ] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_CARET] = ACTIONS(2616), - [anon_sym_EQ_EQ] = ACTIONS(2614), - [anon_sym_BANG_EQ] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_GT] = ACTIONS(2616), - [anon_sym_LT_EQ] = ACTIONS(2614), - [anon_sym_GT_EQ] = ACTIONS(2614), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [864] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2618), - [anon_sym_RPAREN] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2618), - [anon_sym_STAR_EQ] = ACTIONS(2618), - [anon_sym_SLASH_EQ] = ACTIONS(2618), - [anon_sym_PERCENT_EQ] = ACTIONS(2618), - [anon_sym_PLUS_EQ] = ACTIONS(2618), - [anon_sym_DASH_EQ] = ACTIONS(2618), - [anon_sym_LT_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_GT_EQ] = ACTIONS(2618), - [anon_sym_AMP_EQ] = ACTIONS(2618), - [anon_sym_CARET_EQ] = ACTIONS(2618), - [anon_sym_PIPE_EQ] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_EQ_EQ] = ACTIONS(2618), - [anon_sym_BANG_EQ] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_LT_LT] = ACTIONS(2620), - [anon_sym_GT_GT] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [865] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2592), - [anon_sym_RPAREN] = ACTIONS(2592), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2594), - [anon_sym_QMARK] = ACTIONS(2592), - [anon_sym_STAR_EQ] = ACTIONS(2592), - [anon_sym_SLASH_EQ] = ACTIONS(2592), - [anon_sym_PERCENT_EQ] = ACTIONS(2592), - [anon_sym_PLUS_EQ] = ACTIONS(2592), - [anon_sym_DASH_EQ] = ACTIONS(2592), - [anon_sym_LT_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_GT_EQ] = ACTIONS(2592), - [anon_sym_AMP_EQ] = ACTIONS(2592), - [anon_sym_CARET_EQ] = ACTIONS(2592), - [anon_sym_PIPE_EQ] = ACTIONS(2592), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2592), - [anon_sym_AMP_AMP] = ACTIONS(2592), - [anon_sym_PIPE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_EQ_EQ] = ACTIONS(2592), - [anon_sym_BANG_EQ] = ACTIONS(2592), - [anon_sym_LT] = ACTIONS(2594), - [anon_sym_GT] = ACTIONS(2594), - [anon_sym_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_EQ] = ACTIONS(2592), - [anon_sym_LT_LT] = ACTIONS(2594), - [anon_sym_GT_GT] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [866] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_RPAREN] = ACTIONS(2741), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2743), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(2741), - [anon_sym_EQ] = ACTIONS(2743), - [anon_sym_COLON] = ACTIONS(2741), - [anon_sym_QMARK] = ACTIONS(2741), - [anon_sym_STAR_EQ] = ACTIONS(2741), - [anon_sym_SLASH_EQ] = ACTIONS(2741), - [anon_sym_PERCENT_EQ] = ACTIONS(2741), - [anon_sym_PLUS_EQ] = ACTIONS(2741), - [anon_sym_DASH_EQ] = ACTIONS(2741), - [anon_sym_LT_LT_EQ] = ACTIONS(2741), - [anon_sym_GT_GT_EQ] = ACTIONS(2741), - [anon_sym_AMP_EQ] = ACTIONS(2741), - [anon_sym_CARET_EQ] = ACTIONS(2741), - [anon_sym_PIPE_EQ] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2743), - [anon_sym_PIPE_PIPE] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2743), - [anon_sym_CARET] = ACTIONS(2743), - [anon_sym_EQ_EQ] = ACTIONS(2741), - [anon_sym_BANG_EQ] = ACTIONS(2741), - [anon_sym_LT] = ACTIONS(2743), - [anon_sym_GT] = ACTIONS(2743), - [anon_sym_LT_EQ] = ACTIONS(2741), - [anon_sym_GT_EQ] = ACTIONS(2741), - [anon_sym_LT_LT] = ACTIONS(2743), - [anon_sym_GT_GT] = ACTIONS(2743), - [anon_sym_PLUS] = ACTIONS(2743), - [anon_sym_DASH] = ACTIONS(2743), - [anon_sym_SLASH] = ACTIONS(2743), - [anon_sym_PERCENT] = ACTIONS(2743), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [867] = { - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_RPAREN] = ACTIONS(2745), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_RBRACK] = ACTIONS(2745), - [anon_sym_EQ] = ACTIONS(2747), - [anon_sym_COLON] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2745), - [anon_sym_STAR_EQ] = ACTIONS(2745), - [anon_sym_SLASH_EQ] = ACTIONS(2745), - [anon_sym_PERCENT_EQ] = ACTIONS(2745), - [anon_sym_PLUS_EQ] = ACTIONS(2745), - [anon_sym_DASH_EQ] = ACTIONS(2745), - [anon_sym_LT_LT_EQ] = ACTIONS(2745), - [anon_sym_GT_GT_EQ] = ACTIONS(2745), - [anon_sym_AMP_EQ] = ACTIONS(2745), - [anon_sym_CARET_EQ] = ACTIONS(2745), - [anon_sym_PIPE_EQ] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_PIPE_PIPE] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_EQ_EQ] = ACTIONS(2745), - [anon_sym_BANG_EQ] = ACTIONS(2745), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_GT] = ACTIONS(2747), - [anon_sym_LT_EQ] = ACTIONS(2745), - [anon_sym_GT_EQ] = ACTIONS(2745), - [anon_sym_LT_LT] = ACTIONS(2747), - [anon_sym_GT_GT] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_PERCENT] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_DASH_GT] = ACTIONS(2745), - [sym_comment] = ACTIONS(39), - }, - [868] = { - [sym_string_literal] = STATE(868), - [aux_sym_concatenated_string_repeat1] = STATE(868), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2626), - [anon_sym_RPAREN] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_STAR_EQ] = ACTIONS(2626), - [anon_sym_SLASH_EQ] = ACTIONS(2626), - [anon_sym_PERCENT_EQ] = ACTIONS(2626), - [anon_sym_PLUS_EQ] = ACTIONS(2626), - [anon_sym_DASH_EQ] = ACTIONS(2626), - [anon_sym_LT_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_GT_EQ] = ACTIONS(2626), - [anon_sym_AMP_EQ] = ACTIONS(2626), - [anon_sym_CARET_EQ] = ACTIONS(2626), - [anon_sym_PIPE_EQ] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2628), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_EQ_EQ] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2626), - [anon_sym_LT_LT] = ACTIONS(2628), - [anon_sym_GT_GT] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_SLASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_DASH_DASH] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2630), - [sym_comment] = ACTIONS(39), - }, - [869] = { - [sym_preproc_include] = STATE(1010), - [sym_preproc_def] = STATE(1010), - [sym_preproc_function_def] = STATE(1010), - [sym_preproc_call] = STATE(1010), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(1008), - [sym_preproc_elif_in_compound_statement] = STATE(1009), - [sym_declaration] = STATE(1010), - [sym_type_definition] = STATE(1010), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(1010), + [sym_preproc_include] = STATE(1002), + [sym_preproc_def] = STATE(1002), + [sym_preproc_function_def] = STATE(1002), + [sym_preproc_call] = STATE(1002), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(1000), + [sym_preproc_elif_in_compound_statement] = STATE(1001), + [sym_declaration] = STATE(1002), + [sym_type_definition] = STATE(1002), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(1002), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -33034,59 +32521,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(1010), - [sym_expression_statement] = STATE(1010), - [sym_if_statement] = STATE(1010), - [sym_switch_statement] = STATE(1010), - [sym_case_statement] = STATE(1010), - [sym_while_statement] = STATE(1010), - [sym_do_statement] = STATE(1010), - [sym_for_statement] = STATE(1010), - [sym_return_statement] = STATE(1010), - [sym_break_statement] = STATE(1010), - [sym_continue_statement] = STATE(1010), - [sym_goto_statement] = STATE(1010), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(1010), + [sym_labeled_statement] = STATE(1002), + [sym_expression_statement] = STATE(1002), + [sym_if_statement] = STATE(1002), + [sym_switch_statement] = STATE(1002), + [sym_case_statement] = STATE(1002), + [sym_while_statement] = STATE(1002), + [sym_do_statement] = STATE(1002), + [sym_for_statement] = STATE(1002), + [sym_return_statement] = STATE(1002), + [sym_break_statement] = STATE(1002), + [sym_continue_statement] = STATE(1002), + [sym_goto_statement] = STATE(1002), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(1002), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1010), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1002), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2749), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2691), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -33102,47 +32589,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [870] = { - [sym_preproc_include] = STATE(1014), - [sym_preproc_def] = STATE(1014), - [sym_preproc_function_def] = STATE(1014), - [sym_preproc_call] = STATE(1014), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(1012), - [sym_preproc_elif_in_compound_statement] = STATE(1013), - [sym_declaration] = STATE(1014), - [sym_type_definition] = STATE(1014), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(1014), + [851] = { + [sym_preproc_include] = STATE(1006), + [sym_preproc_def] = STATE(1006), + [sym_preproc_function_def] = STATE(1006), + [sym_preproc_call] = STATE(1006), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(1004), + [sym_preproc_elif_in_compound_statement] = STATE(1005), + [sym_declaration] = STATE(1006), + [sym_type_definition] = STATE(1006), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(1006), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -33150,59 +32637,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(1014), - [sym_expression_statement] = STATE(1014), - [sym_if_statement] = STATE(1014), - [sym_switch_statement] = STATE(1014), - [sym_case_statement] = STATE(1014), - [sym_while_statement] = STATE(1014), - [sym_do_statement] = STATE(1014), - [sym_for_statement] = STATE(1014), - [sym_return_statement] = STATE(1014), - [sym_break_statement] = STATE(1014), - [sym_continue_statement] = STATE(1014), - [sym_goto_statement] = STATE(1014), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(1014), + [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(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(1006), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1014), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1006), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2751), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2693), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -33218,47 +32705,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [871] = { - [sym_preproc_include] = STATE(1018), - [sym_preproc_def] = STATE(1018), - [sym_preproc_function_def] = STATE(1018), - [sym_preproc_call] = STATE(1018), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(1016), - [sym_preproc_elif_in_compound_statement] = STATE(1017), - [sym_declaration] = STATE(1018), - [sym_type_definition] = STATE(1018), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(1018), + [852] = { + [sym_preproc_include] = STATE(1010), + [sym_preproc_def] = STATE(1010), + [sym_preproc_function_def] = STATE(1010), + [sym_preproc_call] = STATE(1010), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(1008), + [sym_preproc_elif_in_compound_statement] = STATE(1009), + [sym_declaration] = STATE(1010), + [sym_type_definition] = STATE(1010), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(1010), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -33266,59 +32753,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [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(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(1018), + [sym_labeled_statement] = STATE(1010), + [sym_expression_statement] = STATE(1010), + [sym_if_statement] = STATE(1010), + [sym_switch_statement] = STATE(1010), + [sym_case_statement] = STATE(1010), + [sym_while_statement] = STATE(1010), + [sym_do_statement] = STATE(1010), + [sym_for_statement] = STATE(1010), + [sym_return_statement] = STATE(1010), + [sym_break_statement] = STATE(1010), + [sym_continue_statement] = STATE(1010), + [sym_goto_statement] = STATE(1010), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(1010), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1018), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1010), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2753), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2695), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -33334,254 +32821,257 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [872] = { - [sym_preproc_arg] = ACTIONS(2755), + [853] = { + [sym_preproc_arg] = ACTIONS(2697), [sym_comment] = ACTIONS(49), }, - [873] = { - [sym_identifier] = ACTIONS(2757), + [854] = { + [sym_identifier] = ACTIONS(2699), [sym_comment] = ACTIONS(39), }, - [874] = { - [sym_identifier] = ACTIONS(2759), + [855] = { + [sym_identifier] = ACTIONS(2701), [sym_comment] = ACTIONS(39), }, - [875] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1000), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1000), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1000), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1000), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1000), - [sym_preproc_directive] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_typedef] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_STAR] = ACTIONS(1002), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_auto] = ACTIONS(1000), - [anon_sym_register] = ACTIONS(1000), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_restrict] = ACTIONS(1000), - [anon_sym_volatile] = ACTIONS(1000), - [anon_sym__Atomic] = ACTIONS(1000), - [anon_sym_unsigned] = ACTIONS(1000), - [anon_sym_long] = ACTIONS(1000), - [anon_sym_short] = ACTIONS(1000), - [sym_primitive_type] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_else] = ACTIONS(1000), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_do] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1000), - [sym_number_literal] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1002), - [anon_sym_DQUOTE] = ACTIONS(1002), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_null] = ACTIONS(1000), - [sym_identifier] = ACTIONS(1000), + [856] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(962), + [sym_preproc_directive] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_typedef] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_static] = ACTIONS(962), + [anon_sym_auto] = ACTIONS(962), + [anon_sym_register] = ACTIONS(962), + [anon_sym_inline] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [anon_sym_restrict] = ACTIONS(962), + [anon_sym_volatile] = ACTIONS(962), + [anon_sym__Atomic] = ACTIONS(962), + [anon_sym_unsigned] = ACTIONS(962), + [anon_sym_long] = ACTIONS(962), + [anon_sym_short] = ACTIONS(962), + [sym_primitive_type] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(962), + [anon_sym_struct] = ACTIONS(962), + [anon_sym_union] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_switch] = ACTIONS(962), + [anon_sym_case] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_goto] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_PLUS_PLUS] = ACTIONS(964), + [anon_sym_sizeof] = ACTIONS(962), + [sym_number_literal] = ACTIONS(964), + [anon_sym_SQUOTE] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym_true] = ACTIONS(962), + [sym_false] = ACTIONS(962), + [sym_null] = ACTIONS(962), + [sym_identifier] = ACTIONS(962), [sym_comment] = ACTIONS(39), }, - [876] = { - [anon_sym_LPAREN] = ACTIONS(2761), + [857] = { + [sym_parenthesized_expression] = STATE(1014), + [anon_sym_LPAREN2] = ACTIONS(994), [sym_comment] = ACTIONS(39), }, - [877] = { - [anon_sym_LPAREN] = ACTIONS(2763), + [858] = { + [sym_parenthesized_expression] = STATE(1015), + [anon_sym_LPAREN2] = ACTIONS(994), [sym_comment] = ACTIONS(39), }, - [878] = { - [sym__expression] = STATE(1024), - [sym_conditional_expression] = STATE(1024), - [sym_assignment_expression] = STATE(1024), - [sym_pointer_expression] = STATE(1024), - [sym_logical_expression] = STATE(1024), - [sym_bitwise_expression] = STATE(1024), - [sym_equality_expression] = STATE(1024), - [sym_relational_expression] = STATE(1024), - [sym_shift_expression] = STATE(1024), - [sym_math_expression] = STATE(1024), - [sym_cast_expression] = STATE(1024), - [sym_sizeof_expression] = STATE(1024), - [sym_subscript_expression] = STATE(1024), - [sym_call_expression] = STATE(1024), - [sym_field_expression] = STATE(1024), - [sym_compound_literal_expression] = STATE(1024), - [sym_parenthesized_expression] = STATE(1024), - [sym_char_literal] = STATE(1024), - [sym_concatenated_string] = STATE(1024), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2765), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2767), - [sym_false] = ACTIONS(2767), - [sym_null] = ACTIONS(2767), - [sym_identifier] = ACTIONS(2767), + [859] = { + [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(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2705), + [sym_false] = ACTIONS(2705), + [sym_null] = ACTIONS(2705), + [sym_identifier] = ACTIONS(2705), [sym_comment] = ACTIONS(39), }, - [879] = { - [anon_sym_COLON] = ACTIONS(2769), + [860] = { + [anon_sym_COLON] = ACTIONS(2707), [sym_comment] = ACTIONS(39), }, - [880] = { - [anon_sym_LPAREN] = ACTIONS(2771), + [861] = { + [sym_parenthesized_expression] = STATE(1018), + [anon_sym_LPAREN2] = ACTIONS(994), [sym_comment] = ACTIONS(39), }, - [881] = { - [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(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1050), + [862] = { + [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(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1030), [sym_comment] = ACTIONS(39), }, - [882] = { - [anon_sym_LPAREN] = ACTIONS(2773), + [863] = { + [anon_sym_LPAREN2] = ACTIONS(2709), [sym_comment] = ACTIONS(39), }, - [883] = { - [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(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(2775), + [864] = { + [sym__expression] = STATE(1022), + [sym_conditional_expression] = STATE(1022), + [sym_assignment_expression] = STATE(1022), + [sym_pointer_expression] = STATE(1022), + [sym_logical_expression] = STATE(1022), + [sym_bitwise_expression] = STATE(1022), + [sym_equality_expression] = STATE(1022), + [sym_relational_expression] = STATE(1022), + [sym_shift_expression] = STATE(1022), + [sym_math_expression] = STATE(1022), + [sym_cast_expression] = STATE(1022), + [sym_sizeof_expression] = STATE(1022), + [sym_subscript_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_field_expression] = STATE(1022), + [sym_compound_literal_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_char_literal] = STATE(1022), + [sym_concatenated_string] = STATE(1022), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -33591,262 +33081,262 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2777), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2713), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2779), - [sym_false] = ACTIONS(2779), - [sym_null] = ACTIONS(2779), - [sym_identifier] = ACTIONS(2779), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_null] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2715), [sym_comment] = ACTIONS(39), }, - [884] = { - [anon_sym_SEMI] = ACTIONS(2781), + [865] = { + [anon_sym_SEMI] = ACTIONS(2717), [sym_comment] = ACTIONS(39), }, - [885] = { - [anon_sym_SEMI] = ACTIONS(2783), + [866] = { + [anon_sym_SEMI] = ACTIONS(2719), [sym_comment] = ACTIONS(39), }, - [886] = { - [sym_identifier] = ACTIONS(2785), + [867] = { + [sym_identifier] = ACTIONS(2721), [sym_comment] = ACTIONS(39), }, - [887] = { - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2787), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), - [sym_identifier] = ACTIONS(86), + [868] = { + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_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_COLON] = ACTIONS(2723), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, - [888] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1102), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1104), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1102), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1102), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1102), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1102), - [sym_preproc_directive] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1104), - [anon_sym_typedef] = ACTIONS(1102), - [anon_sym_extern] = ACTIONS(1102), - [anon_sym_LBRACE] = ACTIONS(1104), - [anon_sym_STAR] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1102), - [anon_sym_auto] = ACTIONS(1102), - [anon_sym_register] = ACTIONS(1102), - [anon_sym_inline] = ACTIONS(1102), - [anon_sym_const] = ACTIONS(1102), - [anon_sym_restrict] = ACTIONS(1102), - [anon_sym_volatile] = ACTIONS(1102), - [anon_sym__Atomic] = ACTIONS(1102), - [anon_sym_unsigned] = ACTIONS(1102), - [anon_sym_long] = ACTIONS(1102), - [anon_sym_short] = ACTIONS(1102), - [sym_primitive_type] = ACTIONS(1102), - [anon_sym_enum] = ACTIONS(1102), - [anon_sym_struct] = ACTIONS(1102), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_switch] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_default] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_do] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_return] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1102), - [anon_sym_goto] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1104), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_TILDE] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1102), - [anon_sym_DASH] = ACTIONS(1102), - [anon_sym_DASH_DASH] = ACTIONS(1104), - [anon_sym_PLUS_PLUS] = ACTIONS(1104), - [anon_sym_sizeof] = ACTIONS(1102), - [sym_number_literal] = ACTIONS(1104), - [anon_sym_SQUOTE] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1104), - [sym_true] = ACTIONS(1102), - [sym_false] = ACTIONS(1102), - [sym_null] = ACTIONS(1102), - [sym_identifier] = ACTIONS(1102), + [869] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1082), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1082), + [sym_preproc_directive] = ACTIONS(1082), + [anon_sym_SEMI] = ACTIONS(1084), + [anon_sym_typedef] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_LBRACE] = ACTIONS(1084), + [anon_sym_LPAREN2] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1082), + [anon_sym_auto] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_inline] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_restrict] = ACTIONS(1082), + [anon_sym_volatile] = ACTIONS(1082), + [anon_sym__Atomic] = ACTIONS(1082), + [anon_sym_unsigned] = ACTIONS(1082), + [anon_sym_long] = ACTIONS(1082), + [anon_sym_short] = ACTIONS(1082), + [sym_primitive_type] = ACTIONS(1082), + [anon_sym_enum] = ACTIONS(1082), + [anon_sym_struct] = ACTIONS(1082), + [anon_sym_union] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_switch] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_default] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_goto] = ACTIONS(1082), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_TILDE] = ACTIONS(1084), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_DASH_DASH] = ACTIONS(1084), + [anon_sym_PLUS_PLUS] = ACTIONS(1084), + [anon_sym_sizeof] = ACTIONS(1082), + [sym_number_literal] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1084), + [sym_true] = ACTIONS(1082), + [sym_false] = ACTIONS(1082), + [sym_null] = ACTIONS(1082), + [sym_identifier] = ACTIONS(1082), [sym_comment] = ACTIONS(39), }, - [889] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1106), - [sym_preproc_directive] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_typedef] = ACTIONS(1106), - [anon_sym_extern] = ACTIONS(1106), - [anon_sym_LBRACE] = ACTIONS(1108), - [anon_sym_STAR] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_auto] = ACTIONS(1106), - [anon_sym_register] = ACTIONS(1106), - [anon_sym_inline] = ACTIONS(1106), - [anon_sym_const] = ACTIONS(1106), - [anon_sym_restrict] = ACTIONS(1106), - [anon_sym_volatile] = ACTIONS(1106), - [anon_sym__Atomic] = ACTIONS(1106), - [anon_sym_unsigned] = ACTIONS(1106), - [anon_sym_long] = ACTIONS(1106), - [anon_sym_short] = ACTIONS(1106), - [sym_primitive_type] = ACTIONS(1106), - [anon_sym_enum] = ACTIONS(1106), - [anon_sym_struct] = ACTIONS(1106), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1106), - [anon_sym_switch] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1106), - [anon_sym_default] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1106), - [anon_sym_do] = ACTIONS(1106), - [anon_sym_for] = ACTIONS(1106), - [anon_sym_return] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1106), - [anon_sym_continue] = ACTIONS(1106), - [anon_sym_goto] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_TILDE] = ACTIONS(1108), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_sizeof] = ACTIONS(1106), - [sym_number_literal] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym_true] = ACTIONS(1106), - [sym_false] = ACTIONS(1106), - [sym_null] = ACTIONS(1106), - [sym_identifier] = ACTIONS(1106), + [870] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_typedef] = ACTIONS(1086), + [anon_sym_extern] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_LPAREN2] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1088), + [anon_sym_static] = ACTIONS(1086), + [anon_sym_auto] = ACTIONS(1086), + [anon_sym_register] = ACTIONS(1086), + [anon_sym_inline] = ACTIONS(1086), + [anon_sym_const] = ACTIONS(1086), + [anon_sym_restrict] = ACTIONS(1086), + [anon_sym_volatile] = ACTIONS(1086), + [anon_sym__Atomic] = ACTIONS(1086), + [anon_sym_unsigned] = ACTIONS(1086), + [anon_sym_long] = ACTIONS(1086), + [anon_sym_short] = ACTIONS(1086), + [sym_primitive_type] = ACTIONS(1086), + [anon_sym_enum] = ACTIONS(1086), + [anon_sym_struct] = ACTIONS(1086), + [anon_sym_union] = ACTIONS(1086), + [anon_sym_if] = ACTIONS(1086), + [anon_sym_switch] = ACTIONS(1086), + [anon_sym_case] = ACTIONS(1086), + [anon_sym_default] = ACTIONS(1086), + [anon_sym_while] = ACTIONS(1086), + [anon_sym_do] = ACTIONS(1086), + [anon_sym_for] = ACTIONS(1086), + [anon_sym_return] = ACTIONS(1086), + [anon_sym_break] = ACTIONS(1086), + [anon_sym_continue] = ACTIONS(1086), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_TILDE] = ACTIONS(1088), + [anon_sym_PLUS] = ACTIONS(1086), + [anon_sym_DASH] = ACTIONS(1086), + [anon_sym_DASH_DASH] = ACTIONS(1088), + [anon_sym_PLUS_PLUS] = ACTIONS(1088), + [anon_sym_sizeof] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1088), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym_true] = ACTIONS(1086), + [sym_false] = ACTIONS(1086), + [sym_null] = ACTIONS(1086), + [sym_identifier] = ACTIONS(1086), [sym_comment] = ACTIONS(39), }, - [890] = { - [sym__declarator] = STATE(1035), - [sym_pointer_declarator] = STATE(1035), - [sym_function_declarator] = STATE(1035), - [sym_array_declarator] = STATE(1035), - [sym_init_declarator] = STATE(313), - [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_SEMI] = ACTIONS(710), - [anon_sym_STAR] = ACTIONS(540), - [sym_identifier] = ACTIONS(2789), + [871] = { + [sym__declarator] = STATE(1027), + [sym_pointer_declarator] = STATE(1027), + [sym_function_declarator] = STATE(1027), + [sym_array_declarator] = STATE(1027), + [sym_init_declarator] = STATE(311), + [anon_sym_SEMI] = ACTIONS(714), + [anon_sym_LPAREN2] = ACTIONS(92), + [anon_sym_STAR] = ACTIONS(534), + [sym_identifier] = ACTIONS(2725), [sym_comment] = ACTIONS(39), }, - [891] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [872] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(1104), + [anon_sym_STAR_EQ] = ACTIONS(1106), + [anon_sym_SLASH_EQ] = ACTIONS(1106), + [anon_sym_PERCENT_EQ] = ACTIONS(1106), + [anon_sym_PLUS_EQ] = ACTIONS(1106), + [anon_sym_DASH_EQ] = ACTIONS(1106), + [anon_sym_LT_LT_EQ] = ACTIONS(1106), + [anon_sym_GT_GT_EQ] = ACTIONS(1106), + [anon_sym_AMP_EQ] = ACTIONS(1106), + [anon_sym_CARET_EQ] = ACTIONS(1106), + [anon_sym_PIPE_EQ] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_PIPE_PIPE] = ACTIONS(1110), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1114), + [anon_sym_CARET] = ACTIONS(1116), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [892] = { - [anon_sym_SEMI] = ACTIONS(2791), + [873] = { + [anon_sym_SEMI] = ACTIONS(2727), [sym_comment] = ACTIONS(39), }, - [893] = { - [sym_preproc_include] = STATE(1037), - [sym_preproc_def] = STATE(1037), - [sym_preproc_function_def] = STATE(1037), - [sym_preproc_call] = STATE(1037), - [sym_preproc_if_in_compound_statement] = STATE(888), - [sym_preproc_ifdef_in_compound_statement] = STATE(889), - [sym_declaration] = STATE(1037), - [sym_type_definition] = STATE(1037), - [sym__declaration_specifiers] = STATE(890), - [sym_compound_statement] = STATE(1037), + [874] = { + [sym_preproc_include] = STATE(1029), + [sym_preproc_def] = STATE(1029), + [sym_preproc_function_def] = STATE(1029), + [sym_preproc_call] = STATE(1029), + [sym_preproc_if_in_compound_statement] = STATE(869), + [sym_preproc_ifdef_in_compound_statement] = STATE(870), + [sym_declaration] = STATE(1029), + [sym_type_definition] = STATE(1029), + [sym__declaration_specifiers] = STATE(871), + [sym_compound_statement] = STATE(1029), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -33854,57 +33344,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(1037), - [sym_expression_statement] = STATE(1037), - [sym_if_statement] = STATE(1037), - [sym_switch_statement] = STATE(1037), - [sym_case_statement] = STATE(1037), - [sym_while_statement] = STATE(1037), - [sym_do_statement] = STATE(1037), - [sym_for_statement] = STATE(1037), - [sym_return_statement] = STATE(1037), - [sym_break_statement] = STATE(1037), - [sym_continue_statement] = STATE(1037), - [sym_goto_statement] = STATE(1037), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [sym__empty_declaration] = STATE(1037), + [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(872), + [sym_comma_expression] = STATE(873), + [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(253), + [sym__empty_declaration] = STATE(1029), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1037), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1029), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(366), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2344), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2350), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2246), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2729), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2250), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2252), [sym_preproc_directive] = ACTIONS(378), - [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2254), [anon_sym_typedef] = ACTIONS(380), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -33920,47 +33410,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(2380), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(2282), [sym_comment] = ACTIONS(39), }, - [894] = { - [sym_preproc_include] = STATE(1040), - [sym_preproc_def] = STATE(1040), - [sym_preproc_function_def] = STATE(1040), - [sym_preproc_call] = STATE(1040), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(1038), - [sym_preproc_elif_in_compound_statement] = STATE(1039), - [sym_declaration] = STATE(1040), - [sym_type_definition] = STATE(1040), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(1040), + [875] = { + [sym_preproc_include] = STATE(1032), + [sym_preproc_def] = STATE(1032), + [sym_preproc_function_def] = STATE(1032), + [sym_preproc_call] = STATE(1032), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(1030), + [sym_preproc_elif_in_compound_statement] = STATE(1031), + [sym_declaration] = STATE(1032), + [sym_type_definition] = STATE(1032), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(1032), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -33968,59 +33458,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(1040), - [sym_expression_statement] = STATE(1040), - [sym_if_statement] = STATE(1040), - [sym_switch_statement] = STATE(1040), - [sym_case_statement] = STATE(1040), - [sym_while_statement] = STATE(1040), - [sym_do_statement] = STATE(1040), - [sym_for_statement] = STATE(1040), - [sym_return_statement] = STATE(1040), - [sym_break_statement] = STATE(1040), - [sym_continue_statement] = STATE(1040), - [sym_goto_statement] = STATE(1040), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(1040), + [sym_labeled_statement] = STATE(1032), + [sym_expression_statement] = STATE(1032), + [sym_if_statement] = STATE(1032), + [sym_switch_statement] = STATE(1032), + [sym_case_statement] = STATE(1032), + [sym_while_statement] = STATE(1032), + [sym_do_statement] = STATE(1032), + [sym_for_statement] = STATE(1032), + [sym_return_statement] = STATE(1032), + [sym_break_statement] = STATE(1032), + [sym_continue_statement] = STATE(1032), + [sym_goto_statement] = STATE(1032), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(1032), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1040), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1032), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2795), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2731), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -34036,156 +33526,210 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [895] = { - [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(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2797), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2799), - [sym_false] = ACTIONS(2799), - [sym_null] = ACTIONS(2799), - [sym_identifier] = ACTIONS(2799), + [876] = { + [sym_compound_statement] = STATE(1040), + [sym_labeled_statement] = STATE(1040), + [sym_expression_statement] = STATE(1040), + [sym_if_statement] = STATE(1040), + [sym_switch_statement] = STATE(1040), + [sym_case_statement] = STATE(1040), + [sym_while_statement] = STATE(1040), + [sym_do_statement] = STATE(1040), + [sym_for_statement] = STATE(1040), + [sym_return_statement] = STATE(1040), + [sym_break_statement] = STATE(1040), + [sym_continue_statement] = STATE(1040), + [sym_goto_statement] = STATE(1040), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2745), [sym_comment] = ACTIONS(39), }, - [896] = { - [sym__expression] = STATE(1042), - [sym_conditional_expression] = STATE(1042), - [sym_assignment_expression] = STATE(1042), - [sym_pointer_expression] = STATE(1042), - [sym_logical_expression] = STATE(1042), - [sym_bitwise_expression] = STATE(1042), - [sym_equality_expression] = STATE(1042), - [sym_relational_expression] = STATE(1042), - [sym_shift_expression] = STATE(1042), - [sym_math_expression] = STATE(1042), - [sym_cast_expression] = STATE(1042), - [sym_sizeof_expression] = STATE(1042), - [sym_subscript_expression] = STATE(1042), - [sym_call_expression] = STATE(1042), - [sym_field_expression] = STATE(1042), - [sym_compound_literal_expression] = STATE(1042), - [sym_parenthesized_expression] = STATE(1042), - [sym_char_literal] = STATE(1042), - [sym_concatenated_string] = STATE(1042), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2803), - [sym_false] = ACTIONS(2803), - [sym_null] = ACTIONS(2803), - [sym_identifier] = ACTIONS(2803), + [877] = { + [sym_compound_statement] = STATE(1042), + [sym_labeled_statement] = STATE(1042), + [sym_expression_statement] = STATE(1042), + [sym_if_statement] = STATE(1042), + [sym_switch_statement] = STATE(1042), + [sym_case_statement] = STATE(1042), + [sym_while_statement] = STATE(1042), + [sym_do_statement] = STATE(1042), + [sym_for_statement] = STATE(1042), + [sym_return_statement] = STATE(1042), + [sym_break_statement] = STATE(1042), + [sym_continue_statement] = STATE(1042), + [sym_goto_statement] = STATE(1042), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2747), [sym_comment] = ACTIONS(39), }, - [897] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(2805), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [878] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(2749), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [898] = { + [879] = { [sym_declaration] = STATE(1045), [sym_type_definition] = STATE(1045), [sym__declaration_specifiers] = STATE(1046), @@ -34209,36 +33753,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(1045), [sym_continue_statement] = STATE(1045), [sym_goto_statement] = STATE(1045), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -34254,81 +33798,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2751), [sym_comment] = ACTIONS(39), }, - [899] = { - [sym__expression] = STATE(1047), - [sym_conditional_expression] = STATE(1047), - [sym_assignment_expression] = STATE(1047), - [sym_pointer_expression] = STATE(1047), - [sym_logical_expression] = STATE(1047), - [sym_bitwise_expression] = STATE(1047), - [sym_equality_expression] = STATE(1047), - [sym_relational_expression] = STATE(1047), - [sym_shift_expression] = STATE(1047), - [sym_math_expression] = STATE(1047), - [sym_cast_expression] = STATE(1047), - [sym_sizeof_expression] = STATE(1047), - [sym_subscript_expression] = STATE(1047), - [sym_call_expression] = STATE(1047), - [sym_field_expression] = STATE(1047), - [sym_compound_literal_expression] = STATE(1047), - [sym_parenthesized_expression] = STATE(1047), - [sym_char_literal] = STATE(1047), - [sym_concatenated_string] = STATE(1047), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2809), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2811), - [sym_false] = ACTIONS(2811), - [sym_null] = ACTIONS(2811), - [sym_identifier] = ACTIONS(2811), + [880] = { + [sym_compound_statement] = STATE(1047), + [sym_labeled_statement] = STATE(1047), + [sym_expression_statement] = STATE(1047), + [sym_if_statement] = STATE(1047), + [sym_switch_statement] = STATE(1047), + [sym_case_statement] = STATE(1047), + [sym_while_statement] = STATE(1047), + [sym_do_statement] = STATE(1047), + [sym_for_statement] = STATE(1047), + [sym_return_statement] = STATE(1047), + [sym_break_statement] = STATE(1047), + [sym_continue_statement] = STATE(1047), + [sym_goto_statement] = STATE(1047), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2747), [sym_comment] = ACTIONS(39), }, - [900] = { - [anon_sym_while] = ACTIONS(2813), + [881] = { + [anon_sym_while] = ACTIONS(2753), [sym_comment] = ACTIONS(39), }, - [901] = { + [882] = { [sym_declaration] = STATE(1049), - [sym__declaration_specifiers] = STATE(716), + [sym__declaration_specifiers] = STATE(710), [sym_storage_class_specifier] = STATE(96), [sym_type_qualifier] = STATE(96), [sym__type_specifier] = STATE(95), @@ -34355,13 +33926,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1050), [sym_char_literal] = STATE(1050), [sym_concatenated_string] = STATE(1050), - [sym_string_literal] = STATE(378), + [sym_string_literal] = STATE(376), [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2755), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -34386,567 +33957,567 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(2817), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2757), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2819), - [sym_false] = ACTIONS(2819), - [sym_null] = ACTIONS(2819), - [sym_identifier] = ACTIONS(1705), + [sym_true] = ACTIONS(2759), + [sym_false] = ACTIONS(2759), + [sym_null] = ACTIONS(2759), + [sym_identifier] = ACTIONS(1670), [sym_comment] = ACTIONS(39), }, - [902] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1709), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1707), - [sym_preproc_directive] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_auto] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_case] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_goto] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1709), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_sizeof] = ACTIONS(1707), - [sym_number_literal] = ACTIONS(1709), - [anon_sym_SQUOTE] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1707), + [883] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1672), + [sym_preproc_directive] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_else] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1672), [sym_comment] = ACTIONS(39), }, - [903] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(2821), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [884] = { + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2761), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [904] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1715), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1713), - [sym_preproc_directive] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_typedef] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1713), - [anon_sym_auto] = ACTIONS(1713), - [anon_sym_register] = ACTIONS(1713), - [anon_sym_inline] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_restrict] = ACTIONS(1713), - [anon_sym_volatile] = ACTIONS(1713), - [anon_sym__Atomic] = ACTIONS(1713), - [anon_sym_unsigned] = ACTIONS(1713), - [anon_sym_long] = ACTIONS(1713), - [anon_sym_short] = ACTIONS(1713), - [sym_primitive_type] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_else] = ACTIONS(1713), - [anon_sym_switch] = ACTIONS(1713), - [anon_sym_case] = ACTIONS(1713), - [anon_sym_default] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_do] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_goto] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1713), - [sym_number_literal] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym_true] = ACTIONS(1713), - [sym_false] = ACTIONS(1713), - [sym_null] = ACTIONS(1713), - [sym_identifier] = ACTIONS(1713), + [885] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1678), + [sym_preproc_directive] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_typedef] = ACTIONS(1678), + [anon_sym_extern] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_LPAREN2] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_static] = ACTIONS(1678), + [anon_sym_auto] = ACTIONS(1678), + [anon_sym_register] = ACTIONS(1678), + [anon_sym_inline] = ACTIONS(1678), + [anon_sym_const] = ACTIONS(1678), + [anon_sym_restrict] = ACTIONS(1678), + [anon_sym_volatile] = ACTIONS(1678), + [anon_sym__Atomic] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), + [sym_primitive_type] = ACTIONS(1678), + [anon_sym_enum] = ACTIONS(1678), + [anon_sym_struct] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_else] = ACTIONS(1678), + [anon_sym_switch] = ACTIONS(1678), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1678), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1678), + [anon_sym_break] = ACTIONS(1678), + [anon_sym_continue] = ACTIONS(1678), + [anon_sym_goto] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_TILDE] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_DASH_DASH] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_number_literal] = ACTIONS(1680), + [anon_sym_SQUOTE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1680), + [sym_true] = ACTIONS(1678), + [sym_false] = ACTIONS(1678), + [sym_null] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1678), [sym_comment] = ACTIONS(39), }, - [905] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1719), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1717), - [sym_preproc_directive] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_typedef] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_static] = ACTIONS(1717), - [anon_sym_auto] = ACTIONS(1717), - [anon_sym_register] = ACTIONS(1717), - [anon_sym_inline] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_restrict] = ACTIONS(1717), - [anon_sym_volatile] = ACTIONS(1717), - [anon_sym__Atomic] = ACTIONS(1717), - [anon_sym_unsigned] = ACTIONS(1717), - [anon_sym_long] = ACTIONS(1717), - [anon_sym_short] = ACTIONS(1717), - [sym_primitive_type] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_union] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_switch] = ACTIONS(1717), - [anon_sym_case] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_goto] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1719), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1719), - [anon_sym_SQUOTE] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym_true] = ACTIONS(1717), - [sym_false] = ACTIONS(1717), - [sym_null] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1717), + [886] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1682), + [sym_preproc_directive] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_typedef] = ACTIONS(1682), + [anon_sym_extern] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_LPAREN2] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_static] = ACTIONS(1682), + [anon_sym_auto] = ACTIONS(1682), + [anon_sym_register] = ACTIONS(1682), + [anon_sym_inline] = ACTIONS(1682), + [anon_sym_const] = ACTIONS(1682), + [anon_sym_restrict] = ACTIONS(1682), + [anon_sym_volatile] = ACTIONS(1682), + [anon_sym__Atomic] = ACTIONS(1682), + [anon_sym_unsigned] = ACTIONS(1682), + [anon_sym_long] = ACTIONS(1682), + [anon_sym_short] = ACTIONS(1682), + [sym_primitive_type] = ACTIONS(1682), + [anon_sym_enum] = ACTIONS(1682), + [anon_sym_struct] = ACTIONS(1682), + [anon_sym_union] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_switch] = ACTIONS(1682), + [anon_sym_case] = ACTIONS(1682), + [anon_sym_default] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_do] = ACTIONS(1682), + [anon_sym_for] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_goto] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_TILDE] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_sizeof] = ACTIONS(1682), + [sym_number_literal] = ACTIONS(1684), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE] = ACTIONS(1684), + [sym_true] = ACTIONS(1682), + [sym_false] = ACTIONS(1682), + [sym_null] = ACTIONS(1682), + [sym_identifier] = ACTIONS(1682), [sym_comment] = ACTIONS(39), }, - [906] = { - [anon_sym_SEMI] = ACTIONS(2823), + [887] = { + [anon_sym_SEMI] = ACTIONS(2763), [sym_comment] = ACTIONS(39), }, - [907] = { - [sym_compound_statement] = STATE(1054), - [sym_labeled_statement] = STATE(1054), - [sym_expression_statement] = STATE(1054), - [sym_if_statement] = STATE(1054), - [sym_switch_statement] = STATE(1054), - [sym_case_statement] = STATE(1054), - [sym_while_statement] = STATE(1054), - [sym_do_statement] = STATE(1054), - [sym_for_statement] = STATE(1054), - [sym_return_statement] = STATE(1054), - [sym_break_statement] = STATE(1054), - [sym_continue_statement] = STATE(1054), - [sym_goto_statement] = STATE(1054), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(2825), + [888] = { + [sym_compound_statement] = STATE(1053), + [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(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2747), [sym_comment] = ACTIONS(39), }, - [908] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2827), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2829), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2827), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2827), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2827), - [sym_preproc_directive] = ACTIONS(2827), - [anon_sym_SEMI] = ACTIONS(2829), - [anon_sym_typedef] = ACTIONS(2827), - [anon_sym_extern] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2829), - [anon_sym_RBRACE] = ACTIONS(2829), - [anon_sym_STAR] = ACTIONS(2829), - [anon_sym_static] = ACTIONS(2827), - [anon_sym_auto] = ACTIONS(2827), - [anon_sym_register] = ACTIONS(2827), - [anon_sym_inline] = ACTIONS(2827), - [anon_sym_const] = ACTIONS(2827), - [anon_sym_restrict] = ACTIONS(2827), - [anon_sym_volatile] = ACTIONS(2827), - [anon_sym__Atomic] = ACTIONS(2827), - [anon_sym_unsigned] = ACTIONS(2827), - [anon_sym_long] = ACTIONS(2827), - [anon_sym_short] = ACTIONS(2827), - [sym_primitive_type] = ACTIONS(2827), - [anon_sym_enum] = ACTIONS(2827), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2827), - [anon_sym_if] = ACTIONS(2827), - [anon_sym_switch] = ACTIONS(2827), - [anon_sym_case] = ACTIONS(2827), - [anon_sym_default] = ACTIONS(2827), - [anon_sym_while] = ACTIONS(2827), - [anon_sym_do] = ACTIONS(2827), - [anon_sym_for] = ACTIONS(2827), - [anon_sym_return] = ACTIONS(2827), - [anon_sym_break] = ACTIONS(2827), - [anon_sym_continue] = ACTIONS(2827), - [anon_sym_goto] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2829), - [anon_sym_BANG] = ACTIONS(2829), - [anon_sym_TILDE] = ACTIONS(2829), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_DASH_DASH] = ACTIONS(2829), - [anon_sym_PLUS_PLUS] = ACTIONS(2829), - [anon_sym_sizeof] = ACTIONS(2827), - [sym_number_literal] = ACTIONS(2829), - [anon_sym_SQUOTE] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(2829), - [sym_true] = ACTIONS(2827), - [sym_false] = ACTIONS(2827), - [sym_null] = ACTIONS(2827), - [sym_identifier] = ACTIONS(2827), + [889] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2765), + [sym_preproc_directive] = ACTIONS(2765), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_typedef] = ACTIONS(2765), + [anon_sym_extern] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_RBRACE] = ACTIONS(2767), + [anon_sym_LPAREN2] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_auto] = ACTIONS(2765), + [anon_sym_register] = ACTIONS(2765), + [anon_sym_inline] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_restrict] = ACTIONS(2765), + [anon_sym_volatile] = ACTIONS(2765), + [anon_sym__Atomic] = ACTIONS(2765), + [anon_sym_unsigned] = ACTIONS(2765), + [anon_sym_long] = ACTIONS(2765), + [anon_sym_short] = ACTIONS(2765), + [sym_primitive_type] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_union] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_switch] = ACTIONS(2765), + [anon_sym_case] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_goto] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(2765), + [sym_number_literal] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_null] = ACTIONS(2765), + [sym_identifier] = ACTIONS(2765), [sym_comment] = ACTIONS(39), }, - [909] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2833), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2831), - [sym_preproc_directive] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2833), - [anon_sym_typedef] = ACTIONS(2831), - [anon_sym_extern] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2833), - [anon_sym_RBRACE] = ACTIONS(2833), - [anon_sym_STAR] = ACTIONS(2833), - [anon_sym_static] = ACTIONS(2831), - [anon_sym_auto] = ACTIONS(2831), - [anon_sym_register] = ACTIONS(2831), - [anon_sym_inline] = ACTIONS(2831), - [anon_sym_const] = ACTIONS(2831), - [anon_sym_restrict] = ACTIONS(2831), - [anon_sym_volatile] = ACTIONS(2831), - [anon_sym__Atomic] = ACTIONS(2831), - [anon_sym_unsigned] = ACTIONS(2831), - [anon_sym_long] = ACTIONS(2831), - [anon_sym_short] = ACTIONS(2831), - [sym_primitive_type] = ACTIONS(2831), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_union] = ACTIONS(2831), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_switch] = ACTIONS(2831), - [anon_sym_case] = ACTIONS(2831), - [anon_sym_default] = ACTIONS(2831), - [anon_sym_while] = ACTIONS(2831), - [anon_sym_do] = ACTIONS(2831), - [anon_sym_for] = ACTIONS(2831), - [anon_sym_return] = ACTIONS(2831), - [anon_sym_break] = ACTIONS(2831), - [anon_sym_continue] = ACTIONS(2831), - [anon_sym_goto] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2833), - [anon_sym_TILDE] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_DASH_DASH] = ACTIONS(2833), - [anon_sym_PLUS_PLUS] = ACTIONS(2833), - [anon_sym_sizeof] = ACTIONS(2831), - [sym_number_literal] = ACTIONS(2833), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [sym_null] = ACTIONS(2831), - [sym_identifier] = ACTIONS(2831), + [890] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2769), + [sym_preproc_directive] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_RBRACE] = ACTIONS(2771), + [anon_sym_LPAREN2] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_auto] = ACTIONS(2769), + [anon_sym_register] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_restrict] = ACTIONS(2769), + [anon_sym_volatile] = ACTIONS(2769), + [anon_sym__Atomic] = ACTIONS(2769), + [anon_sym_unsigned] = ACTIONS(2769), + [anon_sym_long] = ACTIONS(2769), + [anon_sym_short] = ACTIONS(2769), + [sym_primitive_type] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2769), + [anon_sym_union] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_switch] = ACTIONS(2769), + [anon_sym_case] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_goto] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_sizeof] = ACTIONS(2769), + [sym_number_literal] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_null] = ACTIONS(2769), + [sym_identifier] = ACTIONS(2769), [sym_comment] = ACTIONS(39), }, - [910] = { + [891] = { [sym_parameter_list] = STATE(131), - [aux_sym_declaration_repeat1] = STATE(326), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(728), + [aux_sym_declaration_repeat1] = STATE(324), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(245), [anon_sym_EQ] = ACTIONS(247), [sym_comment] = ACTIONS(39), }, - [911] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1753), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1755), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1753), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1753), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1753), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1753), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1753), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1753), - [sym_preproc_directive] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_typedef] = ACTIONS(1753), - [anon_sym_extern] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_auto] = ACTIONS(1753), - [anon_sym_register] = ACTIONS(1753), - [anon_sym_inline] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_restrict] = ACTIONS(1753), - [anon_sym_volatile] = ACTIONS(1753), - [anon_sym__Atomic] = ACTIONS(1753), - [anon_sym_unsigned] = ACTIONS(1753), - [anon_sym_long] = ACTIONS(1753), - [anon_sym_short] = ACTIONS(1753), - [sym_primitive_type] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_struct] = ACTIONS(1753), - [anon_sym_union] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_else] = ACTIONS(1753), - [anon_sym_switch] = ACTIONS(1753), - [anon_sym_case] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_do] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_goto] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1755), - [anon_sym_TILDE] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1755), - [anon_sym_PLUS_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1753), - [sym_number_literal] = ACTIONS(1755), - [anon_sym_SQUOTE] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [sym_null] = ACTIONS(1753), - [sym_identifier] = ACTIONS(1753), + [892] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1710), + [sym_preproc_directive] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_typedef] = ACTIONS(1710), + [anon_sym_extern] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1712), + [anon_sym_LPAREN2] = ACTIONS(1712), + [anon_sym_STAR] = ACTIONS(1712), + [anon_sym_static] = ACTIONS(1710), + [anon_sym_auto] = ACTIONS(1710), + [anon_sym_register] = ACTIONS(1710), + [anon_sym_inline] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1710), + [anon_sym_restrict] = ACTIONS(1710), + [anon_sym_volatile] = ACTIONS(1710), + [anon_sym__Atomic] = ACTIONS(1710), + [anon_sym_unsigned] = ACTIONS(1710), + [anon_sym_long] = ACTIONS(1710), + [anon_sym_short] = ACTIONS(1710), + [sym_primitive_type] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1710), + [anon_sym_struct] = ACTIONS(1710), + [anon_sym_union] = ACTIONS(1710), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1710), + [anon_sym_case] = ACTIONS(1710), + [anon_sym_default] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1710), + [anon_sym_do] = ACTIONS(1710), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(1710), + [anon_sym_break] = ACTIONS(1710), + [anon_sym_continue] = ACTIONS(1710), + [anon_sym_goto] = ACTIONS(1710), + [anon_sym_AMP] = ACTIONS(1712), + [anon_sym_BANG] = ACTIONS(1712), + [anon_sym_TILDE] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1712), + [anon_sym_PLUS_PLUS] = ACTIONS(1712), + [anon_sym_sizeof] = ACTIONS(1710), + [sym_number_literal] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_DQUOTE] = ACTIONS(1712), + [sym_true] = ACTIONS(1710), + [sym_false] = ACTIONS(1710), + [sym_null] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1710), [sym_comment] = ACTIONS(39), }, - [912] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2835), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2837), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2835), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2835), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2835), - [sym_preproc_directive] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_typedef] = ACTIONS(2835), - [anon_sym_extern] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2837), - [anon_sym_static] = ACTIONS(2835), - [anon_sym_auto] = ACTIONS(2835), - [anon_sym_register] = ACTIONS(2835), - [anon_sym_inline] = ACTIONS(2835), - [anon_sym_const] = ACTIONS(2835), - [anon_sym_restrict] = ACTIONS(2835), - [anon_sym_volatile] = ACTIONS(2835), - [anon_sym__Atomic] = ACTIONS(2835), - [anon_sym_unsigned] = ACTIONS(2835), - [anon_sym_long] = ACTIONS(2835), - [anon_sym_short] = ACTIONS(2835), - [sym_primitive_type] = ACTIONS(2835), - [anon_sym_enum] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2835), - [anon_sym_if] = ACTIONS(2835), - [anon_sym_switch] = ACTIONS(2835), - [anon_sym_case] = ACTIONS(2835), - [anon_sym_default] = ACTIONS(2835), - [anon_sym_while] = ACTIONS(2835), - [anon_sym_do] = ACTIONS(2835), - [anon_sym_for] = ACTIONS(2835), - [anon_sym_return] = ACTIONS(2835), - [anon_sym_break] = ACTIONS(2835), - [anon_sym_continue] = ACTIONS(2835), - [anon_sym_goto] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_DASH_DASH] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2837), - [anon_sym_sizeof] = ACTIONS(2835), - [sym_number_literal] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_true] = ACTIONS(2835), - [sym_false] = ACTIONS(2835), - [sym_null] = ACTIONS(2835), - [sym_identifier] = ACTIONS(2835), + [893] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2773), + [sym_preproc_directive] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_RBRACE] = ACTIONS(2775), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_auto] = ACTIONS(2773), + [anon_sym_register] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_restrict] = ACTIONS(2773), + [anon_sym_volatile] = ACTIONS(2773), + [anon_sym__Atomic] = ACTIONS(2773), + [anon_sym_unsigned] = ACTIONS(2773), + [anon_sym_long] = ACTIONS(2773), + [anon_sym_short] = ACTIONS(2773), + [sym_primitive_type] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_goto] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2773), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), + [sym_identifier] = ACTIONS(2773), [sym_comment] = ACTIONS(39), }, - [913] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2839), + [894] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2777), [sym_comment] = ACTIONS(39), }, - [914] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2841), + [895] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2779), [sym_comment] = ACTIONS(39), }, - [915] = { - [sym_preproc_include] = STATE(915), - [sym_preproc_def] = STATE(915), - [sym_preproc_function_def] = STATE(915), - [sym_preproc_call] = STATE(915), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_declaration] = STATE(915), - [sym_type_definition] = STATE(915), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(915), + [896] = { + [sym_preproc_include] = STATE(896), + [sym_preproc_def] = STATE(896), + [sym_preproc_function_def] = STATE(896), + [sym_preproc_call] = STATE(896), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_declaration] = STATE(896), + [sym_type_definition] = STATE(896), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(896), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -34954,1976 +34525,2457 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(915), - [sym_expression_statement] = STATE(915), - [sym_if_statement] = STATE(915), - [sym_switch_statement] = STATE(915), - [sym_case_statement] = STATE(915), - [sym_while_statement] = STATE(915), - [sym_do_statement] = STATE(915), - [sym_for_statement] = STATE(915), - [sym_return_statement] = STATE(915), - [sym_break_statement] = STATE(915), - [sym_continue_statement] = STATE(915), - [sym_goto_statement] = STATE(915), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(915), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(896), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(915), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2843), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(1829), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2849), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2854), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2857), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2852), - [sym_preproc_directive] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2863), - [anon_sym_typedef] = ACTIONS(2866), - [anon_sym_extern] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_static] = ACTIONS(1850), - [anon_sym_auto] = ACTIONS(1850), - [anon_sym_register] = ACTIONS(1850), - [anon_sym_inline] = ACTIONS(1850), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_restrict] = ACTIONS(1861), - [anon_sym_volatile] = ACTIONS(1861), - [anon_sym__Atomic] = ACTIONS(1861), - [anon_sym_unsigned] = ACTIONS(1864), - [anon_sym_long] = ACTIONS(1864), - [anon_sym_short] = ACTIONS(1864), - [sym_primitive_type] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1870), - [anon_sym_struct] = ACTIONS(1873), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_switch] = ACTIONS(2875), - [anon_sym_case] = ACTIONS(2878), - [anon_sym_default] = ACTIONS(2881), - [anon_sym_while] = ACTIONS(2884), - [anon_sym_do] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2890), - [anon_sym_return] = ACTIONS(2893), - [anon_sym_break] = ACTIONS(2896), - [anon_sym_continue] = ACTIONS(2899), - [anon_sym_goto] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_PLUS] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_sizeof] = ACTIONS(1924), - [sym_number_literal] = ACTIONS(2905), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym_true] = ACTIONS(2908), - [sym_false] = ACTIONS(2908), - [sym_null] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2911), - [sym_comment] = ACTIONS(39), - }, - [916] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2914), - [sym_preproc_directive] = ACTIONS(2914), - [anon_sym_SEMI] = ACTIONS(2916), - [anon_sym_typedef] = ACTIONS(2914), - [anon_sym_extern] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_RBRACE] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_auto] = ACTIONS(2914), - [anon_sym_register] = ACTIONS(2914), - [anon_sym_inline] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_restrict] = ACTIONS(2914), - [anon_sym_volatile] = ACTIONS(2914), - [anon_sym__Atomic] = ACTIONS(2914), - [anon_sym_unsigned] = ACTIONS(2914), - [anon_sym_long] = ACTIONS(2914), - [anon_sym_short] = ACTIONS(2914), - [sym_primitive_type] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2914), - [anon_sym_default] = ACTIONS(2914), - [anon_sym_while] = ACTIONS(2914), - [anon_sym_do] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_goto] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_BANG] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_sizeof] = ACTIONS(2914), - [sym_number_literal] = ACTIONS(2916), - [anon_sym_SQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_null] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2914), - [sym_comment] = ACTIONS(39), - }, - [917] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2918), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2920), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2918), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2918), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2918), - [sym_preproc_directive] = ACTIONS(2918), - [anon_sym_SEMI] = ACTIONS(2920), - [anon_sym_typedef] = ACTIONS(2918), - [anon_sym_extern] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2920), - [anon_sym_RBRACE] = ACTIONS(2920), - [anon_sym_STAR] = ACTIONS(2920), - [anon_sym_static] = ACTIONS(2918), - [anon_sym_auto] = ACTIONS(2918), - [anon_sym_register] = ACTIONS(2918), - [anon_sym_inline] = ACTIONS(2918), - [anon_sym_const] = ACTIONS(2918), - [anon_sym_restrict] = ACTIONS(2918), - [anon_sym_volatile] = ACTIONS(2918), - [anon_sym__Atomic] = ACTIONS(2918), - [anon_sym_unsigned] = ACTIONS(2918), - [anon_sym_long] = ACTIONS(2918), - [anon_sym_short] = ACTIONS(2918), - [sym_primitive_type] = ACTIONS(2918), - [anon_sym_enum] = ACTIONS(2918), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_union] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_switch] = ACTIONS(2918), - [anon_sym_case] = ACTIONS(2918), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_goto] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2920), - [anon_sym_BANG] = ACTIONS(2920), - [anon_sym_TILDE] = ACTIONS(2920), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_DASH_DASH] = ACTIONS(2920), - [anon_sym_PLUS_PLUS] = ACTIONS(2920), - [anon_sym_sizeof] = ACTIONS(2918), - [sym_number_literal] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_DQUOTE] = ACTIONS(2920), - [sym_true] = ACTIONS(2918), - [sym_false] = ACTIONS(2918), - [sym_null] = ACTIONS(2918), - [sym_identifier] = ACTIONS(2918), - [sym_comment] = ACTIONS(39), - }, - [918] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2922), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2924), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2922), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2922), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2922), - [sym_preproc_directive] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2924), - [anon_sym_typedef] = ACTIONS(2922), - [anon_sym_extern] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_RBRACE] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2922), - [anon_sym_auto] = ACTIONS(2922), - [anon_sym_register] = ACTIONS(2922), - [anon_sym_inline] = ACTIONS(2922), - [anon_sym_const] = ACTIONS(2922), - [anon_sym_restrict] = ACTIONS(2922), - [anon_sym_volatile] = ACTIONS(2922), - [anon_sym__Atomic] = ACTIONS(2922), - [anon_sym_unsigned] = ACTIONS(2922), - [anon_sym_long] = ACTIONS(2922), - [anon_sym_short] = ACTIONS(2922), - [sym_primitive_type] = ACTIONS(2922), - [anon_sym_enum] = ACTIONS(2922), - [anon_sym_struct] = ACTIONS(2922), - [anon_sym_union] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_switch] = ACTIONS(2922), - [anon_sym_case] = ACTIONS(2922), - [anon_sym_default] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_break] = ACTIONS(2922), - [anon_sym_continue] = ACTIONS(2922), - [anon_sym_goto] = ACTIONS(2922), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_BANG] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_sizeof] = ACTIONS(2922), - [sym_number_literal] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [sym_true] = ACTIONS(2922), - [sym_false] = ACTIONS(2922), - [sym_null] = ACTIONS(2922), - [sym_identifier] = ACTIONS(2922), - [sym_comment] = ACTIONS(39), - }, - [919] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2926), - [sym_comment] = ACTIONS(39), - }, - [920] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2928), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2781), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2792), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2795), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2790), + [sym_preproc_directive] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym_typedef] = ACTIONS(2804), + [anon_sym_extern] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR] = ACTIONS(1821), + [anon_sym_static] = ACTIONS(1810), + [anon_sym_auto] = ACTIONS(1810), + [anon_sym_register] = ACTIONS(1810), + [anon_sym_inline] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(1824), + [anon_sym_restrict] = ACTIONS(1824), + [anon_sym_volatile] = ACTIONS(1824), + [anon_sym__Atomic] = ACTIONS(1824), + [anon_sym_unsigned] = ACTIONS(1827), + [anon_sym_long] = ACTIONS(1827), + [anon_sym_short] = ACTIONS(1827), + [sym_primitive_type] = ACTIONS(1830), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(1836), + [anon_sym_union] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(2810), + [anon_sym_switch] = ACTIONS(2813), + [anon_sym_case] = ACTIONS(2816), + [anon_sym_default] = ACTIONS(2819), + [anon_sym_while] = ACTIONS(2822), + [anon_sym_do] = ACTIONS(2825), + [anon_sym_for] = ACTIONS(2828), + [anon_sym_return] = ACTIONS(2831), + [anon_sym_break] = ACTIONS(2834), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_goto] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_BANG] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_sizeof] = ACTIONS(1887), + [sym_number_literal] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1896), + [sym_true] = ACTIONS(2846), + [sym_false] = ACTIONS(2846), + [sym_null] = ACTIONS(2846), + [sym_identifier] = ACTIONS(2849), [sym_comment] = ACTIONS(39), }, - [921] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2930), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2932), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2930), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2930), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2930), - [sym_preproc_directive] = ACTIONS(2930), - [anon_sym_SEMI] = ACTIONS(2932), - [anon_sym_typedef] = ACTIONS(2930), - [anon_sym_extern] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_RBRACE] = ACTIONS(2932), - [anon_sym_STAR] = ACTIONS(2932), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_auto] = ACTIONS(2930), - [anon_sym_register] = ACTIONS(2930), - [anon_sym_inline] = ACTIONS(2930), - [anon_sym_const] = ACTIONS(2930), - [anon_sym_restrict] = ACTIONS(2930), - [anon_sym_volatile] = ACTIONS(2930), - [anon_sym__Atomic] = ACTIONS(2930), - [anon_sym_unsigned] = ACTIONS(2930), - [anon_sym_long] = ACTIONS(2930), - [anon_sym_short] = ACTIONS(2930), - [sym_primitive_type] = ACTIONS(2930), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_union] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_switch] = ACTIONS(2930), - [anon_sym_case] = ACTIONS(2930), - [anon_sym_default] = ACTIONS(2930), - [anon_sym_while] = ACTIONS(2930), - [anon_sym_do] = ACTIONS(2930), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_break] = ACTIONS(2930), - [anon_sym_continue] = ACTIONS(2930), - [anon_sym_goto] = ACTIONS(2930), - [anon_sym_AMP] = ACTIONS(2932), - [anon_sym_BANG] = ACTIONS(2932), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(2932), - [anon_sym_PLUS_PLUS] = ACTIONS(2932), - [anon_sym_sizeof] = ACTIONS(2930), - [sym_number_literal] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2932), - [sym_true] = ACTIONS(2930), - [sym_false] = ACTIONS(2930), - [sym_null] = ACTIONS(2930), - [sym_identifier] = ACTIONS(2930), + [897] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_RBRACE] = ACTIONS(2854), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_auto] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_goto] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_sizeof] = ACTIONS(2852), + [sym_number_literal] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [sym_null] = ACTIONS(2852), + [sym_identifier] = ACTIONS(2852), [sym_comment] = ACTIONS(39), }, - [922] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2934), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2934), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2934), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2934), - [sym_preproc_directive] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_typedef] = ACTIONS(2934), - [anon_sym_extern] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2936), - [anon_sym_RBRACE] = ACTIONS(2936), - [anon_sym_STAR] = ACTIONS(2936), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_auto] = ACTIONS(2934), - [anon_sym_register] = ACTIONS(2934), - [anon_sym_inline] = ACTIONS(2934), - [anon_sym_const] = ACTIONS(2934), - [anon_sym_restrict] = ACTIONS(2934), - [anon_sym_volatile] = ACTIONS(2934), - [anon_sym__Atomic] = ACTIONS(2934), - [anon_sym_unsigned] = ACTIONS(2934), - [anon_sym_long] = ACTIONS(2934), - [anon_sym_short] = ACTIONS(2934), - [sym_primitive_type] = ACTIONS(2934), - [anon_sym_enum] = ACTIONS(2934), - [anon_sym_struct] = ACTIONS(2934), - [anon_sym_union] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_switch] = ACTIONS(2934), - [anon_sym_case] = ACTIONS(2934), - [anon_sym_default] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_break] = ACTIONS(2934), - [anon_sym_continue] = ACTIONS(2934), - [anon_sym_goto] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - [anon_sym_BANG] = ACTIONS(2936), - [anon_sym_TILDE] = ACTIONS(2936), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2934), - [sym_number_literal] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [sym_true] = ACTIONS(2934), - [sym_false] = ACTIONS(2934), - [sym_null] = ACTIONS(2934), - [sym_identifier] = ACTIONS(2934), + [898] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_RBRACE] = ACTIONS(2858), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_auto] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_goto] = ACTIONS(2856), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2856), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [sym_null] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2856), [sym_comment] = ACTIONS(39), }, - [923] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [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_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_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), + [899] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_RBRACE] = ACTIONS(2862), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_auto] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [sym_null] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2860), [sym_comment] = ACTIONS(39), }, - [924] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2942), + [900] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2864), [sym_comment] = ACTIONS(39), }, - [925] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2944), + [901] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2866), [sym_comment] = ACTIONS(39), }, - [926] = { - [anon_sym_RPAREN] = ACTIONS(2946), + [902] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_RBRACE] = ACTIONS(2870), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_auto] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_goto] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_sizeof] = ACTIONS(2868), + [sym_number_literal] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [sym_null] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2868), [sym_comment] = ACTIONS(39), }, - [927] = { - [sym_type_qualifier] = STATE(118), - [sym__type_specifier] = STATE(116), - [sym_sized_type_specifier] = STATE(116), - [sym_enum_specifier] = STATE(116), - [sym_struct_specifier] = STATE(116), - [sym_union_specifier] = STATE(116), - [sym__expression] = STATE(415), - [sym_comma_expression] = STATE(416), - [sym_conditional_expression] = STATE(415), - [sym_assignment_expression] = STATE(415), - [sym_pointer_expression] = STATE(415), - [sym_logical_expression] = STATE(415), - [sym_bitwise_expression] = STATE(415), - [sym_equality_expression] = STATE(415), - [sym_relational_expression] = STATE(415), - [sym_shift_expression] = STATE(415), - [sym_math_expression] = STATE(415), - [sym_cast_expression] = STATE(415), - [sym_type_descriptor] = STATE(1062), - [sym_sizeof_expression] = STATE(415), - [sym_subscript_expression] = STATE(415), - [sym_call_expression] = STATE(415), - [sym_field_expression] = STATE(415), - [sym_compound_literal_expression] = STATE(415), - [sym_parenthesized_expression] = STATE(415), - [sym_char_literal] = STATE(415), - [sym_concatenated_string] = STATE(415), - [sym_string_literal] = STATE(418), - [sym_macro_type_specifier] = STATE(116), - [aux_sym_type_definition_repeat1] = STATE(118), - [aux_sym_sized_type_specifier_repeat1] = STATE(119), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(223), - [anon_sym_long] = ACTIONS(223), - [anon_sym_short] = ACTIONS(223), - [sym_primitive_type] = ACTIONS(225), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_identifier] = ACTIONS(992), + [903] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_auto] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_goto] = ACTIONS(2872), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2872), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [sym_null] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2872), [sym_comment] = ACTIONS(39), }, - [928] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1737), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_STAR_EQ] = ACTIONS(1735), - [anon_sym_SLASH_EQ] = ACTIONS(1735), - [anon_sym_PERCENT_EQ] = ACTIONS(1735), - [anon_sym_PLUS_EQ] = ACTIONS(1735), - [anon_sym_DASH_EQ] = ACTIONS(1735), - [anon_sym_LT_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_GT_EQ] = ACTIONS(1735), - [anon_sym_AMP_EQ] = ACTIONS(1735), - [anon_sym_CARET_EQ] = ACTIONS(1735), - [anon_sym_PIPE_EQ] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_PIPE_PIPE] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1737), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT_EQ] = ACTIONS(1735), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [904] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2876), + [sym_preproc_directive] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_typedef] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_RBRACE] = ACTIONS(2878), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_auto] = ACTIONS(2876), + [anon_sym_register] = ACTIONS(2876), + [anon_sym_inline] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_restrict] = ACTIONS(2876), + [anon_sym_volatile] = ACTIONS(2876), + [anon_sym__Atomic] = ACTIONS(2876), + [anon_sym_unsigned] = ACTIONS(2876), + [anon_sym_long] = ACTIONS(2876), + [anon_sym_short] = ACTIONS(2876), + [sym_primitive_type] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2876), + [anon_sym_union] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_goto] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_sizeof] = ACTIONS(2876), + [sym_number_literal] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [sym_null] = ACTIONS(2876), + [sym_identifier] = ACTIONS(2876), [sym_comment] = ACTIONS(39), }, - [929] = { - [sym_compound_statement] = STATE(1070), - [sym_labeled_statement] = STATE(1070), - [sym_expression_statement] = STATE(1070), - [sym_if_statement] = STATE(1070), - [sym_switch_statement] = STATE(1070), - [sym_case_statement] = STATE(1070), - [sym_while_statement] = STATE(1070), - [sym_do_statement] = STATE(1070), - [sym_for_statement] = STATE(1070), - [sym_return_statement] = STATE(1070), - [sym_break_statement] = STATE(1070), - [sym_continue_statement] = STATE(1070), - [sym_goto_statement] = STATE(1070), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(2960), + [905] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2880), [sym_comment] = ACTIONS(39), }, - [930] = { - [sym__expression] = STATE(739), - [sym_conditional_expression] = STATE(739), - [sym_assignment_expression] = STATE(739), - [sym_pointer_expression] = STATE(739), - [sym_logical_expression] = STATE(739), - [sym_bitwise_expression] = STATE(739), - [sym_equality_expression] = STATE(739), - [sym_relational_expression] = STATE(739), - [sym_shift_expression] = STATE(739), - [sym_math_expression] = STATE(739), - [sym_cast_expression] = STATE(739), - [sym_sizeof_expression] = STATE(739), - [sym_subscript_expression] = STATE(739), - [sym_call_expression] = STATE(739), - [sym_field_expression] = STATE(739), - [sym_compound_literal_expression] = STATE(739), - [sym_parenthesized_expression] = STATE(739), - [sym_char_literal] = STATE(739), - [sym_concatenated_string] = STATE(739), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(1757), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_identifier] = ACTIONS(1759), + [906] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2882), [sym_comment] = ACTIONS(39), }, - [931] = { - [sym__expression] = STATE(1071), - [sym_conditional_expression] = STATE(1071), - [sym_assignment_expression] = STATE(1071), - [sym_pointer_expression] = STATE(1071), - [sym_logical_expression] = STATE(1071), - [sym_bitwise_expression] = STATE(1071), - [sym_equality_expression] = STATE(1071), - [sym_relational_expression] = STATE(1071), - [sym_shift_expression] = STATE(1071), - [sym_math_expression] = STATE(1071), - [sym_cast_expression] = STATE(1071), - [sym_sizeof_expression] = STATE(1071), - [sym_subscript_expression] = STATE(1071), - [sym_call_expression] = STATE(1071), - [sym_field_expression] = STATE(1071), - [sym_compound_literal_expression] = STATE(1071), - [sym_parenthesized_expression] = STATE(1071), - [sym_char_literal] = STATE(1071), - [sym_concatenated_string] = STATE(1071), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2962), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2964), - [sym_false] = ACTIONS(2964), - [sym_null] = ACTIONS(2964), - [sym_identifier] = ACTIONS(2964), + [907] = { + [sym__expression] = STATE(921), + [sym_conditional_expression] = STATE(921), + [sym_assignment_expression] = STATE(921), + [sym_pointer_expression] = STATE(921), + [sym_logical_expression] = STATE(921), + [sym_bitwise_expression] = STATE(921), + [sym_equality_expression] = STATE(921), + [sym_relational_expression] = STATE(921), + [sym_shift_expression] = STATE(921), + [sym_math_expression] = STATE(921), + [sym_cast_expression] = STATE(921), + [sym_sizeof_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_call_expression] = STATE(921), + [sym_field_expression] = STATE(921), + [sym_compound_literal_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(921), + [sym_initializer_list] = STATE(922), + [sym_char_literal] = STATE(921), + [sym_concatenated_string] = STATE(921), + [sym_string_literal] = STATE(409), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2394), + [sym_false] = ACTIONS(2394), + [sym_null] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2394), [sym_comment] = ACTIONS(39), }, - [932] = { - [sym__expression] = STATE(1072), - [sym_conditional_expression] = STATE(1072), - [sym_assignment_expression] = STATE(1072), - [sym_pointer_expression] = STATE(1072), - [sym_logical_expression] = STATE(1072), - [sym_bitwise_expression] = STATE(1072), - [sym_equality_expression] = STATE(1072), - [sym_relational_expression] = STATE(1072), - [sym_shift_expression] = STATE(1072), - [sym_math_expression] = STATE(1072), - [sym_cast_expression] = STATE(1072), - [sym_sizeof_expression] = STATE(1072), - [sym_subscript_expression] = STATE(1072), - [sym_call_expression] = STATE(1072), - [sym_field_expression] = STATE(1072), - [sym_compound_literal_expression] = STATE(1072), - [sym_parenthesized_expression] = STATE(1072), - [sym_char_literal] = STATE(1072), - [sym_concatenated_string] = STATE(1072), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2966), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2968), - [sym_false] = ACTIONS(2968), - [sym_null] = ACTIONS(2968), - [sym_identifier] = ACTIONS(2968), + [908] = { + [anon_sym_RPAREN] = ACTIONS(2884), [sym_comment] = ACTIONS(39), }, - [933] = { - [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(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2970), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2972), - [sym_false] = ACTIONS(2972), - [sym_null] = ACTIONS(2972), - [sym_identifier] = ACTIONS(2972), + [909] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(2524), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [934] = { - [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(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2976), - [sym_false] = ACTIONS(2976), - [sym_null] = ACTIONS(2976), - [sym_identifier] = ACTIONS(2976), + [910] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2540), + [anon_sym_RPAREN] = ACTIONS(2540), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(2540), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [935] = { - [sym__expression] = STATE(1075), - [sym_conditional_expression] = STATE(1075), - [sym_assignment_expression] = STATE(1075), - [sym_pointer_expression] = STATE(1075), - [sym_logical_expression] = STATE(1075), - [sym_bitwise_expression] = STATE(1075), - [sym_equality_expression] = STATE(1075), - [sym_relational_expression] = STATE(1075), - [sym_shift_expression] = STATE(1075), - [sym_math_expression] = STATE(1075), - [sym_cast_expression] = STATE(1075), - [sym_sizeof_expression] = STATE(1075), - [sym_subscript_expression] = STATE(1075), - [sym_call_expression] = STATE(1075), - [sym_field_expression] = STATE(1075), - [sym_compound_literal_expression] = STATE(1075), - [sym_parenthesized_expression] = STATE(1075), - [sym_char_literal] = STATE(1075), - [sym_concatenated_string] = STATE(1075), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2978), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2980), - [sym_false] = ACTIONS(2980), - [sym_null] = ACTIONS(2980), - [sym_identifier] = ACTIONS(2980), + [911] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [936] = { - [sym__expression] = STATE(1076), - [sym_conditional_expression] = STATE(1076), - [sym_assignment_expression] = STATE(1076), - [sym_pointer_expression] = STATE(1076), - [sym_logical_expression] = STATE(1076), - [sym_bitwise_expression] = STATE(1076), - [sym_equality_expression] = STATE(1076), - [sym_relational_expression] = STATE(1076), - [sym_shift_expression] = STATE(1076), - [sym_math_expression] = STATE(1076), - [sym_cast_expression] = STATE(1076), - [sym_sizeof_expression] = STATE(1076), - [sym_subscript_expression] = STATE(1076), - [sym_call_expression] = STATE(1076), - [sym_field_expression] = STATE(1076), - [sym_compound_literal_expression] = STATE(1076), - [sym_parenthesized_expression] = STATE(1076), - [sym_char_literal] = STATE(1076), - [sym_concatenated_string] = STATE(1076), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2982), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2984), - [sym_false] = ACTIONS(2984), - [sym_null] = ACTIONS(2984), - [sym_identifier] = ACTIONS(2984), + [912] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2544), + [anon_sym_RPAREN] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [937] = { - [sym__expression] = STATE(1077), - [sym_conditional_expression] = STATE(1077), - [sym_assignment_expression] = STATE(1077), - [sym_pointer_expression] = STATE(1077), - [sym_logical_expression] = STATE(1077), - [sym_bitwise_expression] = STATE(1077), - [sym_equality_expression] = STATE(1077), - [sym_relational_expression] = STATE(1077), - [sym_shift_expression] = STATE(1077), - [sym_math_expression] = STATE(1077), - [sym_cast_expression] = STATE(1077), - [sym_sizeof_expression] = STATE(1077), - [sym_subscript_expression] = STATE(1077), - [sym_call_expression] = STATE(1077), - [sym_field_expression] = STATE(1077), - [sym_compound_literal_expression] = STATE(1077), - [sym_parenthesized_expression] = STATE(1077), - [sym_char_literal] = STATE(1077), - [sym_concatenated_string] = STATE(1077), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2988), - [sym_false] = ACTIONS(2988), - [sym_null] = ACTIONS(2988), - [sym_identifier] = ACTIONS(2988), + [913] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2550), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_STAR_EQ] = ACTIONS(2548), + [anon_sym_SLASH_EQ] = ACTIONS(2548), + [anon_sym_PERCENT_EQ] = ACTIONS(2548), + [anon_sym_PLUS_EQ] = ACTIONS(2548), + [anon_sym_DASH_EQ] = ACTIONS(2548), + [anon_sym_LT_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_GT_EQ] = ACTIONS(2548), + [anon_sym_AMP_EQ] = ACTIONS(2548), + [anon_sym_CARET_EQ] = ACTIONS(2548), + [anon_sym_PIPE_EQ] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(2548), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [938] = { - [sym__expression] = STATE(1078), - [sym_conditional_expression] = STATE(1078), - [sym_assignment_expression] = STATE(1078), - [sym_pointer_expression] = STATE(1078), - [sym_logical_expression] = STATE(1078), - [sym_bitwise_expression] = STATE(1078), - [sym_equality_expression] = STATE(1078), - [sym_relational_expression] = STATE(1078), - [sym_shift_expression] = STATE(1078), - [sym_math_expression] = STATE(1078), - [sym_cast_expression] = STATE(1078), - [sym_sizeof_expression] = STATE(1078), - [sym_subscript_expression] = STATE(1078), - [sym_call_expression] = STATE(1078), - [sym_field_expression] = STATE(1078), - [sym_compound_literal_expression] = STATE(1078), - [sym_parenthesized_expression] = STATE(1078), - [sym_char_literal] = STATE(1078), - [sym_concatenated_string] = STATE(1078), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2990), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2992), - [sym_false] = ACTIONS(2992), - [sym_null] = ACTIONS(2992), - [sym_identifier] = ACTIONS(2992), + [914] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2548), + [anon_sym_RPAREN] = ACTIONS(2548), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2550), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_STAR_EQ] = ACTIONS(2548), + [anon_sym_SLASH_EQ] = ACTIONS(2548), + [anon_sym_PERCENT_EQ] = ACTIONS(2548), + [anon_sym_PLUS_EQ] = ACTIONS(2548), + [anon_sym_DASH_EQ] = ACTIONS(2548), + [anon_sym_LT_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_GT_EQ] = ACTIONS(2548), + [anon_sym_AMP_EQ] = ACTIONS(2548), + [anon_sym_CARET_EQ] = ACTIONS(2548), + [anon_sym_PIPE_EQ] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(2548), + [anon_sym_AMP_AMP] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [939] = { - [sym__expression] = STATE(1079), - [sym_conditional_expression] = STATE(1079), - [sym_assignment_expression] = STATE(1079), - [sym_pointer_expression] = STATE(1079), - [sym_logical_expression] = STATE(1079), - [sym_bitwise_expression] = STATE(1079), - [sym_equality_expression] = STATE(1079), - [sym_relational_expression] = STATE(1079), - [sym_shift_expression] = STATE(1079), - [sym_math_expression] = STATE(1079), - [sym_cast_expression] = STATE(1079), - [sym_sizeof_expression] = STATE(1079), - [sym_subscript_expression] = STATE(1079), - [sym_call_expression] = STATE(1079), - [sym_field_expression] = STATE(1079), - [sym_compound_literal_expression] = STATE(1079), - [sym_parenthesized_expression] = STATE(1079), - [sym_char_literal] = STATE(1079), - [sym_concatenated_string] = STATE(1079), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2994), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2996), - [sym_false] = ACTIONS(2996), - [sym_null] = ACTIONS(2996), - [sym_identifier] = ACTIONS(2996), + [915] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2544), + [anon_sym_RPAREN] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [940] = { - [sym__expression] = STATE(1080), - [sym_conditional_expression] = STATE(1080), - [sym_assignment_expression] = STATE(1080), - [sym_pointer_expression] = STATE(1080), - [sym_logical_expression] = STATE(1080), - [sym_bitwise_expression] = STATE(1080), - [sym_equality_expression] = STATE(1080), - [sym_relational_expression] = STATE(1080), - [sym_shift_expression] = STATE(1080), - [sym_math_expression] = STATE(1080), - [sym_cast_expression] = STATE(1080), - [sym_sizeof_expression] = STATE(1080), - [sym_subscript_expression] = STATE(1080), - [sym_call_expression] = STATE(1080), - [sym_field_expression] = STATE(1080), - [sym_compound_literal_expression] = STATE(1080), - [sym_parenthesized_expression] = STATE(1080), - [sym_char_literal] = STATE(1080), - [sym_concatenated_string] = STATE(1080), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2998), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3000), - [sym_false] = ACTIONS(3000), - [sym_null] = ACTIONS(3000), - [sym_identifier] = ACTIONS(3000), + [916] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2544), + [anon_sym_RPAREN] = ACTIONS(2544), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [941] = { - [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(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3002), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3004), - [sym_false] = ACTIONS(3004), - [sym_null] = ACTIONS(3004), - [sym_identifier] = ACTIONS(3004), + [917] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2552), + [anon_sym_RPAREN] = ACTIONS(2552), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2554), + [anon_sym_QMARK] = ACTIONS(2552), + [anon_sym_STAR_EQ] = ACTIONS(2552), + [anon_sym_SLASH_EQ] = ACTIONS(2552), + [anon_sym_PERCENT_EQ] = ACTIONS(2552), + [anon_sym_PLUS_EQ] = ACTIONS(2552), + [anon_sym_DASH_EQ] = ACTIONS(2552), + [anon_sym_LT_LT_EQ] = ACTIONS(2552), + [anon_sym_GT_GT_EQ] = ACTIONS(2552), + [anon_sym_AMP_EQ] = ACTIONS(2552), + [anon_sym_CARET_EQ] = ACTIONS(2552), + [anon_sym_PIPE_EQ] = ACTIONS(2552), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_PIPE_PIPE] = ACTIONS(2552), + [anon_sym_AMP_AMP] = ACTIONS(2552), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_EQ_EQ] = ACTIONS(2552), + [anon_sym_BANG_EQ] = ACTIONS(2552), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [942] = { - [sym_string_literal] = STATE(1082), - [aux_sym_concatenated_string_repeat1] = STATE(1082), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_RPAREN] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(1817), - [anon_sym_QMARK] = ACTIONS(1815), - [anon_sym_STAR_EQ] = ACTIONS(1815), - [anon_sym_SLASH_EQ] = ACTIONS(1815), - [anon_sym_PERCENT_EQ] = ACTIONS(1815), - [anon_sym_PLUS_EQ] = ACTIONS(1815), - [anon_sym_DASH_EQ] = ACTIONS(1815), - [anon_sym_LT_LT_EQ] = ACTIONS(1815), - [anon_sym_GT_GT_EQ] = ACTIONS(1815), - [anon_sym_AMP_EQ] = ACTIONS(1815), - [anon_sym_CARET_EQ] = ACTIONS(1815), - [anon_sym_PIPE_EQ] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_PIPE_PIPE] = ACTIONS(1815), - [anon_sym_AMP_AMP] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), - [anon_sym_EQ_EQ] = ACTIONS(1815), - [anon_sym_BANG_EQ] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_GT] = ACTIONS(1817), - [anon_sym_LT_EQ] = ACTIONS(1815), - [anon_sym_GT_EQ] = ACTIONS(1815), - [anon_sym_LT_LT] = ACTIONS(1817), - [anon_sym_GT_GT] = ACTIONS(1817), - [anon_sym_PLUS] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_SLASH] = ACTIONS(1817), - [anon_sym_PERCENT] = ACTIONS(1817), - [anon_sym_DASH_DASH] = ACTIONS(1815), - [anon_sym_PLUS_PLUS] = ACTIONS(1815), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_DASH_GT] = ACTIONS(1815), - [anon_sym_DQUOTE] = ACTIONS(41), + [918] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2556), + [anon_sym_RPAREN] = ACTIONS(2556), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2558), + [anon_sym_QMARK] = ACTIONS(2556), + [anon_sym_STAR_EQ] = ACTIONS(2556), + [anon_sym_SLASH_EQ] = ACTIONS(2556), + [anon_sym_PERCENT_EQ] = ACTIONS(2556), + [anon_sym_PLUS_EQ] = ACTIONS(2556), + [anon_sym_DASH_EQ] = ACTIONS(2556), + [anon_sym_LT_LT_EQ] = ACTIONS(2556), + [anon_sym_GT_GT_EQ] = ACTIONS(2556), + [anon_sym_AMP_EQ] = ACTIONS(2556), + [anon_sym_CARET_EQ] = ACTIONS(2556), + [anon_sym_PIPE_EQ] = ACTIONS(2556), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2556), + [anon_sym_AMP_AMP] = ACTIONS(2556), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2556), + [anon_sym_BANG_EQ] = ACTIONS(2556), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_LT_EQ] = ACTIONS(2556), + [anon_sym_GT_EQ] = ACTIONS(2556), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [943] = { - [sym_compound_statement] = STATE(1083), - [sym_labeled_statement] = STATE(1083), - [sym_expression_statement] = STATE(1083), - [sym_if_statement] = STATE(1083), - [sym_switch_statement] = STATE(1083), - [sym_case_statement] = STATE(1083), - [sym_while_statement] = STATE(1083), - [sym_do_statement] = STATE(1083), - [sym_for_statement] = STATE(1083), - [sym_return_statement] = STATE(1083), - [sym_break_statement] = STATE(1083), - [sym_continue_statement] = STATE(1083), - [sym_goto_statement] = STATE(1083), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1741), + [919] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2560), + [anon_sym_RPAREN] = ACTIONS(2560), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2562), + [anon_sym_QMARK] = ACTIONS(2560), + [anon_sym_STAR_EQ] = ACTIONS(2560), + [anon_sym_SLASH_EQ] = ACTIONS(2560), + [anon_sym_PERCENT_EQ] = ACTIONS(2560), + [anon_sym_PLUS_EQ] = ACTIONS(2560), + [anon_sym_DASH_EQ] = ACTIONS(2560), + [anon_sym_LT_LT_EQ] = ACTIONS(2560), + [anon_sym_GT_GT_EQ] = ACTIONS(2560), + [anon_sym_AMP_EQ] = ACTIONS(2560), + [anon_sym_CARET_EQ] = ACTIONS(2560), + [anon_sym_PIPE_EQ] = ACTIONS(2560), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2560), + [anon_sym_AMP_AMP] = ACTIONS(2560), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2560), + [anon_sym_BANG_EQ] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2562), + [anon_sym_LT_EQ] = ACTIONS(2560), + [anon_sym_GT_EQ] = ACTIONS(2560), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2562), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [944] = { - [sym__expression] = STATE(866), - [sym_conditional_expression] = STATE(866), - [sym_assignment_expression] = STATE(866), - [sym_pointer_expression] = STATE(866), - [sym_logical_expression] = STATE(866), - [sym_bitwise_expression] = STATE(866), - [sym_equality_expression] = STATE(866), - [sym_relational_expression] = STATE(866), - [sym_shift_expression] = STATE(866), - [sym_math_expression] = STATE(866), - [sym_cast_expression] = STATE(866), - [sym_sizeof_expression] = STATE(866), - [sym_subscript_expression] = STATE(866), - [sym_call_expression] = STATE(866), - [sym_field_expression] = STATE(866), - [sym_compound_literal_expression] = STATE(866), - [sym_parenthesized_expression] = STATE(866), - [sym_initializer_list] = STATE(867), - [sym_char_literal] = STATE(866), - [sym_concatenated_string] = STATE(866), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2332), + [920] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2534), + [anon_sym_RPAREN] = ACTIONS(2534), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2536), + [anon_sym_QMARK] = ACTIONS(2534), + [anon_sym_STAR_EQ] = ACTIONS(2534), + [anon_sym_SLASH_EQ] = ACTIONS(2534), + [anon_sym_PERCENT_EQ] = ACTIONS(2534), + [anon_sym_PLUS_EQ] = ACTIONS(2534), + [anon_sym_DASH_EQ] = ACTIONS(2534), + [anon_sym_LT_LT_EQ] = ACTIONS(2534), + [anon_sym_GT_GT_EQ] = ACTIONS(2534), + [anon_sym_AMP_EQ] = ACTIONS(2534), + [anon_sym_CARET_EQ] = ACTIONS(2534), + [anon_sym_PIPE_EQ] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2536), + [anon_sym_EQ_EQ] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_GT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_LT_LT] = ACTIONS(2536), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [945] = { - [anon_sym_RPAREN] = ACTIONS(3006), + [921] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2888), + [anon_sym_RPAREN] = ACTIONS(2888), + [anon_sym_SEMI] = ACTIONS(2888), + [anon_sym_RBRACE] = ACTIONS(2888), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym_COLON] = ACTIONS(2888), + [anon_sym_QMARK] = ACTIONS(2888), + [anon_sym_STAR_EQ] = ACTIONS(2888), + [anon_sym_SLASH_EQ] = ACTIONS(2888), + [anon_sym_PERCENT_EQ] = ACTIONS(2888), + [anon_sym_PLUS_EQ] = ACTIONS(2888), + [anon_sym_DASH_EQ] = ACTIONS(2888), + [anon_sym_LT_LT_EQ] = ACTIONS(2888), + [anon_sym_GT_GT_EQ] = ACTIONS(2888), + [anon_sym_AMP_EQ] = ACTIONS(2888), + [anon_sym_CARET_EQ] = ACTIONS(2888), + [anon_sym_PIPE_EQ] = ACTIONS(2888), + [anon_sym_AMP] = ACTIONS(2890), + [anon_sym_PIPE_PIPE] = ACTIONS(2888), + [anon_sym_AMP_AMP] = ACTIONS(2888), + [anon_sym_PIPE] = ACTIONS(2890), + [anon_sym_CARET] = ACTIONS(2890), + [anon_sym_EQ_EQ] = ACTIONS(2888), + [anon_sym_BANG_EQ] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2890), + [anon_sym_GT] = ACTIONS(2890), + [anon_sym_LT_EQ] = ACTIONS(2888), + [anon_sym_GT_EQ] = ACTIONS(2888), + [anon_sym_LT_LT] = ACTIONS(2890), + [anon_sym_GT_GT] = ACTIONS(2890), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2890), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [946] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(2598), - [anon_sym_QMARK] = ACTIONS(2598), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [922] = { + [anon_sym_COMMA] = ACTIONS(2892), + [anon_sym_RPAREN] = ACTIONS(2892), + [anon_sym_SEMI] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2892), + [anon_sym_LPAREN2] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(2894), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_RBRACK] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2894), + [anon_sym_COLON] = ACTIONS(2892), + [anon_sym_QMARK] = ACTIONS(2892), + [anon_sym_STAR_EQ] = ACTIONS(2892), + [anon_sym_SLASH_EQ] = ACTIONS(2892), + [anon_sym_PERCENT_EQ] = ACTIONS(2892), + [anon_sym_PLUS_EQ] = ACTIONS(2892), + [anon_sym_DASH_EQ] = ACTIONS(2892), + [anon_sym_LT_LT_EQ] = ACTIONS(2892), + [anon_sym_GT_GT_EQ] = ACTIONS(2892), + [anon_sym_AMP_EQ] = ACTIONS(2892), + [anon_sym_CARET_EQ] = ACTIONS(2892), + [anon_sym_PIPE_EQ] = ACTIONS(2892), + [anon_sym_AMP] = ACTIONS(2894), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_PIPE] = ACTIONS(2894), + [anon_sym_CARET] = ACTIONS(2894), + [anon_sym_EQ_EQ] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2894), + [anon_sym_GT] = ACTIONS(2894), + [anon_sym_LT_EQ] = ACTIONS(2892), + [anon_sym_GT_EQ] = ACTIONS(2892), + [anon_sym_LT_LT] = ACTIONS(2894), + [anon_sym_GT_GT] = ACTIONS(2894), + [anon_sym_PLUS] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2894), + [anon_sym_SLASH] = ACTIONS(2894), + [anon_sym_PERCENT] = ACTIONS(2894), + [anon_sym_DASH_DASH] = ACTIONS(2892), + [anon_sym_PLUS_PLUS] = ACTIONS(2892), + [anon_sym_DOT] = ACTIONS(2892), + [anon_sym_DASH_GT] = ACTIONS(2892), [sym_comment] = ACTIONS(39), }, - [947] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3008), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3008), - [anon_sym_LPAREN] = ACTIONS(3010), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3008), - [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(3008), - [anon_sym_SEMI] = ACTIONS(3010), - [anon_sym_typedef] = ACTIONS(3008), - [anon_sym_extern] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_RBRACE] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_static] = ACTIONS(3008), - [anon_sym_auto] = ACTIONS(3008), - [anon_sym_register] = ACTIONS(3008), - [anon_sym_inline] = ACTIONS(3008), - [anon_sym_const] = ACTIONS(3008), - [anon_sym_restrict] = ACTIONS(3008), - [anon_sym_volatile] = ACTIONS(3008), - [anon_sym__Atomic] = ACTIONS(3008), - [anon_sym_unsigned] = ACTIONS(3008), - [anon_sym_long] = ACTIONS(3008), - [anon_sym_short] = ACTIONS(3008), - [sym_primitive_type] = ACTIONS(3008), - [anon_sym_enum] = ACTIONS(3008), - [anon_sym_struct] = ACTIONS(3008), - [anon_sym_union] = ACTIONS(3008), - [anon_sym_if] = ACTIONS(3008), - [anon_sym_else] = ACTIONS(3008), - [anon_sym_switch] = ACTIONS(3008), - [anon_sym_case] = ACTIONS(3008), - [anon_sym_default] = ACTIONS(3008), - [anon_sym_while] = ACTIONS(3008), - [anon_sym_do] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3008), - [anon_sym_return] = ACTIONS(3008), - [anon_sym_break] = ACTIONS(3008), - [anon_sym_continue] = ACTIONS(3008), - [anon_sym_goto] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3008), - [anon_sym_DASH] = ACTIONS(3008), - [anon_sym_DASH_DASH] = ACTIONS(3010), - [anon_sym_PLUS_PLUS] = ACTIONS(3010), - [anon_sym_sizeof] = ACTIONS(3008), - [sym_number_literal] = ACTIONS(3010), - [anon_sym_SQUOTE] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [sym_true] = ACTIONS(3008), - [sym_false] = ACTIONS(3008), - [sym_null] = ACTIONS(3008), - [sym_identifier] = ACTIONS(3008), + [923] = { + [sym_string_literal] = STATE(923), + [aux_sym_concatenated_string_repeat1] = STATE(923), + [anon_sym_COMMA] = ACTIONS(2568), + [anon_sym_RPAREN] = ACTIONS(2568), + [anon_sym_LPAREN2] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_EQ] = ACTIONS(2570), + [anon_sym_QMARK] = ACTIONS(2568), + [anon_sym_STAR_EQ] = ACTIONS(2568), + [anon_sym_SLASH_EQ] = ACTIONS(2568), + [anon_sym_PERCENT_EQ] = ACTIONS(2568), + [anon_sym_PLUS_EQ] = ACTIONS(2568), + [anon_sym_DASH_EQ] = ACTIONS(2568), + [anon_sym_LT_LT_EQ] = ACTIONS(2568), + [anon_sym_GT_GT_EQ] = ACTIONS(2568), + [anon_sym_AMP_EQ] = ACTIONS(2568), + [anon_sym_CARET_EQ] = ACTIONS(2568), + [anon_sym_PIPE_EQ] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2568), + [anon_sym_AMP_AMP] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_LT_EQ] = ACTIONS(2568), + [anon_sym_GT_EQ] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2570), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2570), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2568), + [anon_sym_DOT] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2572), [sym_comment] = ACTIONS(39), }, - [948] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [924] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_SEMI] = ACTIONS(2344), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2344), + [anon_sym_RBRACE] = ACTIONS(2344), + [anon_sym_LPAREN2] = ACTIONS(2344), + [anon_sym_STAR] = ACTIONS(2344), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_AMP] = ACTIONS(2344), + [anon_sym_BANG] = ACTIONS(2344), + [anon_sym_TILDE] = ACTIONS(2344), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2344), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [sym_null] = ACTIONS(2346), + [sym_identifier] = ACTIONS(2346), [sym_comment] = ACTIONS(39), }, - [949] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_COLON] = ACTIONS(2602), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [925] = { + [sym_compound_statement] = STATE(1062), + [sym_labeled_statement] = STATE(1062), + [sym_expression_statement] = STATE(1062), + [sym_if_statement] = STATE(1062), + [sym_switch_statement] = STATE(1062), + [sym_case_statement] = STATE(1062), + [sym_while_statement] = STATE(1062), + [sym_do_statement] = STATE(1062), + [sym_for_statement] = STATE(1062), + [sym_return_statement] = STATE(1062), + [sym_break_statement] = STATE(1062), + [sym_continue_statement] = STATE(1062), + [sym_goto_statement] = STATE(1062), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1610), [sym_comment] = ACTIONS(39), }, - [950] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_COLON] = ACTIONS(2606), - [anon_sym_QMARK] = ACTIONS(2606), - [anon_sym_STAR_EQ] = ACTIONS(2606), - [anon_sym_SLASH_EQ] = ACTIONS(2606), - [anon_sym_PERCENT_EQ] = ACTIONS(2606), - [anon_sym_PLUS_EQ] = ACTIONS(2606), - [anon_sym_DASH_EQ] = ACTIONS(2606), - [anon_sym_LT_LT_EQ] = ACTIONS(2606), - [anon_sym_GT_GT_EQ] = ACTIONS(2606), - [anon_sym_AMP_EQ] = ACTIONS(2606), - [anon_sym_CARET_EQ] = ACTIONS(2606), - [anon_sym_PIPE_EQ] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [926] = { + [sym_compound_statement] = STATE(690), + [sym_labeled_statement] = STATE(690), + [sym_expression_statement] = STATE(690), + [sym_if_statement] = STATE(690), + [sym_switch_statement] = STATE(690), + [sym_case_statement] = STATE(690), + [sym_while_statement] = STATE(690), + [sym_do_statement] = STATE(690), + [sym_for_statement] = STATE(690), + [sym_return_statement] = STATE(690), + [sym_break_statement] = STATE(690), + [sym_continue_statement] = STATE(690), + [sym_goto_statement] = STATE(690), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1610), [sym_comment] = ACTIONS(39), }, - [951] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_COLON] = ACTIONS(2606), - [anon_sym_QMARK] = ACTIONS(2606), - [anon_sym_STAR_EQ] = ACTIONS(2606), - [anon_sym_SLASH_EQ] = ACTIONS(2606), - [anon_sym_PERCENT_EQ] = ACTIONS(2606), - [anon_sym_PLUS_EQ] = ACTIONS(2606), - [anon_sym_DASH_EQ] = ACTIONS(2606), - [anon_sym_LT_LT_EQ] = ACTIONS(2606), - [anon_sym_GT_GT_EQ] = ACTIONS(2606), - [anon_sym_AMP_EQ] = ACTIONS(2606), - [anon_sym_CARET_EQ] = ACTIONS(2606), - [anon_sym_PIPE_EQ] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [927] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(2896), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [952] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_COLON] = ACTIONS(2602), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [928] = { + [sym_declaration] = STATE(709), + [sym_type_definition] = STATE(709), + [sym__declaration_specifiers] = STATE(710), + [sym_compound_statement] = STATE(709), + [sym_storage_class_specifier] = STATE(96), + [sym_type_qualifier] = STATE(96), + [sym__type_specifier] = STATE(95), + [sym_sized_type_specifier] = STATE(95), + [sym_enum_specifier] = STATE(95), + [sym_struct_specifier] = STATE(95), + [sym_union_specifier] = STATE(95), + [sym_labeled_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_if_statement] = STATE(709), + [sym_switch_statement] = STATE(709), + [sym_case_statement] = STATE(709), + [sym_while_statement] = STATE(709), + [sym_do_statement] = STATE(709), + [sym_for_statement] = STATE(709), + [sym_return_statement] = STATE(709), + [sym_break_statement] = STATE(709), + [sym_continue_statement] = STATE(709), + [sym_goto_statement] = STATE(709), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [sym_macro_type_specifier] = STATE(95), + [aux_sym__declaration_specifiers_repeat1] = STATE(96), + [aux_sym_sized_type_specifier_repeat1] = STATE(97), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_typedef] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_long] = ACTIONS(177), + [anon_sym_short] = ACTIONS(177), + [sym_primitive_type] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(2898), [sym_comment] = ACTIONS(39), }, - [953] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_COLON] = ACTIONS(2602), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [929] = { + [sym_compound_statement] = STATE(711), + [sym_labeled_statement] = STATE(711), + [sym_expression_statement] = STATE(711), + [sym_if_statement] = STATE(711), + [sym_switch_statement] = STATE(711), + [sym_case_statement] = STATE(711), + [sym_while_statement] = STATE(711), + [sym_do_statement] = STATE(711), + [sym_for_statement] = STATE(711), + [sym_return_statement] = STATE(711), + [sym_break_statement] = STATE(711), + [sym_continue_statement] = STATE(711), + [sym_goto_statement] = STATE(711), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1610), [sym_comment] = ACTIONS(39), }, - [954] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2612), - [anon_sym_COLON] = ACTIONS(2610), - [anon_sym_QMARK] = ACTIONS(2610), - [anon_sym_STAR_EQ] = ACTIONS(2610), - [anon_sym_SLASH_EQ] = ACTIONS(2610), - [anon_sym_PERCENT_EQ] = ACTIONS(2610), - [anon_sym_PLUS_EQ] = ACTIONS(2610), - [anon_sym_DASH_EQ] = ACTIONS(2610), - [anon_sym_LT_LT_EQ] = ACTIONS(2610), - [anon_sym_GT_GT_EQ] = ACTIONS(2610), - [anon_sym_AMP_EQ] = ACTIONS(2610), - [anon_sym_CARET_EQ] = ACTIONS(2610), - [anon_sym_PIPE_EQ] = ACTIONS(2610), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE_PIPE] = ACTIONS(2610), - [anon_sym_AMP_AMP] = ACTIONS(2610), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_CARET] = ACTIONS(2612), - [anon_sym_EQ_EQ] = ACTIONS(2610), - [anon_sym_BANG_EQ] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [930] = { + [sym_declaration] = STATE(1065), + [sym__declaration_specifiers] = STATE(710), + [sym_storage_class_specifier] = STATE(96), + [sym_type_qualifier] = STATE(96), + [sym__type_specifier] = STATE(95), + [sym_sized_type_specifier] = STATE(95), + [sym_enum_specifier] = STATE(95), + [sym_struct_specifier] = STATE(95), + [sym_union_specifier] = STATE(95), + [sym__expression] = STATE(1066), + [sym_conditional_expression] = STATE(1066), + [sym_assignment_expression] = STATE(1066), + [sym_pointer_expression] = STATE(1066), + [sym_logical_expression] = STATE(1066), + [sym_bitwise_expression] = STATE(1066), + [sym_equality_expression] = STATE(1066), + [sym_relational_expression] = STATE(1066), + [sym_shift_expression] = STATE(1066), + [sym_math_expression] = STATE(1066), + [sym_cast_expression] = STATE(1066), + [sym_sizeof_expression] = STATE(1066), + [sym_subscript_expression] = STATE(1066), + [sym_call_expression] = STATE(1066), + [sym_field_expression] = STATE(1066), + [sym_compound_literal_expression] = STATE(1066), + [sym_parenthesized_expression] = STATE(1066), + [sym_char_literal] = STATE(1066), + [sym_concatenated_string] = STATE(1066), + [sym_string_literal] = STATE(376), + [sym_macro_type_specifier] = STATE(95), + [aux_sym__declaration_specifiers_repeat1] = STATE(96), + [aux_sym_sized_type_specifier_repeat1] = STATE(97), + [anon_sym_SEMI] = ACTIONS(2900), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_long] = ACTIONS(177), + [anon_sym_short] = ACTIONS(177), + [sym_primitive_type] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_sizeof] = ACTIONS(859), + [sym_number_literal] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2904), + [sym_false] = ACTIONS(2904), + [sym_null] = ACTIONS(2904), + [sym_identifier] = ACTIONS(1670), [sym_comment] = ACTIONS(39), }, - [955] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2616), - [anon_sym_COLON] = ACTIONS(2614), - [anon_sym_QMARK] = ACTIONS(2614), - [anon_sym_STAR_EQ] = ACTIONS(2614), - [anon_sym_SLASH_EQ] = ACTIONS(2614), - [anon_sym_PERCENT_EQ] = ACTIONS(2614), - [anon_sym_PLUS_EQ] = ACTIONS(2614), - [anon_sym_DASH_EQ] = ACTIONS(2614), - [anon_sym_LT_LT_EQ] = ACTIONS(2614), - [anon_sym_GT_GT_EQ] = ACTIONS(2614), - [anon_sym_AMP_EQ] = ACTIONS(2614), - [anon_sym_CARET_EQ] = ACTIONS(2614), - [anon_sym_PIPE_EQ] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_CARET] = ACTIONS(2616), - [anon_sym_EQ_EQ] = ACTIONS(2614), - [anon_sym_BANG_EQ] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_GT] = ACTIONS(2616), - [anon_sym_LT_EQ] = ACTIONS(2614), - [anon_sym_GT_EQ] = ACTIONS(2614), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [931] = { + [sym_compound_statement] = STATE(728), + [sym_labeled_statement] = STATE(728), + [sym_expression_statement] = STATE(728), + [sym_if_statement] = STATE(728), + [sym_switch_statement] = STATE(728), + [sym_case_statement] = STATE(728), + [sym_while_statement] = STATE(728), + [sym_do_statement] = STATE(728), + [sym_for_statement] = STATE(728), + [sym_return_statement] = STATE(728), + [sym_break_statement] = STATE(728), + [sym_continue_statement] = STATE(728), + [sym_goto_statement] = STATE(728), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1610), [sym_comment] = ACTIONS(39), }, - [956] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2620), - [anon_sym_COLON] = ACTIONS(2618), - [anon_sym_QMARK] = ACTIONS(2618), - [anon_sym_STAR_EQ] = ACTIONS(2618), - [anon_sym_SLASH_EQ] = ACTIONS(2618), - [anon_sym_PERCENT_EQ] = ACTIONS(2618), - [anon_sym_PLUS_EQ] = ACTIONS(2618), - [anon_sym_DASH_EQ] = ACTIONS(2618), - [anon_sym_LT_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_GT_EQ] = ACTIONS(2618), - [anon_sym_AMP_EQ] = ACTIONS(2618), - [anon_sym_CARET_EQ] = ACTIONS(2618), - [anon_sym_PIPE_EQ] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_EQ_EQ] = ACTIONS(2618), - [anon_sym_BANG_EQ] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_LT_LT] = ACTIONS(2620), - [anon_sym_GT_GT] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [932] = { + [sym_compound_statement] = STATE(1067), + [sym_labeled_statement] = STATE(1067), + [sym_expression_statement] = STATE(1067), + [sym_if_statement] = STATE(1067), + [sym_switch_statement] = STATE(1067), + [sym_case_statement] = STATE(1067), + [sym_while_statement] = STATE(1067), + [sym_do_statement] = STATE(1067), + [sym_for_statement] = STATE(1067), + [sym_return_statement] = STATE(1067), + [sym_break_statement] = STATE(1067), + [sym_continue_statement] = STATE(1067), + [sym_goto_statement] = STATE(1067), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1612), [sym_comment] = ACTIONS(39), }, - [957] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2594), - [anon_sym_COLON] = ACTIONS(2592), - [anon_sym_QMARK] = ACTIONS(2592), - [anon_sym_STAR_EQ] = ACTIONS(2592), - [anon_sym_SLASH_EQ] = ACTIONS(2592), - [anon_sym_PERCENT_EQ] = ACTIONS(2592), - [anon_sym_PLUS_EQ] = ACTIONS(2592), - [anon_sym_DASH_EQ] = ACTIONS(2592), - [anon_sym_LT_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_GT_EQ] = ACTIONS(2592), - [anon_sym_AMP_EQ] = ACTIONS(2592), - [anon_sym_CARET_EQ] = ACTIONS(2592), - [anon_sym_PIPE_EQ] = ACTIONS(2592), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2592), - [anon_sym_AMP_AMP] = ACTIONS(2592), - [anon_sym_PIPE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_EQ_EQ] = ACTIONS(2592), - [anon_sym_BANG_EQ] = ACTIONS(2592), - [anon_sym_LT] = ACTIONS(2594), - [anon_sym_GT] = ACTIONS(2594), - [anon_sym_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_EQ] = ACTIONS(2592), - [anon_sym_LT_LT] = ACTIONS(2594), - [anon_sym_GT_GT] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [933] = { + [sym__expression] = STATE(921), + [sym_conditional_expression] = STATE(921), + [sym_assignment_expression] = STATE(921), + [sym_pointer_expression] = STATE(921), + [sym_logical_expression] = STATE(921), + [sym_bitwise_expression] = STATE(921), + [sym_equality_expression] = STATE(921), + [sym_relational_expression] = STATE(921), + [sym_shift_expression] = STATE(921), + [sym_math_expression] = STATE(921), + [sym_cast_expression] = STATE(921), + [sym_sizeof_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_call_expression] = STATE(921), + [sym_field_expression] = STATE(921), + [sym_compound_literal_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(921), + [sym_initializer_list] = STATE(922), + [sym_char_literal] = STATE(921), + [sym_concatenated_string] = STATE(921), + [sym_string_literal] = STATE(421), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2394), + [sym_false] = ACTIONS(2394), + [sym_null] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2394), [sym_comment] = ACTIONS(39), }, - [958] = { - [sym_string_literal] = STATE(958), - [aux_sym_concatenated_string_repeat1] = STATE(958), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_STAR_EQ] = ACTIONS(2626), - [anon_sym_SLASH_EQ] = ACTIONS(2626), - [anon_sym_PERCENT_EQ] = ACTIONS(2626), - [anon_sym_PLUS_EQ] = ACTIONS(2626), - [anon_sym_DASH_EQ] = ACTIONS(2626), - [anon_sym_LT_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_GT_EQ] = ACTIONS(2626), - [anon_sym_AMP_EQ] = ACTIONS(2626), - [anon_sym_CARET_EQ] = ACTIONS(2626), - [anon_sym_PIPE_EQ] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2628), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_EQ_EQ] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2626), - [anon_sym_LT_LT] = ACTIONS(2628), - [anon_sym_GT_GT] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_SLASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_DASH_DASH] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2630), + [934] = { + [anon_sym_RPAREN] = ACTIONS(2906), [sym_comment] = ACTIONS(39), }, - [959] = { - [sym_compound_statement] = STATE(1086), - [sym_labeled_statement] = STATE(1086), - [sym_expression_statement] = STATE(1086), - [sym_if_statement] = STATE(1086), - [sym_switch_statement] = STATE(1086), - [sym_case_statement] = STATE(1086), - [sym_while_statement] = STATE(1086), - [sym_do_statement] = STATE(1086), - [sym_for_statement] = STATE(1086), - [sym_return_statement] = STATE(1086), - [sym_break_statement] = STATE(1086), - [sym_continue_statement] = STATE(1086), - [sym_goto_statement] = STATE(1086), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1741), + [935] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(2540), + [anon_sym_QMARK] = ACTIONS(2540), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [960] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3014), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [936] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2908), + [sym_preproc_directive] = ACTIONS(2908), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_typedef] = ACTIONS(2908), + [anon_sym_extern] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_RBRACE] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_auto] = ACTIONS(2908), + [anon_sym_register] = ACTIONS(2908), + [anon_sym_inline] = ACTIONS(2908), + [anon_sym_const] = ACTIONS(2908), + [anon_sym_restrict] = ACTIONS(2908), + [anon_sym_volatile] = ACTIONS(2908), + [anon_sym__Atomic] = ACTIONS(2908), + [anon_sym_unsigned] = ACTIONS(2908), + [anon_sym_long] = ACTIONS(2908), + [anon_sym_short] = ACTIONS(2908), + [sym_primitive_type] = ACTIONS(2908), + [anon_sym_enum] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_else] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2908), + [anon_sym_case] = ACTIONS(2908), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_goto] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_sizeof] = ACTIONS(2908), + [sym_number_literal] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [sym_true] = ACTIONS(2908), + [sym_false] = ACTIONS(2908), + [sym_null] = ACTIONS(2908), + [sym_identifier] = ACTIONS(2908), [sym_comment] = ACTIONS(39), }, - [961] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3016), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [937] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(2912), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [962] = { - [sym_declaration] = STATE(947), - [sym_type_definition] = STATE(947), - [sym__declaration_specifiers] = STATE(716), - [sym_compound_statement] = STATE(947), + [938] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_COLON] = ACTIONS(2544), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(2546), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [939] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2550), + [anon_sym_COLON] = ACTIONS(2548), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_STAR_EQ] = ACTIONS(2548), + [anon_sym_SLASH_EQ] = ACTIONS(2548), + [anon_sym_PERCENT_EQ] = ACTIONS(2548), + [anon_sym_PLUS_EQ] = ACTIONS(2548), + [anon_sym_DASH_EQ] = ACTIONS(2548), + [anon_sym_LT_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_GT_EQ] = ACTIONS(2548), + [anon_sym_AMP_EQ] = ACTIONS(2548), + [anon_sym_CARET_EQ] = ACTIONS(2548), + [anon_sym_PIPE_EQ] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(2548), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [940] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2550), + [anon_sym_COLON] = ACTIONS(2548), + [anon_sym_QMARK] = ACTIONS(2548), + [anon_sym_STAR_EQ] = ACTIONS(2548), + [anon_sym_SLASH_EQ] = ACTIONS(2548), + [anon_sym_PERCENT_EQ] = ACTIONS(2548), + [anon_sym_PLUS_EQ] = ACTIONS(2548), + [anon_sym_DASH_EQ] = ACTIONS(2548), + [anon_sym_LT_LT_EQ] = ACTIONS(2548), + [anon_sym_GT_GT_EQ] = ACTIONS(2548), + [anon_sym_AMP_EQ] = ACTIONS(2548), + [anon_sym_CARET_EQ] = ACTIONS(2548), + [anon_sym_PIPE_EQ] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(2548), + [anon_sym_AMP_AMP] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [941] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_COLON] = ACTIONS(2544), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [942] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_COLON] = ACTIONS(2544), + [anon_sym_QMARK] = ACTIONS(2544), + [anon_sym_STAR_EQ] = ACTIONS(2544), + [anon_sym_SLASH_EQ] = ACTIONS(2544), + [anon_sym_PERCENT_EQ] = ACTIONS(2544), + [anon_sym_PLUS_EQ] = ACTIONS(2544), + [anon_sym_DASH_EQ] = ACTIONS(2544), + [anon_sym_LT_LT_EQ] = ACTIONS(2544), + [anon_sym_GT_GT_EQ] = ACTIONS(2544), + [anon_sym_AMP_EQ] = ACTIONS(2544), + [anon_sym_CARET_EQ] = ACTIONS(2544), + [anon_sym_PIPE_EQ] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(2544), + [anon_sym_AMP_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2546), + [anon_sym_CARET] = ACTIONS(2546), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [943] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2554), + [anon_sym_COLON] = ACTIONS(2552), + [anon_sym_QMARK] = ACTIONS(2552), + [anon_sym_STAR_EQ] = ACTIONS(2552), + [anon_sym_SLASH_EQ] = ACTIONS(2552), + [anon_sym_PERCENT_EQ] = ACTIONS(2552), + [anon_sym_PLUS_EQ] = ACTIONS(2552), + [anon_sym_DASH_EQ] = ACTIONS(2552), + [anon_sym_LT_LT_EQ] = ACTIONS(2552), + [anon_sym_GT_GT_EQ] = ACTIONS(2552), + [anon_sym_AMP_EQ] = ACTIONS(2552), + [anon_sym_CARET_EQ] = ACTIONS(2552), + [anon_sym_PIPE_EQ] = ACTIONS(2552), + [anon_sym_AMP] = ACTIONS(2554), + [anon_sym_PIPE_PIPE] = ACTIONS(2552), + [anon_sym_AMP_AMP] = ACTIONS(2552), + [anon_sym_PIPE] = ACTIONS(2554), + [anon_sym_CARET] = ACTIONS(2554), + [anon_sym_EQ_EQ] = ACTIONS(2552), + [anon_sym_BANG_EQ] = ACTIONS(2552), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [944] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2558), + [anon_sym_COLON] = ACTIONS(2556), + [anon_sym_QMARK] = ACTIONS(2556), + [anon_sym_STAR_EQ] = ACTIONS(2556), + [anon_sym_SLASH_EQ] = ACTIONS(2556), + [anon_sym_PERCENT_EQ] = ACTIONS(2556), + [anon_sym_PLUS_EQ] = ACTIONS(2556), + [anon_sym_DASH_EQ] = ACTIONS(2556), + [anon_sym_LT_LT_EQ] = ACTIONS(2556), + [anon_sym_GT_GT_EQ] = ACTIONS(2556), + [anon_sym_AMP_EQ] = ACTIONS(2556), + [anon_sym_CARET_EQ] = ACTIONS(2556), + [anon_sym_PIPE_EQ] = ACTIONS(2556), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_PIPE_PIPE] = ACTIONS(2556), + [anon_sym_AMP_AMP] = ACTIONS(2556), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym_EQ_EQ] = ACTIONS(2556), + [anon_sym_BANG_EQ] = ACTIONS(2556), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_LT_EQ] = ACTIONS(2556), + [anon_sym_GT_EQ] = ACTIONS(2556), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [945] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2562), + [anon_sym_COLON] = ACTIONS(2560), + [anon_sym_QMARK] = ACTIONS(2560), + [anon_sym_STAR_EQ] = ACTIONS(2560), + [anon_sym_SLASH_EQ] = ACTIONS(2560), + [anon_sym_PERCENT_EQ] = ACTIONS(2560), + [anon_sym_PLUS_EQ] = ACTIONS(2560), + [anon_sym_DASH_EQ] = ACTIONS(2560), + [anon_sym_LT_LT_EQ] = ACTIONS(2560), + [anon_sym_GT_GT_EQ] = ACTIONS(2560), + [anon_sym_AMP_EQ] = ACTIONS(2560), + [anon_sym_CARET_EQ] = ACTIONS(2560), + [anon_sym_PIPE_EQ] = ACTIONS(2560), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2560), + [anon_sym_AMP_AMP] = ACTIONS(2560), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2560), + [anon_sym_BANG_EQ] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2562), + [anon_sym_LT_EQ] = ACTIONS(2560), + [anon_sym_GT_EQ] = ACTIONS(2560), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2562), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [946] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(2536), + [anon_sym_COLON] = ACTIONS(2534), + [anon_sym_QMARK] = ACTIONS(2534), + [anon_sym_STAR_EQ] = ACTIONS(2534), + [anon_sym_SLASH_EQ] = ACTIONS(2534), + [anon_sym_PERCENT_EQ] = ACTIONS(2534), + [anon_sym_PLUS_EQ] = ACTIONS(2534), + [anon_sym_DASH_EQ] = ACTIONS(2534), + [anon_sym_LT_LT_EQ] = ACTIONS(2534), + [anon_sym_GT_GT_EQ] = ACTIONS(2534), + [anon_sym_AMP_EQ] = ACTIONS(2534), + [anon_sym_CARET_EQ] = ACTIONS(2534), + [anon_sym_PIPE_EQ] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_CARET] = ACTIONS(2536), + [anon_sym_EQ_EQ] = ACTIONS(2534), + [anon_sym_BANG_EQ] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_GT] = ACTIONS(2536), + [anon_sym_LT_EQ] = ACTIONS(2534), + [anon_sym_GT_EQ] = ACTIONS(2534), + [anon_sym_LT_LT] = ACTIONS(2536), + [anon_sym_GT_GT] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [947] = { + [sym_string_literal] = STATE(947), + [aux_sym_concatenated_string_repeat1] = STATE(947), + [anon_sym_LPAREN2] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_EQ] = ACTIONS(2570), + [anon_sym_COLON] = ACTIONS(2568), + [anon_sym_QMARK] = ACTIONS(2568), + [anon_sym_STAR_EQ] = ACTIONS(2568), + [anon_sym_SLASH_EQ] = ACTIONS(2568), + [anon_sym_PERCENT_EQ] = ACTIONS(2568), + [anon_sym_PLUS_EQ] = ACTIONS(2568), + [anon_sym_DASH_EQ] = ACTIONS(2568), + [anon_sym_LT_LT_EQ] = ACTIONS(2568), + [anon_sym_GT_GT_EQ] = ACTIONS(2568), + [anon_sym_AMP_EQ] = ACTIONS(2568), + [anon_sym_CARET_EQ] = ACTIONS(2568), + [anon_sym_PIPE_EQ] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2570), + [anon_sym_PIPE_PIPE] = ACTIONS(2568), + [anon_sym_AMP_AMP] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(2570), + [anon_sym_CARET] = ACTIONS(2570), + [anon_sym_EQ_EQ] = ACTIONS(2568), + [anon_sym_BANG_EQ] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2570), + [anon_sym_GT] = ACTIONS(2570), + [anon_sym_LT_EQ] = ACTIONS(2568), + [anon_sym_GT_EQ] = ACTIONS(2568), + [anon_sym_LT_LT] = ACTIONS(2570), + [anon_sym_GT_GT] = ACTIONS(2570), + [anon_sym_PLUS] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2570), + [anon_sym_SLASH] = ACTIONS(2570), + [anon_sym_PERCENT] = ACTIONS(2570), + [anon_sym_DASH_DASH] = ACTIONS(2568), + [anon_sym_PLUS_PLUS] = ACTIONS(2568), + [anon_sym_DOT] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(2568), + [anon_sym_DQUOTE] = ACTIONS(2572), + [sym_comment] = ACTIONS(39), + }, + [948] = { + [sym_parenthesized_expression] = STATE(1070), + [anon_sym_LPAREN2] = ACTIONS(994), + [sym_comment] = ACTIONS(39), + }, + [949] = { + [sym_parenthesized_expression] = STATE(1071), + [anon_sym_LPAREN2] = ACTIONS(994), + [sym_comment] = ACTIONS(39), + }, + [950] = { + [sym__expression] = STATE(1072), + [sym_conditional_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1072), + [sym_pointer_expression] = STATE(1072), + [sym_logical_expression] = STATE(1072), + [sym_bitwise_expression] = STATE(1072), + [sym_equality_expression] = STATE(1072), + [sym_relational_expression] = STATE(1072), + [sym_shift_expression] = STATE(1072), + [sym_math_expression] = STATE(1072), + [sym_cast_expression] = STATE(1072), + [sym_sizeof_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_call_expression] = STATE(1072), + [sym_field_expression] = STATE(1072), + [sym_compound_literal_expression] = STATE(1072), + [sym_parenthesized_expression] = STATE(1072), + [sym_char_literal] = STATE(1072), + [sym_concatenated_string] = STATE(1072), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2916), + [sym_false] = ACTIONS(2916), + [sym_null] = ACTIONS(2916), + [sym_identifier] = ACTIONS(2916), + [sym_comment] = ACTIONS(39), + }, + [951] = { + [anon_sym_COLON] = ACTIONS(2918), + [sym_comment] = ACTIONS(39), + }, + [952] = { + [sym_parenthesized_expression] = STATE(1074), + [anon_sym_LPAREN2] = ACTIONS(994), + [sym_comment] = ACTIONS(39), + }, + [953] = { + [anon_sym_LPAREN2] = ACTIONS(2920), + [sym_comment] = ACTIONS(39), + }, + [954] = { + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_comment] = ACTIONS(39), + }, + [955] = { + [anon_sym_else] = ACTIONS(2924), + [anon_sym_while] = ACTIONS(2410), + [sym_comment] = ACTIONS(39), + }, + [956] = { + [sym_declaration] = STATE(936), + [sym_type_definition] = STATE(936), + [sym__declaration_specifiers] = STATE(710), + [sym_compound_statement] = STATE(936), [sym_storage_class_specifier] = STATE(96), [sym_type_qualifier] = STATE(96), [sym__type_specifier] = STATE(95), @@ -36931,48 +36983,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(95), [sym_struct_specifier] = STATE(95), [sym_union_specifier] = STATE(95), - [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(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), + [sym_labeled_statement] = STATE(936), + [sym_expression_statement] = STATE(936), + [sym_if_statement] = STATE(936), + [sym_switch_statement] = STATE(936), + [sym_case_statement] = STATE(936), + [sym_while_statement] = STATE(936), + [sym_do_statement] = STATE(936), + [sym_for_statement] = STATE(936), + [sym_return_statement] = STATE(936), + [sym_break_statement] = STATE(936), + [sym_continue_statement] = STATE(936), + [sym_goto_statement] = STATE(936), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(550), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -36988,150 +37040,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(2488), [sym_comment] = ACTIONS(39), }, - [963] = { - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1695), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), - [sym_identifier] = ACTIONS(86), + [957] = { + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_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_COLON] = ACTIONS(1660), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, - [964] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [958] = { + [sym_parenthesized_expression] = STATE(961), + [anon_sym_LPAREN2] = ACTIONS(2926), [sym_comment] = ACTIONS(39), }, - [965] = { - [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(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3020), + [959] = { + [sym__expression] = STATE(1080), + [sym_conditional_expression] = STATE(1080), + [sym_assignment_expression] = STATE(1080), + [sym_pointer_expression] = STATE(1080), + [sym_logical_expression] = STATE(1080), + [sym_bitwise_expression] = STATE(1080), + [sym_equality_expression] = STATE(1080), + [sym_relational_expression] = STATE(1080), + [sym_shift_expression] = STATE(1080), + [sym_math_expression] = STATE(1080), + [sym_cast_expression] = STATE(1080), + [sym_sizeof_expression] = STATE(1080), + [sym_subscript_expression] = STATE(1080), + [sym_call_expression] = STATE(1080), + [sym_field_expression] = STATE(1080), + [sym_compound_literal_expression] = STATE(1080), + [sym_parenthesized_expression] = STATE(1080), + [sym_char_literal] = STATE(1080), + [sym_concatenated_string] = STATE(1080), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(2928), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -37141,201 +37157,219 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3022), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3024), - [sym_false] = ACTIONS(3024), - [sym_null] = ACTIONS(3024), - [sym_identifier] = ACTIONS(3024), + [sym_true] = ACTIONS(2932), + [sym_false] = ACTIONS(2932), + [sym_null] = ACTIONS(2932), + [sym_identifier] = ACTIONS(2932), [sym_comment] = ACTIONS(39), }, - [966] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [960] = { + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [967] = { - [sym__expression] = STATE(1093), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_pointer_expression] = STATE(1093), - [sym_logical_expression] = STATE(1093), - [sym_bitwise_expression] = STATE(1093), - [sym_equality_expression] = STATE(1093), - [sym_relational_expression] = STATE(1093), - [sym_shift_expression] = STATE(1093), - [sym_math_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_field_expression] = STATE(1093), - [sym_compound_literal_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_char_literal] = STATE(1093), - [sym_concatenated_string] = STATE(1093), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3028), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3030), - [sym_false] = ACTIONS(3030), - [sym_null] = ACTIONS(3030), - [sym_identifier] = ACTIONS(3030), + [961] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2936), + [sym_preproc_directive] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_typedef] = ACTIONS(2936), + [anon_sym_extern] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(2938), + [anon_sym_LPAREN2] = ACTIONS(2938), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_auto] = ACTIONS(2936), + [anon_sym_register] = ACTIONS(2936), + [anon_sym_inline] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2936), + [anon_sym_restrict] = ACTIONS(2936), + [anon_sym_volatile] = ACTIONS(2936), + [anon_sym__Atomic] = ACTIONS(2936), + [anon_sym_unsigned] = ACTIONS(2936), + [anon_sym_long] = ACTIONS(2936), + [anon_sym_short] = ACTIONS(2936), + [sym_primitive_type] = ACTIONS(2936), + [anon_sym_enum] = ACTIONS(2936), + [anon_sym_struct] = ACTIONS(2936), + [anon_sym_union] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_else] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2936), + [anon_sym_case] = ACTIONS(2936), + [anon_sym_default] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_do] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_goto] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_sizeof] = ACTIONS(2936), + [sym_number_literal] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [sym_true] = ACTIONS(2936), + [sym_false] = ACTIONS(2936), + [sym_null] = ACTIONS(2936), + [sym_identifier] = ACTIONS(2936), [sym_comment] = ACTIONS(39), }, - [968] = { - [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(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3032), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3034), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3036), - [sym_false] = ACTIONS(3036), - [sym_null] = ACTIONS(3036), - [sym_identifier] = ACTIONS(3036), + [962] = { + [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(409), + [anon_sym_RPAREN] = ACTIONS(2940), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(2942), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2944), + [sym_false] = ACTIONS(2944), + [sym_null] = ACTIONS(2944), + [sym_identifier] = ACTIONS(2944), [sym_comment] = ACTIONS(39), }, - [969] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [963] = { + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [970] = { - [sym__expression] = STATE(1097), - [sym_conditional_expression] = STATE(1097), - [sym_assignment_expression] = STATE(1097), - [sym_pointer_expression] = STATE(1097), - [sym_logical_expression] = STATE(1097), - [sym_bitwise_expression] = STATE(1097), - [sym_equality_expression] = STATE(1097), - [sym_relational_expression] = STATE(1097), - [sym_shift_expression] = STATE(1097), - [sym_math_expression] = STATE(1097), - [sym_cast_expression] = STATE(1097), - [sym_sizeof_expression] = STATE(1097), - [sym_subscript_expression] = STATE(1097), - [sym_call_expression] = STATE(1097), - [sym_field_expression] = STATE(1097), - [sym_compound_literal_expression] = STATE(1097), - [sym_parenthesized_expression] = STATE(1097), - [sym_char_literal] = STATE(1097), - [sym_concatenated_string] = STATE(1097), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3038), + [964] = { + [sym__expression] = STATE(1085), + [sym_conditional_expression] = STATE(1085), + [sym_assignment_expression] = STATE(1085), + [sym_pointer_expression] = STATE(1085), + [sym_logical_expression] = STATE(1085), + [sym_bitwise_expression] = STATE(1085), + [sym_equality_expression] = STATE(1085), + [sym_relational_expression] = STATE(1085), + [sym_shift_expression] = STATE(1085), + [sym_math_expression] = STATE(1085), + [sym_cast_expression] = STATE(1085), + [sym_sizeof_expression] = STATE(1085), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(1085), + [sym_parenthesized_expression] = STATE(1085), + [sym_char_literal] = STATE(1085), + [sym_concatenated_string] = STATE(1085), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -37345,505 +37379,543 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3040), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(2948), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3042), - [sym_false] = ACTIONS(3042), - [sym_null] = ACTIONS(3042), - [sym_identifier] = ACTIONS(3042), + [sym_true] = ACTIONS(2950), + [sym_false] = ACTIONS(2950), + [sym_null] = ACTIONS(2950), + [sym_identifier] = ACTIONS(2950), [sym_comment] = ACTIONS(39), }, - [971] = { - [sym__expression] = STATE(866), - [sym_conditional_expression] = STATE(866), - [sym_assignment_expression] = STATE(866), - [sym_pointer_expression] = STATE(866), - [sym_logical_expression] = STATE(866), - [sym_bitwise_expression] = STATE(866), - [sym_equality_expression] = STATE(866), - [sym_relational_expression] = STATE(866), - [sym_shift_expression] = STATE(866), - [sym_math_expression] = STATE(866), - [sym_cast_expression] = STATE(866), - [sym_sizeof_expression] = STATE(866), - [sym_subscript_expression] = STATE(866), - [sym_call_expression] = STATE(866), - [sym_field_expression] = STATE(866), - [sym_compound_literal_expression] = STATE(866), - [sym_parenthesized_expression] = STATE(866), - [sym_initializer_list] = STATE(867), - [sym_char_literal] = STATE(866), - [sym_concatenated_string] = STATE(866), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_COMMA] = ACTIONS(3044), - [anon_sym_SEMI] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(3046), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_STAR_EQ] = ACTIONS(3044), - [anon_sym_SLASH_EQ] = ACTIONS(3044), - [anon_sym_PERCENT_EQ] = ACTIONS(3044), - [anon_sym_PLUS_EQ] = ACTIONS(3044), - [anon_sym_DASH_EQ] = ACTIONS(3044), - [anon_sym_LT_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_GT_EQ] = ACTIONS(3044), - [anon_sym_AMP_EQ] = ACTIONS(3044), - [anon_sym_CARET_EQ] = ACTIONS(3044), - [anon_sym_PIPE_EQ] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3046), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_BANG] = ACTIONS(3050), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_CARET] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_EQ_EQ] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3048), - [anon_sym_GT] = ACTIONS(3048), - [anon_sym_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_EQ] = ACTIONS(3044), - [anon_sym_LT_LT] = ACTIONS(3048), - [anon_sym_GT_GT] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(598), + [965] = { + [sym__expression] = STATE(921), + [sym_conditional_expression] = STATE(921), + [sym_assignment_expression] = STATE(921), + [sym_pointer_expression] = STATE(921), + [sym_logical_expression] = STATE(921), + [sym_bitwise_expression] = STATE(921), + [sym_equality_expression] = STATE(921), + [sym_relational_expression] = STATE(921), + [sym_shift_expression] = STATE(921), + [sym_math_expression] = STATE(921), + [sym_cast_expression] = STATE(921), + [sym_sizeof_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_call_expression] = STATE(921), + [sym_field_expression] = STATE(921), + [sym_compound_literal_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(921), + [sym_initializer_list] = STATE(922), + [sym_char_literal] = STATE(921), + [sym_concatenated_string] = STATE(921), + [sym_string_literal] = STATE(253), + [anon_sym_COMMA] = ACTIONS(2952), + [anon_sym_SEMI] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_EQ] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2952), + [anon_sym_STAR_EQ] = ACTIONS(2952), + [anon_sym_SLASH_EQ] = ACTIONS(2952), + [anon_sym_PERCENT_EQ] = ACTIONS(2952), + [anon_sym_PLUS_EQ] = ACTIONS(2952), + [anon_sym_DASH_EQ] = ACTIONS(2952), + [anon_sym_LT_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_GT_EQ] = ACTIONS(2952), + [anon_sym_AMP_EQ] = ACTIONS(2952), + [anon_sym_CARET_EQ] = ACTIONS(2952), + [anon_sym_PIPE_EQ] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE_PIPE] = ACTIONS(2952), + [anon_sym_AMP_AMP] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_PIPE] = ACTIONS(2956), + [anon_sym_CARET] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_EQ_EQ] = ACTIONS(2952), + [anon_sym_BANG_EQ] = ACTIONS(2952), + [anon_sym_LT] = ACTIONS(2956), + [anon_sym_GT] = ACTIONS(2956), + [anon_sym_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_EQ] = ACTIONS(2952), + [anon_sym_LT_LT] = ACTIONS(2956), + [anon_sym_GT_GT] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [anon_sym_DOT] = ACTIONS(2952), + [anon_sym_DASH_GT] = ACTIONS(2952), + [sym_number_literal] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2394), + [sym_false] = ACTIONS(2394), + [sym_null] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2394), + [sym_comment] = ACTIONS(39), + }, + [966] = { + [sym__expression] = STATE(1086), + [sym_conditional_expression] = STATE(1086), + [sym_assignment_expression] = STATE(1086), + [sym_pointer_expression] = STATE(1086), + [sym_logical_expression] = STATE(1086), + [sym_bitwise_expression] = STATE(1086), + [sym_equality_expression] = STATE(1086), + [sym_relational_expression] = STATE(1086), + [sym_shift_expression] = STATE(1086), + [sym_math_expression] = STATE(1086), + [sym_cast_expression] = STATE(1086), + [sym_sizeof_expression] = STATE(1086), + [sym_subscript_expression] = STATE(1086), + [sym_call_expression] = STATE(1086), + [sym_field_expression] = STATE(1086), + [sym_compound_literal_expression] = STATE(1086), + [sym_parenthesized_expression] = STATE(1086), + [sym_char_literal] = STATE(1086), + [sym_concatenated_string] = STATE(1086), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(2960), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2962), + [sym_false] = ACTIONS(2962), + [sym_null] = ACTIONS(2962), + [sym_identifier] = ACTIONS(2962), + [sym_comment] = ACTIONS(39), + }, + [967] = { + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_RPAREN] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(2964), + [anon_sym_RBRACE] = ACTIONS(2964), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_STAR] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_RBRACK] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2964), + [anon_sym_STAR_EQ] = ACTIONS(2964), + [anon_sym_SLASH_EQ] = ACTIONS(2964), + [anon_sym_PERCENT_EQ] = ACTIONS(2964), + [anon_sym_PLUS_EQ] = ACTIONS(2964), + [anon_sym_DASH_EQ] = ACTIONS(2964), + [anon_sym_LT_LT_EQ] = ACTIONS(2964), + [anon_sym_GT_GT_EQ] = ACTIONS(2964), + [anon_sym_AMP_EQ] = ACTIONS(2964), + [anon_sym_CARET_EQ] = ACTIONS(2964), + [anon_sym_PIPE_EQ] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_PIPE_PIPE] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_PIPE] = ACTIONS(2966), + [anon_sym_CARET] = ACTIONS(2966), + [anon_sym_EQ_EQ] = ACTIONS(2964), + [anon_sym_BANG_EQ] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_GT] = ACTIONS(2966), + [anon_sym_LT_EQ] = ACTIONS(2964), + [anon_sym_GT_EQ] = ACTIONS(2964), + [anon_sym_LT_LT] = ACTIONS(2966), + [anon_sym_GT_GT] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2966), + [anon_sym_DASH] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2966), + [anon_sym_PERCENT] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2964), + [anon_sym_PLUS_PLUS] = ACTIONS(2964), + [anon_sym_DOT] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(2964), + [sym_comment] = ACTIONS(39), + }, + [968] = { + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(2968), + [sym_comment] = ACTIONS(39), + }, + [969] = { + [anon_sym_COMMA] = ACTIONS(2970), + [anon_sym_RPAREN] = ACTIONS(2970), + [anon_sym_SEMI] = ACTIONS(2970), + [anon_sym_RBRACE] = ACTIONS(2970), + [anon_sym_LPAREN2] = ACTIONS(2970), + [anon_sym_STAR] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_RBRACK] = ACTIONS(2970), + [anon_sym_EQ] = ACTIONS(2972), + [anon_sym_COLON] = ACTIONS(2970), + [anon_sym_QMARK] = ACTIONS(2970), + [anon_sym_STAR_EQ] = ACTIONS(2970), + [anon_sym_SLASH_EQ] = ACTIONS(2970), + [anon_sym_PERCENT_EQ] = ACTIONS(2970), + [anon_sym_PLUS_EQ] = ACTIONS(2970), + [anon_sym_DASH_EQ] = ACTIONS(2970), + [anon_sym_LT_LT_EQ] = ACTIONS(2970), + [anon_sym_GT_GT_EQ] = ACTIONS(2970), + [anon_sym_AMP_EQ] = ACTIONS(2970), + [anon_sym_CARET_EQ] = ACTIONS(2970), + [anon_sym_PIPE_EQ] = ACTIONS(2970), + [anon_sym_AMP] = ACTIONS(2972), + [anon_sym_PIPE_PIPE] = ACTIONS(2970), + [anon_sym_AMP_AMP] = ACTIONS(2970), + [anon_sym_PIPE] = ACTIONS(2972), + [anon_sym_CARET] = ACTIONS(2972), + [anon_sym_EQ_EQ] = ACTIONS(2970), + [anon_sym_BANG_EQ] = ACTIONS(2970), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_GT] = ACTIONS(2972), + [anon_sym_LT_EQ] = ACTIONS(2970), + [anon_sym_GT_EQ] = ACTIONS(2970), + [anon_sym_LT_LT] = ACTIONS(2972), + [anon_sym_GT_GT] = ACTIONS(2972), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_SLASH] = ACTIONS(2972), + [anon_sym_PERCENT] = ACTIONS(2972), + [anon_sym_DASH_DASH] = ACTIONS(2970), + [anon_sym_PLUS_PLUS] = ACTIONS(2970), + [anon_sym_DOT] = ACTIONS(2970), + [anon_sym_DASH_GT] = ACTIONS(2970), + [sym_comment] = ACTIONS(39), + }, + [970] = { + [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(253), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2974), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2332), + [sym_true] = ACTIONS(2976), + [sym_false] = ACTIONS(2976), + [sym_null] = ACTIONS(2976), + [sym_identifier] = ACTIONS(2976), + [sym_comment] = ACTIONS(39), + }, + [971] = { + [sym__declarator] = STATE(218), + [sym__abstract_declarator] = STATE(618), + [sym_pointer_declarator] = STATE(218), + [sym_abstract_pointer_declarator] = STATE(618), + [sym_function_declarator] = STATE(218), + [sym_abstract_function_declarator] = STATE(618), + [sym_array_declarator] = STATE(218), + [sym_abstract_array_declarator] = STATE(618), + [sym_type_qualifier] = STATE(1090), + [sym_parameter_list] = STATE(212), + [aux_sym_type_definition_repeat1] = STATE(1090), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_LPAREN2] = ACTIONS(1142), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(532), [sym_comment] = ACTIONS(39), }, [972] = { - [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(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [sym_null] = ACTIONS(3054), - [sym_identifier] = ACTIONS(3054), + [sym_type_qualifier] = STATE(972), + [aux_sym_type_definition_repeat1] = STATE(972), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_const] = ACTIONS(436), + [anon_sym_restrict] = ACTIONS(436), + [anon_sym_volatile] = ACTIONS(436), + [anon_sym__Atomic] = ACTIONS(436), + [sym_identifier] = ACTIONS(439), [sym_comment] = ACTIONS(39), }, [973] = { - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_COMMA] = ACTIONS(3056), - [anon_sym_RPAREN] = ACTIONS(3056), - [anon_sym_SEMI] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_RBRACK] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(3058), - [anon_sym_COLON] = ACTIONS(3056), - [anon_sym_QMARK] = ACTIONS(3056), - [anon_sym_STAR_EQ] = ACTIONS(3056), - [anon_sym_SLASH_EQ] = ACTIONS(3056), - [anon_sym_PERCENT_EQ] = ACTIONS(3056), - [anon_sym_PLUS_EQ] = ACTIONS(3056), - [anon_sym_DASH_EQ] = ACTIONS(3056), - [anon_sym_LT_LT_EQ] = ACTIONS(3056), - [anon_sym_GT_GT_EQ] = ACTIONS(3056), - [anon_sym_AMP_EQ] = ACTIONS(3056), - [anon_sym_CARET_EQ] = ACTIONS(3056), - [anon_sym_PIPE_EQ] = ACTIONS(3056), - [anon_sym_AMP] = ACTIONS(3058), - [anon_sym_PIPE_PIPE] = ACTIONS(3056), - [anon_sym_AMP_AMP] = ACTIONS(3056), - [anon_sym_PIPE] = ACTIONS(3058), - [anon_sym_CARET] = ACTIONS(3058), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_BANG_EQ] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3058), - [anon_sym_GT] = ACTIONS(3058), - [anon_sym_LT_EQ] = ACTIONS(3056), - [anon_sym_GT_EQ] = ACTIONS(3056), - [anon_sym_LT_LT] = ACTIONS(3058), - [anon_sym_GT_GT] = ACTIONS(3058), - [anon_sym_PLUS] = ACTIONS(3058), - [anon_sym_DASH] = ACTIONS(3058), - [anon_sym_SLASH] = ACTIONS(3058), - [anon_sym_PERCENT] = ACTIONS(3058), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DOT] = ACTIONS(3056), - [anon_sym_DASH_GT] = ACTIONS(3056), + [sym__expression] = STATE(921), + [sym_conditional_expression] = STATE(921), + [sym_assignment_expression] = STATE(921), + [sym_pointer_expression] = STATE(921), + [sym_logical_expression] = STATE(921), + [sym_bitwise_expression] = STATE(921), + [sym_equality_expression] = STATE(921), + [sym_relational_expression] = STATE(921), + [sym_shift_expression] = STATE(921), + [sym_math_expression] = STATE(921), + [sym_cast_expression] = STATE(921), + [sym_sizeof_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_call_expression] = STATE(921), + [sym_field_expression] = STATE(921), + [sym_compound_literal_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(921), + [sym_initializer_list] = STATE(922), + [sym_char_literal] = STATE(921), + [sym_concatenated_string] = STATE(921), + [sym_string_literal] = STATE(272), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_RBRACK] = ACTIONS(2952), + [anon_sym_EQ] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2952), + [anon_sym_STAR_EQ] = ACTIONS(2952), + [anon_sym_SLASH_EQ] = ACTIONS(2952), + [anon_sym_PERCENT_EQ] = ACTIONS(2952), + [anon_sym_PLUS_EQ] = ACTIONS(2952), + [anon_sym_DASH_EQ] = ACTIONS(2952), + [anon_sym_LT_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_GT_EQ] = ACTIONS(2952), + [anon_sym_AMP_EQ] = ACTIONS(2952), + [anon_sym_CARET_EQ] = ACTIONS(2952), + [anon_sym_PIPE_EQ] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2952), + [anon_sym_AMP_AMP] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(2980), + [anon_sym_PIPE] = ACTIONS(2956), + [anon_sym_CARET] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_EQ_EQ] = ACTIONS(2952), + [anon_sym_BANG_EQ] = ACTIONS(2952), + [anon_sym_LT] = ACTIONS(2956), + [anon_sym_GT] = ACTIONS(2956), + [anon_sym_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_EQ] = ACTIONS(2952), + [anon_sym_LT_LT] = ACTIONS(2956), + [anon_sym_GT_GT] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [anon_sym_DOT] = ACTIONS(2952), + [anon_sym_DASH_GT] = ACTIONS(2952), + [sym_number_literal] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2394), + [sym_false] = ACTIONS(2394), + [sym_null] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2394), [sym_comment] = ACTIONS(39), }, [974] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3060), + [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(272), + [anon_sym_LPAREN2] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_sizeof] = ACTIONS(624), + [sym_number_literal] = ACTIONS(2982), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2984), + [sym_false] = ACTIONS(2984), + [sym_null] = ACTIONS(2984), + [sym_identifier] = ACTIONS(2984), [sym_comment] = ACTIONS(39), }, [975] = { - [anon_sym_LPAREN] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(3062), - [anon_sym_RPAREN] = ACTIONS(3062), - [anon_sym_SEMI] = ACTIONS(3062), - [anon_sym_RBRACE] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(3064), - [anon_sym_LBRACK] = ACTIONS(3062), - [anon_sym_RBRACK] = ACTIONS(3062), - [anon_sym_EQ] = ACTIONS(3064), - [anon_sym_COLON] = ACTIONS(3062), - [anon_sym_QMARK] = ACTIONS(3062), - [anon_sym_STAR_EQ] = ACTIONS(3062), - [anon_sym_SLASH_EQ] = ACTIONS(3062), - [anon_sym_PERCENT_EQ] = ACTIONS(3062), - [anon_sym_PLUS_EQ] = ACTIONS(3062), - [anon_sym_DASH_EQ] = ACTIONS(3062), - [anon_sym_LT_LT_EQ] = ACTIONS(3062), - [anon_sym_GT_GT_EQ] = ACTIONS(3062), - [anon_sym_AMP_EQ] = ACTIONS(3062), - [anon_sym_CARET_EQ] = ACTIONS(3062), - [anon_sym_PIPE_EQ] = ACTIONS(3062), - [anon_sym_AMP] = ACTIONS(3064), - [anon_sym_PIPE_PIPE] = ACTIONS(3062), - [anon_sym_AMP_AMP] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3064), - [anon_sym_CARET] = ACTIONS(3064), - [anon_sym_EQ_EQ] = ACTIONS(3062), - [anon_sym_BANG_EQ] = ACTIONS(3062), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_GT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(3062), - [anon_sym_GT_EQ] = ACTIONS(3062), - [anon_sym_LT_LT] = ACTIONS(3064), - [anon_sym_GT_GT] = ACTIONS(3064), - [anon_sym_PLUS] = ACTIONS(3064), - [anon_sym_DASH] = ACTIONS(3064), - [anon_sym_SLASH] = ACTIONS(3064), - [anon_sym_PERCENT] = ACTIONS(3064), - [anon_sym_DASH_DASH] = ACTIONS(3062), - [anon_sym_PLUS_PLUS] = ACTIONS(3062), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_DASH_GT] = ACTIONS(3062), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_EQ] = ACTIONS(2986), + [anon_sym_DOT] = ACTIONS(2986), [sym_comment] = ACTIONS(39), }, [976] = { - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3068), - [sym_false] = ACTIONS(3068), - [sym_null] = ACTIONS(3068), - [sym_identifier] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(2988), + [anon_sym_RPAREN] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(2988), + [anon_sym_RBRACE] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_RBRACK] = ACTIONS(2988), + [anon_sym_EQ] = ACTIONS(2990), + [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_QMARK] = ACTIONS(2988), + [anon_sym_STAR_EQ] = ACTIONS(2988), + [anon_sym_SLASH_EQ] = ACTIONS(2988), + [anon_sym_PERCENT_EQ] = ACTIONS(2988), + [anon_sym_PLUS_EQ] = ACTIONS(2988), + [anon_sym_DASH_EQ] = ACTIONS(2988), + [anon_sym_LT_LT_EQ] = ACTIONS(2988), + [anon_sym_GT_GT_EQ] = ACTIONS(2988), + [anon_sym_AMP_EQ] = ACTIONS(2988), + [anon_sym_CARET_EQ] = ACTIONS(2988), + [anon_sym_PIPE_EQ] = ACTIONS(2988), + [anon_sym_AMP] = ACTIONS(2990), + [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [anon_sym_AMP_AMP] = ACTIONS(2988), + [anon_sym_PIPE] = ACTIONS(2990), + [anon_sym_CARET] = ACTIONS(2990), + [anon_sym_EQ_EQ] = ACTIONS(2988), + [anon_sym_BANG_EQ] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2990), + [anon_sym_GT] = ACTIONS(2990), + [anon_sym_LT_EQ] = ACTIONS(2988), + [anon_sym_GT_EQ] = ACTIONS(2988), + [anon_sym_LT_LT] = ACTIONS(2990), + [anon_sym_GT_GT] = ACTIONS(2990), + [anon_sym_PLUS] = ACTIONS(2990), + [anon_sym_DASH] = ACTIONS(2990), + [anon_sym_SLASH] = ACTIONS(2990), + [anon_sym_PERCENT] = ACTIONS(2990), + [anon_sym_DASH_DASH] = ACTIONS(2988), + [anon_sym_PLUS_PLUS] = ACTIONS(2988), + [anon_sym_DOT] = ACTIONS(2988), + [anon_sym_DASH_GT] = ACTIONS(2988), [sym_comment] = ACTIONS(39), }, [977] = { - [sym__expression] = STATE(866), - [sym_conditional_expression] = STATE(866), - [sym_assignment_expression] = STATE(866), - [sym_pointer_expression] = STATE(866), - [sym_logical_expression] = STATE(866), - [sym_bitwise_expression] = STATE(866), - [sym_equality_expression] = STATE(866), - [sym_relational_expression] = STATE(866), - [sym_shift_expression] = STATE(866), - [sym_math_expression] = STATE(866), - [sym_cast_expression] = STATE(866), - [sym_sizeof_expression] = STATE(866), - [sym_subscript_expression] = STATE(866), - [sym_call_expression] = STATE(866), - [sym_field_expression] = STATE(866), - [sym_compound_literal_expression] = STATE(866), - [sym_parenthesized_expression] = STATE(866), - [sym_initializer_list] = STATE(867), - [sym_char_literal] = STATE(866), - [sym_concatenated_string] = STATE(866), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_RBRACK] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_STAR_EQ] = ACTIONS(3044), - [anon_sym_SLASH_EQ] = ACTIONS(3044), - [anon_sym_PERCENT_EQ] = ACTIONS(3044), - [anon_sym_PLUS_EQ] = ACTIONS(3044), - [anon_sym_DASH_EQ] = ACTIONS(3044), - [anon_sym_LT_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_GT_EQ] = ACTIONS(3044), - [anon_sym_AMP_EQ] = ACTIONS(3044), - [anon_sym_CARET_EQ] = ACTIONS(3044), - [anon_sym_PIPE_EQ] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_BANG] = ACTIONS(3072), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_CARET] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_EQ_EQ] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3048), - [anon_sym_GT] = ACTIONS(3048), - [anon_sym_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_EQ] = ACTIONS(3044), - [anon_sym_LT_LT] = ACTIONS(3048), - [anon_sym_GT_GT] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2332), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2992), + [anon_sym_RBRACE] = ACTIONS(2992), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(1355), + [anon_sym_STAR_EQ] = ACTIONS(1357), + [anon_sym_SLASH_EQ] = ACTIONS(1357), + [anon_sym_PERCENT_EQ] = ACTIONS(1357), + [anon_sym_PLUS_EQ] = ACTIONS(1357), + [anon_sym_DASH_EQ] = ACTIONS(1357), + [anon_sym_LT_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_GT_EQ] = ACTIONS(1357), + [anon_sym_AMP_EQ] = ACTIONS(1357), + [anon_sym_CARET_EQ] = ACTIONS(1357), + [anon_sym_PIPE_EQ] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1365), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [978] = { - [sym__expression] = STATE(1102), - [sym_conditional_expression] = STATE(1102), - [sym_assignment_expression] = STATE(1102), - [sym_pointer_expression] = STATE(1102), - [sym_logical_expression] = STATE(1102), - [sym_bitwise_expression] = STATE(1102), - [sym_equality_expression] = STATE(1102), - [sym_relational_expression] = STATE(1102), - [sym_shift_expression] = STATE(1102), - [sym_math_expression] = STATE(1102), - [sym_cast_expression] = STATE(1102), - [sym_sizeof_expression] = STATE(1102), - [sym_subscript_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_field_expression] = STATE(1102), - [sym_compound_literal_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_char_literal] = STATE(1102), - [sym_concatenated_string] = STATE(1102), - [sym_string_literal] = STATE(273), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_BANG] = ACTIONS(614), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_sizeof] = ACTIONS(622), - [sym_number_literal] = ACTIONS(3074), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3076), - [sym_false] = ACTIONS(3076), - [sym_null] = ACTIONS(3076), - [sym_identifier] = ACTIONS(3076), + [anon_sym_COMMA] = ACTIONS(2992), + [anon_sym_RBRACE] = ACTIONS(2992), [sym_comment] = ACTIONS(39), }, [979] = { - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_EQ] = ACTIONS(3078), - [anon_sym_DOT] = ACTIONS(3078), - [sym_comment] = ACTIONS(39), - }, - [980] = { - [anon_sym_LPAREN] = ACTIONS(3080), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3082), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_RBRACK] = ACTIONS(3080), - [anon_sym_EQ] = ACTIONS(3082), - [anon_sym_COLON] = ACTIONS(3080), - [anon_sym_QMARK] = ACTIONS(3080), - [anon_sym_STAR_EQ] = ACTIONS(3080), - [anon_sym_SLASH_EQ] = ACTIONS(3080), - [anon_sym_PERCENT_EQ] = ACTIONS(3080), - [anon_sym_PLUS_EQ] = ACTIONS(3080), - [anon_sym_DASH_EQ] = ACTIONS(3080), - [anon_sym_LT_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_GT_EQ] = ACTIONS(3080), - [anon_sym_AMP_EQ] = ACTIONS(3080), - [anon_sym_CARET_EQ] = ACTIONS(3080), - [anon_sym_PIPE_EQ] = ACTIONS(3080), - [anon_sym_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_CARET] = ACTIONS(3082), - [anon_sym_EQ_EQ] = ACTIONS(3080), - [anon_sym_BANG_EQ] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_LT_EQ] = ACTIONS(3080), - [anon_sym_GT_EQ] = ACTIONS(3080), - [anon_sym_LT_LT] = ACTIONS(3082), - [anon_sym_GT_GT] = ACTIONS(3082), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(3082), - [anon_sym_SLASH] = ACTIONS(3082), - [anon_sym_PERCENT] = ACTIONS(3082), - [anon_sym_DASH_DASH] = ACTIONS(3080), - [anon_sym_PLUS_PLUS] = ACTIONS(3080), - [anon_sym_DOT] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(3080), - [sym_comment] = ACTIONS(39), - }, - [981] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1361), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_STAR_EQ] = ACTIONS(1365), - [anon_sym_SLASH_EQ] = ACTIONS(1365), - [anon_sym_PERCENT_EQ] = ACTIONS(1365), - [anon_sym_PLUS_EQ] = ACTIONS(1365), - [anon_sym_DASH_EQ] = ACTIONS(1365), - [anon_sym_LT_LT_EQ] = ACTIONS(1365), - [anon_sym_GT_GT_EQ] = ACTIONS(1365), - [anon_sym_AMP_EQ] = ACTIONS(1365), - [anon_sym_CARET_EQ] = ACTIONS(1365), - [anon_sym_PIPE_EQ] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1371), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_EQ_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(1381), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [982] = { - [anon_sym_COMMA] = ACTIONS(3084), - [anon_sym_RBRACE] = ACTIONS(3084), - [sym_comment] = ACTIONS(39), - }, - [983] = { - [sym__expression] = STATE(981), - [sym_conditional_expression] = STATE(981), - [sym_assignment_expression] = STATE(981), - [sym_pointer_expression] = STATE(981), - [sym_logical_expression] = STATE(981), - [sym_bitwise_expression] = STATE(981), - [sym_equality_expression] = STATE(981), - [sym_relational_expression] = STATE(981), - [sym_shift_expression] = STATE(981), - [sym_math_expression] = STATE(981), - [sym_cast_expression] = STATE(981), - [sym_sizeof_expression] = STATE(981), - [sym_subscript_expression] = STATE(981), - [sym_call_expression] = STATE(981), - [sym_field_expression] = STATE(981), - [sym_compound_literal_expression] = STATE(981), - [sym_parenthesized_expression] = STATE(981), - [sym_initializer_list] = STATE(982), - [sym_initializer_pair] = STATE(982), + [sym__expression] = STATE(977), + [sym_conditional_expression] = STATE(977), + [sym_assignment_expression] = STATE(977), + [sym_pointer_expression] = STATE(977), + [sym_logical_expression] = STATE(977), + [sym_bitwise_expression] = STATE(977), + [sym_equality_expression] = STATE(977), + [sym_relational_expression] = STATE(977), + [sym_shift_expression] = STATE(977), + [sym_math_expression] = STATE(977), + [sym_cast_expression] = STATE(977), + [sym_sizeof_expression] = STATE(977), + [sym_subscript_expression] = STATE(977), + [sym_call_expression] = STATE(977), + [sym_field_expression] = STATE(977), + [sym_compound_literal_expression] = STATE(977), + [sym_parenthesized_expression] = STATE(977), + [sym_initializer_list] = STATE(978), + [sym_initializer_pair] = STATE(978), [sym_subscript_designator] = STATE(506), [sym_field_designator] = STATE(506), - [sym_char_literal] = STATE(981), - [sym_concatenated_string] = STATE(981), - [sym_string_literal] = STATE(348), + [sym_char_literal] = STATE(977), + [sym_concatenated_string] = STATE(977), + [sym_string_literal] = STATE(346), [aux_sym_initializer_pair_repeat1] = STATE(506), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(2994), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1202), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), [anon_sym_TILDE] = ACTIONS(813), @@ -37852,184 +37924,183 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [anon_sym_DOT] = ACTIONS(1206), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(1204), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2651), - [sym_false] = ACTIONS(2651), - [sym_null] = ACTIONS(2651), - [sym_identifier] = ACTIONS(2651), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_null] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2607), [sym_comment] = ACTIONS(39), }, - [984] = { - [aux_sym_initializer_list_repeat1] = STATE(984), - [anon_sym_COMMA] = ACTIONS(3088), - [anon_sym_RBRACE] = ACTIONS(3084), + [980] = { + [aux_sym_initializer_list_repeat1] = STATE(980), + [anon_sym_COMMA] = ACTIONS(2996), + [anon_sym_RBRACE] = ACTIONS(2992), [sym_comment] = ACTIONS(39), }, - [985] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1361), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_STAR_EQ] = ACTIONS(1365), - [anon_sym_SLASH_EQ] = ACTIONS(1365), - [anon_sym_PERCENT_EQ] = ACTIONS(1365), - [anon_sym_PLUS_EQ] = ACTIONS(1365), - [anon_sym_DASH_EQ] = ACTIONS(1365), - [anon_sym_LT_LT_EQ] = ACTIONS(1365), - [anon_sym_GT_GT_EQ] = ACTIONS(1365), - [anon_sym_AMP_EQ] = ACTIONS(1365), - [anon_sym_CARET_EQ] = ACTIONS(1365), - [anon_sym_PIPE_EQ] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1371), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_EQ_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(1381), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [981] = { + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_RBRACE] = ACTIONS(2999), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(1355), + [anon_sym_STAR_EQ] = ACTIONS(1357), + [anon_sym_SLASH_EQ] = ACTIONS(1357), + [anon_sym_PERCENT_EQ] = ACTIONS(1357), + [anon_sym_PLUS_EQ] = ACTIONS(1357), + [anon_sym_DASH_EQ] = ACTIONS(1357), + [anon_sym_LT_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_GT_EQ] = ACTIONS(1357), + [anon_sym_AMP_EQ] = ACTIONS(1357), + [anon_sym_CARET_EQ] = ACTIONS(1357), + [anon_sym_PIPE_EQ] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1365), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [986] = { - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_RBRACE] = ACTIONS(3091), + [982] = { + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_RBRACE] = ACTIONS(2999), [sym_comment] = ACTIONS(39), }, - [987] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1223), - [anon_sym_LPAREN] = ACTIONS(1221), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1223), - [sym_preproc_directive] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym_typedef] = ACTIONS(1223), - [anon_sym_extern] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_auto] = ACTIONS(1223), - [anon_sym_register] = ACTIONS(1223), - [anon_sym_inline] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(1223), - [anon_sym_restrict] = ACTIONS(1223), - [anon_sym_volatile] = ACTIONS(1223), - [anon_sym__Atomic] = ACTIONS(1223), - [anon_sym_unsigned] = ACTIONS(1223), - [anon_sym_long] = ACTIONS(1223), - [anon_sym_short] = ACTIONS(1223), - [sym_primitive_type] = ACTIONS(1223), - [anon_sym_enum] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_union] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_case] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_goto] = ACTIONS(1223), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_TILDE] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1221), - [anon_sym_PLUS_PLUS] = ACTIONS(1221), - [anon_sym_sizeof] = ACTIONS(1223), - [sym_number_literal] = ACTIONS(1221), - [anon_sym_SQUOTE] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1221), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [sym_null] = ACTIONS(1223), - [sym_identifier] = ACTIONS(1223), + [983] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1227), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1227), + [sym_preproc_directive] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_typedef] = ACTIONS(1227), + [anon_sym_extern] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_static] = ACTIONS(1227), + [anon_sym_auto] = ACTIONS(1227), + [anon_sym_register] = ACTIONS(1227), + [anon_sym_inline] = ACTIONS(1227), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_restrict] = ACTIONS(1227), + [anon_sym_volatile] = ACTIONS(1227), + [anon_sym__Atomic] = ACTIONS(1227), + [anon_sym_unsigned] = ACTIONS(1227), + [anon_sym_long] = ACTIONS(1227), + [anon_sym_short] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1227), + [anon_sym_enum] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_union] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_switch] = ACTIONS(1227), + [anon_sym_case] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_do] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_goto] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_sizeof] = ACTIONS(1227), + [sym_number_literal] = ACTIONS(1225), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_true] = ACTIONS(1227), + [sym_false] = ACTIONS(1227), + [sym_null] = ACTIONS(1227), + [sym_identifier] = ACTIONS(1227), [sym_comment] = ACTIONS(39), }, - [988] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(1231), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1233), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1233), - [sym_preproc_directive] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_typedef] = ACTIONS(1233), - [anon_sym_extern] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1231), - [anon_sym_static] = ACTIONS(1233), - [anon_sym_auto] = ACTIONS(1233), - [anon_sym_register] = ACTIONS(1233), - [anon_sym_inline] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_restrict] = ACTIONS(1233), - [anon_sym_volatile] = ACTIONS(1233), - [anon_sym__Atomic] = ACTIONS(1233), - [anon_sym_unsigned] = ACTIONS(1233), - [anon_sym_long] = ACTIONS(1233), - [anon_sym_short] = ACTIONS(1233), - [sym_primitive_type] = ACTIONS(1233), - [anon_sym_enum] = ACTIONS(1233), - [anon_sym_struct] = ACTIONS(1233), - [anon_sym_union] = ACTIONS(1233), - [anon_sym_if] = ACTIONS(1233), - [anon_sym_switch] = ACTIONS(1233), - [anon_sym_case] = ACTIONS(1233), - [anon_sym_default] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1233), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_return] = ACTIONS(1233), - [anon_sym_break] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(1233), - [anon_sym_goto] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1231), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_TILDE] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1231), - [anon_sym_PLUS_PLUS] = ACTIONS(1231), - [anon_sym_sizeof] = ACTIONS(1233), - [sym_number_literal] = ACTIONS(1231), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(1231), - [sym_true] = ACTIONS(1233), - [sym_false] = ACTIONS(1233), - [sym_null] = ACTIONS(1233), - [sym_identifier] = ACTIONS(1233), + [984] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1313), + [sym_preproc_directive] = ACTIONS(1313), + [anon_sym_typedef] = ACTIONS(1313), + [anon_sym_extern] = ACTIONS(1313), + [anon_sym_static] = ACTIONS(1313), + [anon_sym_auto] = ACTIONS(1313), + [anon_sym_register] = ACTIONS(1313), + [anon_sym_inline] = ACTIONS(1313), + [anon_sym_const] = ACTIONS(1313), + [anon_sym_restrict] = ACTIONS(1313), + [anon_sym_volatile] = ACTIONS(1313), + [anon_sym__Atomic] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(1313), + [anon_sym_long] = ACTIONS(1313), + [anon_sym_short] = ACTIONS(1313), + [sym_primitive_type] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1313), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_union] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1313), [sym_comment] = ACTIONS(39), }, - [989] = { + [985] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1317), + [sym_preproc_directive] = ACTIONS(1317), + [anon_sym_typedef] = ACTIONS(1317), + [anon_sym_extern] = ACTIONS(1317), + [anon_sym_static] = ACTIONS(1317), + [anon_sym_auto] = ACTIONS(1317), + [anon_sym_register] = ACTIONS(1317), + [anon_sym_inline] = ACTIONS(1317), + [anon_sym_const] = ACTIONS(1317), + [anon_sym_restrict] = ACTIONS(1317), + [anon_sym_volatile] = ACTIONS(1317), + [anon_sym__Atomic] = ACTIONS(1317), + [anon_sym_unsigned] = ACTIONS(1317), + [anon_sym_long] = ACTIONS(1317), + [anon_sym_short] = ACTIONS(1317), + [sym_primitive_type] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1317), + [anon_sym_struct] = ACTIONS(1317), + [anon_sym_union] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1317), + [sym_comment] = ACTIONS(39), + }, + [986] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1321), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1321), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1321), @@ -38057,301 +38128,245 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(1321), [sym_comment] = ACTIONS(39), }, - [990] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1325), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1325), - [sym_preproc_directive] = ACTIONS(1325), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [sym_identifier] = ACTIONS(1325), - [sym_comment] = ACTIONS(39), - }, - [991] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1329), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1329), - [sym_preproc_directive] = ACTIONS(1329), - [anon_sym_typedef] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_auto] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_inline] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_restrict] = ACTIONS(1329), - [anon_sym_volatile] = ACTIONS(1329), - [anon_sym__Atomic] = ACTIONS(1329), - [anon_sym_unsigned] = ACTIONS(1329), - [anon_sym_long] = ACTIONS(1329), - [anon_sym_short] = ACTIONS(1329), - [sym_primitive_type] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [sym_identifier] = ACTIONS(1329), - [sym_comment] = ACTIONS(39), - }, - [992] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1345), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1345), - [anon_sym_LPAREN] = ACTIONS(1343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1345), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1345), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1345), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1345), - [sym_preproc_directive] = ACTIONS(1345), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1345), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_static] = ACTIONS(1345), - [anon_sym_auto] = ACTIONS(1345), - [anon_sym_register] = ACTIONS(1345), - [anon_sym_inline] = ACTIONS(1345), - [anon_sym_const] = ACTIONS(1345), - [anon_sym_restrict] = ACTIONS(1345), - [anon_sym_volatile] = ACTIONS(1345), - [anon_sym__Atomic] = ACTIONS(1345), - [anon_sym_unsigned] = ACTIONS(1345), - [anon_sym_long] = ACTIONS(1345), - [anon_sym_short] = ACTIONS(1345), - [sym_primitive_type] = ACTIONS(1345), - [anon_sym_enum] = ACTIONS(1345), - [anon_sym_struct] = ACTIONS(1345), - [anon_sym_union] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_switch] = ACTIONS(1345), - [anon_sym_case] = ACTIONS(1345), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_goto] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [anon_sym_TILDE] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_sizeof] = ACTIONS(1345), - [sym_number_literal] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), - [sym_true] = ACTIONS(1345), - [sym_false] = ACTIONS(1345), - [sym_null] = ACTIONS(1345), - [sym_identifier] = ACTIONS(1345), + [987] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1337), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1337), + [sym_preproc_directive] = ACTIONS(1337), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1337), + [anon_sym_auto] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_inline] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_restrict] = ACTIONS(1337), + [anon_sym_volatile] = ACTIONS(1337), + [anon_sym__Atomic] = ACTIONS(1337), + [anon_sym_unsigned] = ACTIONS(1337), + [anon_sym_long] = ACTIONS(1337), + [anon_sym_short] = ACTIONS(1337), + [sym_primitive_type] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_struct] = ACTIONS(1337), + [anon_sym_union] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1337), + [anon_sym_switch] = ACTIONS(1337), + [anon_sym_case] = ACTIONS(1337), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_goto] = ACTIONS(1337), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(1335), + [anon_sym_sizeof] = ACTIONS(1337), + [sym_number_literal] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_true] = ACTIONS(1337), + [sym_false] = ACTIONS(1337), + [sym_null] = ACTIONS(1337), + [sym_identifier] = ACTIONS(1337), [sym_comment] = ACTIONS(39), }, - [993] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1349), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1349), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1349), - [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), - [sym_preproc_directive] = ACTIONS(1349), - [anon_sym_typedef] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym_static] = ACTIONS(1349), - [anon_sym_auto] = ACTIONS(1349), - [anon_sym_register] = ACTIONS(1349), - [anon_sym_inline] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [anon_sym_restrict] = ACTIONS(1349), - [anon_sym_volatile] = ACTIONS(1349), - [anon_sym__Atomic] = ACTIONS(1349), - [anon_sym_unsigned] = ACTIONS(1349), - [anon_sym_long] = ACTIONS(1349), - [anon_sym_short] = ACTIONS(1349), - [sym_primitive_type] = ACTIONS(1349), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_struct] = ACTIONS(1349), - [anon_sym_union] = ACTIONS(1349), - [sym_identifier] = ACTIONS(1349), + [988] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1341), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1341), + [sym_preproc_directive] = ACTIONS(1341), + [anon_sym_typedef] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_auto] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_inline] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_restrict] = ACTIONS(1341), + [anon_sym_volatile] = ACTIONS(1341), + [anon_sym__Atomic] = ACTIONS(1341), + [anon_sym_unsigned] = ACTIONS(1341), + [anon_sym_long] = ACTIONS(1341), + [anon_sym_short] = ACTIONS(1341), + [sym_primitive_type] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_struct] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1341), + [sym_identifier] = ACTIONS(1341), [sym_comment] = ACTIONS(39), }, - [994] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1821), - [anon_sym_LPAREN] = ACTIONS(1819), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1821), - [sym_preproc_directive] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_typedef] = ACTIONS(1821), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_static] = ACTIONS(1821), - [anon_sym_auto] = ACTIONS(1821), - [anon_sym_register] = ACTIONS(1821), - [anon_sym_inline] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_restrict] = ACTIONS(1821), - [anon_sym_volatile] = ACTIONS(1821), - [anon_sym__Atomic] = ACTIONS(1821), - [anon_sym_unsigned] = ACTIONS(1821), - [anon_sym_long] = ACTIONS(1821), - [anon_sym_short] = ACTIONS(1821), - [sym_primitive_type] = ACTIONS(1821), - [anon_sym_enum] = ACTIONS(1821), - [anon_sym_struct] = ACTIONS(1821), - [anon_sym_union] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_else] = ACTIONS(1821), - [anon_sym_switch] = ACTIONS(1821), - [anon_sym_case] = ACTIONS(1821), - [anon_sym_default] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_do] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_goto] = ACTIONS(1821), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1821), - [anon_sym_DASH_DASH] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1819), - [anon_sym_sizeof] = ACTIONS(1821), - [sym_number_literal] = ACTIONS(1819), - [anon_sym_SQUOTE] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym_true] = ACTIONS(1821), - [sym_false] = ACTIONS(1821), - [sym_null] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1821), + [989] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1784), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1784), + [sym_preproc_directive] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_typedef] = ACTIONS(1784), + [anon_sym_extern] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_LPAREN2] = ACTIONS(1782), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1784), + [anon_sym_auto] = ACTIONS(1784), + [anon_sym_register] = ACTIONS(1784), + [anon_sym_inline] = ACTIONS(1784), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_restrict] = ACTIONS(1784), + [anon_sym_volatile] = ACTIONS(1784), + [anon_sym__Atomic] = ACTIONS(1784), + [anon_sym_unsigned] = ACTIONS(1784), + [anon_sym_long] = ACTIONS(1784), + [anon_sym_short] = ACTIONS(1784), + [sym_primitive_type] = ACTIONS(1784), + [anon_sym_enum] = ACTIONS(1784), + [anon_sym_struct] = ACTIONS(1784), + [anon_sym_union] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_else] = ACTIONS(1784), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_case] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_goto] = ACTIONS(1784), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1784), + [sym_number_literal] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [sym_true] = ACTIONS(1784), + [sym_false] = ACTIONS(1784), + [sym_null] = ACTIONS(1784), + [sym_identifier] = ACTIONS(1784), [sym_comment] = ACTIONS(39), }, - [995] = { - [sym__expression] = STATE(866), - [sym_conditional_expression] = STATE(866), - [sym_assignment_expression] = STATE(866), - [sym_pointer_expression] = STATE(866), - [sym_logical_expression] = STATE(866), - [sym_bitwise_expression] = STATE(866), - [sym_equality_expression] = STATE(866), - [sym_relational_expression] = STATE(866), - [sym_shift_expression] = STATE(866), - [sym_math_expression] = STATE(866), - [sym_cast_expression] = STATE(866), - [sym_sizeof_expression] = STATE(866), - [sym_subscript_expression] = STATE(866), - [sym_call_expression] = STATE(866), - [sym_field_expression] = STATE(866), - [sym_compound_literal_expression] = STATE(866), - [sym_parenthesized_expression] = STATE(866), - [sym_initializer_list] = STATE(867), - [sym_char_literal] = STATE(866), - [sym_concatenated_string] = STATE(866), - [sym_string_literal] = STATE(348), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_RBRACE] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_STAR_EQ] = ACTIONS(3044), - [anon_sym_SLASH_EQ] = ACTIONS(3044), - [anon_sym_PERCENT_EQ] = ACTIONS(3044), - [anon_sym_PLUS_EQ] = ACTIONS(3044), - [anon_sym_DASH_EQ] = ACTIONS(3044), - [anon_sym_LT_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_GT_EQ] = ACTIONS(3044), - [anon_sym_AMP_EQ] = ACTIONS(3044), - [anon_sym_CARET_EQ] = ACTIONS(3044), - [anon_sym_PIPE_EQ] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_BANG] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_CARET] = ACTIONS(3048), + [990] = { + [sym__expression] = STATE(921), + [sym_conditional_expression] = STATE(921), + [sym_assignment_expression] = STATE(921), + [sym_pointer_expression] = STATE(921), + [sym_logical_expression] = STATE(921), + [sym_bitwise_expression] = STATE(921), + [sym_equality_expression] = STATE(921), + [sym_relational_expression] = STATE(921), + [sym_shift_expression] = STATE(921), + [sym_math_expression] = STATE(921), + [sym_cast_expression] = STATE(921), + [sym_sizeof_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_call_expression] = STATE(921), + [sym_field_expression] = STATE(921), + [sym_compound_literal_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(921), + [sym_initializer_list] = STATE(922), + [sym_char_literal] = STATE(921), + [sym_concatenated_string] = STATE(921), + [sym_string_literal] = STATE(346), + [anon_sym_COMMA] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(2952), + [anon_sym_LPAREN2] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_EQ] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2952), + [anon_sym_STAR_EQ] = ACTIONS(2952), + [anon_sym_SLASH_EQ] = ACTIONS(2952), + [anon_sym_PERCENT_EQ] = ACTIONS(2952), + [anon_sym_PLUS_EQ] = ACTIONS(2952), + [anon_sym_DASH_EQ] = ACTIONS(2952), + [anon_sym_LT_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_GT_EQ] = ACTIONS(2952), + [anon_sym_AMP_EQ] = ACTIONS(2952), + [anon_sym_CARET_EQ] = ACTIONS(2952), + [anon_sym_PIPE_EQ] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(2952), + [anon_sym_AMP_AMP] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(2956), + [anon_sym_CARET] = ACTIONS(2956), [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_EQ_EQ] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3048), - [anon_sym_GT] = ACTIONS(3048), - [anon_sym_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_EQ] = ACTIONS(3044), - [anon_sym_LT_LT] = ACTIONS(3048), - [anon_sym_GT_GT] = ACTIONS(3048), + [anon_sym_EQ_EQ] = ACTIONS(2952), + [anon_sym_BANG_EQ] = ACTIONS(2952), + [anon_sym_LT] = ACTIONS(2956), + [anon_sym_GT] = ACTIONS(2956), + [anon_sym_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_EQ] = ACTIONS(2952), + [anon_sym_LT_LT] = ACTIONS(2956), + [anon_sym_GT_GT] = ACTIONS(2956), [anon_sym_PLUS] = ACTIONS(815), [anon_sym_DASH] = ACTIONS(815), - [anon_sym_SLASH] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(2952), + [anon_sym_DASH_GT] = ACTIONS(2952), + [sym_number_literal] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2332), + [sym_true] = ACTIONS(2394), + [sym_false] = ACTIONS(2394), + [sym_null] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2394), [sym_comment] = ACTIONS(39), }, - [996] = { - [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(348), - [anon_sym_LPAREN] = ACTIONS(807), + [991] = { + [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(346), + [anon_sym_LPAREN2] = ACTIONS(807), [anon_sym_STAR] = ACTIONS(809), [anon_sym_AMP] = ACTIONS(809), [anon_sym_BANG] = ACTIONS(811), @@ -38361,117 +38376,117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(817), [anon_sym_PLUS_PLUS] = ACTIONS(817), [anon_sym_sizeof] = ACTIONS(819), - [sym_number_literal] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_identifier] = ACTIONS(3099), + [sym_true] = ACTIONS(3007), + [sym_false] = ACTIONS(3007), + [sym_null] = ACTIONS(3007), + [sym_identifier] = ACTIONS(3007), [sym_comment] = ACTIONS(39), }, - [997] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3101), + [992] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3009), [sym_comment] = ACTIONS(39), }, - [998] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3103), + [993] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3011), [sym_comment] = ACTIONS(39), }, - [999] = { - [sym__expression] = STATE(866), - [sym_conditional_expression] = STATE(866), - [sym_assignment_expression] = STATE(866), - [sym_pointer_expression] = STATE(866), - [sym_logical_expression] = STATE(866), - [sym_bitwise_expression] = STATE(866), - [sym_equality_expression] = STATE(866), - [sym_relational_expression] = STATE(866), - [sym_shift_expression] = STATE(866), - [sym_math_expression] = STATE(866), - [sym_cast_expression] = STATE(866), - [sym_sizeof_expression] = STATE(866), - [sym_subscript_expression] = STATE(866), - [sym_call_expression] = STATE(866), - [sym_field_expression] = STATE(866), - [sym_compound_literal_expression] = STATE(866), - [sym_parenthesized_expression] = STATE(866), - [sym_initializer_list] = STATE(867), - [sym_char_literal] = STATE(866), - [sym_concatenated_string] = STATE(866), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_STAR_EQ] = ACTIONS(3044), - [anon_sym_SLASH_EQ] = ACTIONS(3044), - [anon_sym_PERCENT_EQ] = ACTIONS(3044), - [anon_sym_PLUS_EQ] = ACTIONS(3044), - [anon_sym_DASH_EQ] = ACTIONS(3044), - [anon_sym_LT_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_GT_EQ] = ACTIONS(3044), - [anon_sym_AMP_EQ] = ACTIONS(3044), - [anon_sym_CARET_EQ] = ACTIONS(3044), - [anon_sym_PIPE_EQ] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_CARET] = ACTIONS(3048), + [994] = { + [sym__expression] = STATE(921), + [sym_conditional_expression] = STATE(921), + [sym_assignment_expression] = STATE(921), + [sym_pointer_expression] = STATE(921), + [sym_logical_expression] = STATE(921), + [sym_bitwise_expression] = STATE(921), + [sym_equality_expression] = STATE(921), + [sym_relational_expression] = STATE(921), + [sym_shift_expression] = STATE(921), + [sym_math_expression] = STATE(921), + [sym_cast_expression] = STATE(921), + [sym_sizeof_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_call_expression] = STATE(921), + [sym_field_expression] = STATE(921), + [sym_compound_literal_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(921), + [sym_initializer_list] = STATE(922), + [sym_char_literal] = STATE(921), + [sym_concatenated_string] = STATE(921), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_EQ] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2952), + [anon_sym_STAR_EQ] = ACTIONS(2952), + [anon_sym_SLASH_EQ] = ACTIONS(2952), + [anon_sym_PERCENT_EQ] = ACTIONS(2952), + [anon_sym_PLUS_EQ] = ACTIONS(2952), + [anon_sym_DASH_EQ] = ACTIONS(2952), + [anon_sym_LT_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_GT_EQ] = ACTIONS(2952), + [anon_sym_AMP_EQ] = ACTIONS(2952), + [anon_sym_CARET_EQ] = ACTIONS(2952), + [anon_sym_PIPE_EQ] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(2952), + [anon_sym_AMP_AMP] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(3015), + [anon_sym_PIPE] = ACTIONS(2956), + [anon_sym_CARET] = ACTIONS(2956), [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_EQ_EQ] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3048), - [anon_sym_GT] = ACTIONS(3048), - [anon_sym_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_EQ] = ACTIONS(3044), - [anon_sym_LT_LT] = ACTIONS(3048), - [anon_sym_GT_GT] = ACTIONS(3048), + [anon_sym_EQ_EQ] = ACTIONS(2952), + [anon_sym_BANG_EQ] = ACTIONS(2952), + [anon_sym_LT] = ACTIONS(2956), + [anon_sym_GT] = ACTIONS(2956), + [anon_sym_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_EQ] = ACTIONS(2952), + [anon_sym_LT_LT] = ACTIONS(2956), + [anon_sym_GT_GT] = ACTIONS(2956), [anon_sym_PLUS] = ACTIONS(855), [anon_sym_DASH] = ACTIONS(855), - [anon_sym_SLASH] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_DOT] = ACTIONS(2952), + [anon_sym_DASH_GT] = ACTIONS(2952), + [sym_number_literal] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2332), + [sym_true] = ACTIONS(2394), + [sym_false] = ACTIONS(2394), + [sym_null] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2394), [sym_comment] = ACTIONS(39), }, - [1000] = { - [sym__expression] = STATE(1106), - [sym_conditional_expression] = STATE(1106), - [sym_assignment_expression] = STATE(1106), - [sym_pointer_expression] = STATE(1106), - [sym_logical_expression] = STATE(1106), - [sym_bitwise_expression] = STATE(1106), - [sym_equality_expression] = STATE(1106), - [sym_relational_expression] = STATE(1106), - [sym_shift_expression] = STATE(1106), - [sym_math_expression] = STATE(1106), - [sym_cast_expression] = STATE(1106), - [sym_sizeof_expression] = STATE(1106), - [sym_subscript_expression] = STATE(1106), - [sym_call_expression] = STATE(1106), - [sym_field_expression] = STATE(1106), - [sym_compound_literal_expression] = STATE(1106), - [sym_parenthesized_expression] = STATE(1106), - [sym_char_literal] = STATE(1106), - [sym_concatenated_string] = STATE(1106), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), + [995] = { + [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(376), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -38481,265 +38496,138 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3109), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3111), - [sym_false] = ACTIONS(3111), - [sym_null] = ACTIONS(3111), - [sym_identifier] = ACTIONS(3111), + [sym_true] = ACTIONS(3019), + [sym_false] = ACTIONS(3019), + [sym_null] = ACTIONS(3019), + [sym_identifier] = ACTIONS(3019), [sym_comment] = ACTIONS(39), }, - [1001] = { - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(3113), - [anon_sym_RPAREN] = ACTIONS(3113), - [anon_sym_SEMI] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3113), - [anon_sym_COLON] = ACTIONS(3113), - [sym_comment] = ACTIONS(39), - }, - [1002] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3117), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3117), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3117), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3117), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3117), - [anon_sym_extern] = ACTIONS(3115), - [anon_sym_RBRACE] = ACTIONS(3117), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_auto] = ACTIONS(3115), - [anon_sym_register] = ACTIONS(3115), - [anon_sym_inline] = ACTIONS(3115), - [anon_sym_const] = ACTIONS(3115), - [anon_sym_restrict] = ACTIONS(3115), - [anon_sym_volatile] = ACTIONS(3115), - [anon_sym__Atomic] = ACTIONS(3115), - [anon_sym_unsigned] = ACTIONS(3115), - [anon_sym_long] = ACTIONS(3115), - [anon_sym_short] = ACTIONS(3115), - [sym_primitive_type] = ACTIONS(3115), - [anon_sym_enum] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_union] = ACTIONS(3115), - [sym_identifier] = ACTIONS(3115), - [sym_comment] = ACTIONS(39), - }, - [1003] = { - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [sym_comment] = ACTIONS(39), - }, - [1004] = { - [sym_type_qualifier] = STATE(1004), - [aux_sym_type_definition_repeat1] = STATE(1004), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_const] = ACTIONS(434), - [anon_sym_restrict] = ACTIONS(434), - [anon_sym_volatile] = ACTIONS(434), - [anon_sym__Atomic] = ACTIONS(434), - [sym_identifier] = ACTIONS(437), + [996] = { + [anon_sym_COMMA] = ACTIONS(3021), + [anon_sym_RPAREN] = ACTIONS(3021), + [anon_sym_SEMI] = ACTIONS(3021), + [anon_sym_LPAREN2] = ACTIONS(3021), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_COLON] = ACTIONS(3021), [sym_comment] = ACTIONS(39), }, - [1005] = { - [sym__expression] = STATE(866), - [sym_conditional_expression] = STATE(866), - [sym_assignment_expression] = STATE(866), - [sym_pointer_expression] = STATE(866), - [sym_logical_expression] = STATE(866), - [sym_bitwise_expression] = STATE(866), - [sym_equality_expression] = STATE(866), - [sym_relational_expression] = STATE(866), - [sym_shift_expression] = STATE(866), - [sym_math_expression] = STATE(866), - [sym_cast_expression] = STATE(866), - [sym_sizeof_expression] = STATE(866), - [sym_subscript_expression] = STATE(866), - [sym_call_expression] = STATE(866), - [sym_field_expression] = STATE(866), - [sym_compound_literal_expression] = STATE(866), - [sym_parenthesized_expression] = STATE(866), - [sym_initializer_list] = STATE(867), - [sym_char_literal] = STATE(866), - [sym_concatenated_string] = STATE(866), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_COMMA] = ACTIONS(3044), - [anon_sym_RPAREN] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_STAR_EQ] = ACTIONS(3044), - [anon_sym_SLASH_EQ] = ACTIONS(3044), - [anon_sym_PERCENT_EQ] = ACTIONS(3044), - [anon_sym_PLUS_EQ] = ACTIONS(3044), - [anon_sym_DASH_EQ] = ACTIONS(3044), - [anon_sym_LT_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_GT_EQ] = ACTIONS(3044), - [anon_sym_AMP_EQ] = ACTIONS(3044), - [anon_sym_CARET_EQ] = ACTIONS(3044), - [anon_sym_PIPE_EQ] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_CARET] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_EQ_EQ] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3048), - [anon_sym_GT] = ACTIONS(3048), - [anon_sym_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_EQ] = ACTIONS(3044), - [anon_sym_LT_LT] = ACTIONS(3048), - [anon_sym_GT_GT] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_SLASH] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2332), + [997] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3023), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3025), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3025), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3025), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3025), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3025), + [anon_sym_extern] = ACTIONS(3023), + [anon_sym_RBRACE] = ACTIONS(3025), + [anon_sym_static] = ACTIONS(3023), + [anon_sym_auto] = ACTIONS(3023), + [anon_sym_register] = ACTIONS(3023), + [anon_sym_inline] = ACTIONS(3023), + [anon_sym_const] = ACTIONS(3023), + [anon_sym_restrict] = ACTIONS(3023), + [anon_sym_volatile] = ACTIONS(3023), + [anon_sym__Atomic] = ACTIONS(3023), + [anon_sym_unsigned] = ACTIONS(3023), + [anon_sym_long] = ACTIONS(3023), + [anon_sym_short] = ACTIONS(3023), + [sym_primitive_type] = ACTIONS(3023), + [anon_sym_enum] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3023), + [anon_sym_union] = ACTIONS(3023), + [sym_identifier] = ACTIONS(3023), [sym_comment] = ACTIONS(39), }, - [1006] = { - [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(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3127), - [sym_false] = ACTIONS(3127), - [sym_null] = ACTIONS(3127), - [sym_identifier] = ACTIONS(3127), + [998] = { + [anon_sym_COMMA] = ACTIONS(3027), + [anon_sym_RPAREN] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3027), [sym_comment] = ACTIONS(39), }, - [1007] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2336), - [anon_sym_LPAREN] = ACTIONS(2338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2336), - [sym_preproc_directive] = ACTIONS(2336), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_typedef] = ACTIONS(2336), - [anon_sym_extern] = ACTIONS(2336), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2336), - [anon_sym_auto] = ACTIONS(2336), - [anon_sym_register] = ACTIONS(2336), - [anon_sym_inline] = ACTIONS(2336), - [anon_sym_const] = ACTIONS(2336), - [anon_sym_restrict] = ACTIONS(2336), - [anon_sym_volatile] = ACTIONS(2336), - [anon_sym__Atomic] = ACTIONS(2336), - [anon_sym_unsigned] = ACTIONS(2336), - [anon_sym_long] = ACTIONS(2336), - [anon_sym_short] = ACTIONS(2336), - [sym_primitive_type] = ACTIONS(2336), - [anon_sym_enum] = ACTIONS(2336), - [anon_sym_struct] = ACTIONS(2336), - [anon_sym_union] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_switch] = ACTIONS(2336), - [anon_sym_case] = ACTIONS(2336), - [anon_sym_default] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_do] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_goto] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_sizeof] = ACTIONS(2336), - [sym_number_literal] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [sym_true] = ACTIONS(2336), - [sym_false] = ACTIONS(2336), - [sym_null] = ACTIONS(2336), - [sym_identifier] = ACTIONS(2336), + [999] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2238), + [sym_preproc_directive] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2240), + [anon_sym_typedef] = ACTIONS(2238), + [anon_sym_extern] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_LPAREN2] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_auto] = ACTIONS(2238), + [anon_sym_register] = ACTIONS(2238), + [anon_sym_inline] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_restrict] = ACTIONS(2238), + [anon_sym_volatile] = ACTIONS(2238), + [anon_sym__Atomic] = ACTIONS(2238), + [anon_sym_unsigned] = ACTIONS(2238), + [anon_sym_long] = ACTIONS(2238), + [anon_sym_short] = ACTIONS(2238), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [anon_sym_struct] = ACTIONS(2238), + [anon_sym_union] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_switch] = ACTIONS(2238), + [anon_sym_case] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_do] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_goto] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_TILDE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2240), + [anon_sym_PLUS_PLUS] = ACTIONS(2240), + [anon_sym_sizeof] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_SQUOTE] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2240), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [sym_null] = ACTIONS(2238), + [sym_identifier] = ACTIONS(2238), [sym_comment] = ACTIONS(39), }, - [1008] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3129), + [1000] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3029), [sym_comment] = ACTIONS(39), }, - [1009] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3131), + [1001] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3031), [sym_comment] = ACTIONS(39), }, - [1010] = { - [sym_preproc_include] = STATE(915), - [sym_preproc_def] = STATE(915), - [sym_preproc_function_def] = STATE(915), - [sym_preproc_call] = STATE(915), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(1111), - [sym_preproc_elif_in_compound_statement] = STATE(1112), - [sym_declaration] = STATE(915), - [sym_type_definition] = STATE(915), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(915), + [1002] = { + [sym_preproc_include] = STATE(896), + [sym_preproc_def] = STATE(896), + [sym_preproc_function_def] = STATE(896), + [sym_preproc_call] = STATE(896), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(1099), + [sym_preproc_elif_in_compound_statement] = STATE(1100), + [sym_declaration] = STATE(896), + [sym_type_definition] = STATE(896), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(896), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -38747,59 +38635,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(915), - [sym_expression_statement] = STATE(915), - [sym_if_statement] = STATE(915), - [sym_switch_statement] = STATE(915), - [sym_case_statement] = STATE(915), - [sym_while_statement] = STATE(915), - [sym_do_statement] = STATE(915), - [sym_for_statement] = STATE(915), - [sym_return_statement] = STATE(915), - [sym_break_statement] = STATE(915), - [sym_continue_statement] = STATE(915), - [sym_goto_statement] = STATE(915), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(915), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(896), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(915), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3133), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3033), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -38815,114 +38703,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [1011] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2424), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2422), - [sym_preproc_directive] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_typedef] = ACTIONS(2422), - [anon_sym_extern] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2424), - [anon_sym_static] = ACTIONS(2422), - [anon_sym_auto] = ACTIONS(2422), - [anon_sym_register] = ACTIONS(2422), - [anon_sym_inline] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [anon_sym_restrict] = ACTIONS(2422), - [anon_sym_volatile] = ACTIONS(2422), - [anon_sym__Atomic] = ACTIONS(2422), - [anon_sym_unsigned] = ACTIONS(2422), - [anon_sym_long] = ACTIONS(2422), - [anon_sym_short] = ACTIONS(2422), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2422), - [anon_sym_struct] = ACTIONS(2422), - [anon_sym_union] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_switch] = ACTIONS(2422), - [anon_sym_case] = ACTIONS(2422), - [anon_sym_default] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_do] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_goto] = ACTIONS(2422), - [anon_sym_AMP] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_TILDE] = ACTIONS(2424), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_DASH_DASH] = ACTIONS(2424), - [anon_sym_PLUS_PLUS] = ACTIONS(2424), - [anon_sym_sizeof] = ACTIONS(2422), - [sym_number_literal] = ACTIONS(2424), - [anon_sym_SQUOTE] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2424), - [sym_true] = ACTIONS(2422), - [sym_false] = ACTIONS(2422), - [sym_null] = ACTIONS(2422), - [sym_identifier] = ACTIONS(2422), + [1003] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2318), + [sym_preproc_directive] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym_typedef] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2320), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_auto] = ACTIONS(2318), + [anon_sym_register] = ACTIONS(2318), + [anon_sym_inline] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_restrict] = ACTIONS(2318), + [anon_sym_volatile] = ACTIONS(2318), + [anon_sym__Atomic] = ACTIONS(2318), + [anon_sym_unsigned] = ACTIONS(2318), + [anon_sym_long] = ACTIONS(2318), + [anon_sym_short] = ACTIONS(2318), + [sym_primitive_type] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_goto] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2320), + [anon_sym_TILDE] = ACTIONS(2320), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_sizeof] = ACTIONS(2318), + [sym_number_literal] = ACTIONS(2320), + [anon_sym_SQUOTE] = ACTIONS(2320), + [anon_sym_DQUOTE] = ACTIONS(2320), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2318), [sym_comment] = ACTIONS(39), }, - [1012] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3135), + [1004] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3035), [sym_comment] = ACTIONS(39), }, - [1013] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3137), + [1005] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3037), [sym_comment] = ACTIONS(39), }, - [1014] = { - [sym_preproc_include] = STATE(915), - [sym_preproc_def] = STATE(915), - [sym_preproc_function_def] = STATE(915), - [sym_preproc_call] = STATE(915), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(1116), - [sym_preproc_elif_in_compound_statement] = STATE(1117), - [sym_declaration] = STATE(915), - [sym_type_definition] = STATE(915), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(915), + [1006] = { + [sym_preproc_include] = STATE(896), + [sym_preproc_def] = STATE(896), + [sym_preproc_function_def] = STATE(896), + [sym_preproc_call] = STATE(896), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(1104), + [sym_preproc_elif_in_compound_statement] = STATE(1105), + [sym_declaration] = STATE(896), + [sym_type_definition] = STATE(896), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(896), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -38930,59 +38818,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(915), - [sym_expression_statement] = STATE(915), - [sym_if_statement] = STATE(915), - [sym_switch_statement] = STATE(915), - [sym_case_statement] = STATE(915), - [sym_while_statement] = STATE(915), - [sym_do_statement] = STATE(915), - [sym_for_statement] = STATE(915), - [sym_return_statement] = STATE(915), - [sym_break_statement] = STATE(915), - [sym_continue_statement] = STATE(915), - [sym_goto_statement] = STATE(915), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(915), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(896), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(915), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -38998,114 +38886,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [1015] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2432), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2434), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2432), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2432), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2432), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2432), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2432), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2432), - [sym_preproc_directive] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_typedef] = ACTIONS(2432), - [anon_sym_extern] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2434), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_auto] = ACTIONS(2432), - [anon_sym_register] = ACTIONS(2432), - [anon_sym_inline] = ACTIONS(2432), - [anon_sym_const] = ACTIONS(2432), - [anon_sym_restrict] = ACTIONS(2432), - [anon_sym_volatile] = ACTIONS(2432), - [anon_sym__Atomic] = ACTIONS(2432), - [anon_sym_unsigned] = ACTIONS(2432), - [anon_sym_long] = ACTIONS(2432), - [anon_sym_short] = ACTIONS(2432), - [sym_primitive_type] = ACTIONS(2432), - [anon_sym_enum] = ACTIONS(2432), - [anon_sym_struct] = ACTIONS(2432), - [anon_sym_union] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2432), - [anon_sym_switch] = ACTIONS(2432), - [anon_sym_case] = ACTIONS(2432), - [anon_sym_default] = ACTIONS(2432), - [anon_sym_while] = ACTIONS(2432), - [anon_sym_do] = ACTIONS(2432), - [anon_sym_for] = ACTIONS(2432), - [anon_sym_return] = ACTIONS(2432), - [anon_sym_break] = ACTIONS(2432), - [anon_sym_continue] = ACTIONS(2432), - [anon_sym_goto] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_PLUS] = ACTIONS(2432), - [anon_sym_DASH] = ACTIONS(2432), - [anon_sym_DASH_DASH] = ACTIONS(2434), - [anon_sym_PLUS_PLUS] = ACTIONS(2434), - [anon_sym_sizeof] = ACTIONS(2432), - [sym_number_literal] = ACTIONS(2434), - [anon_sym_SQUOTE] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [sym_true] = ACTIONS(2432), - [sym_false] = ACTIONS(2432), - [sym_null] = ACTIONS(2432), - [sym_identifier] = ACTIONS(2432), + [1007] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2328), + [sym_preproc_directive] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_typedef] = ACTIONS(2328), + [anon_sym_extern] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2330), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_STAR] = ACTIONS(2330), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_auto] = ACTIONS(2328), + [anon_sym_register] = ACTIONS(2328), + [anon_sym_inline] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_restrict] = ACTIONS(2328), + [anon_sym_volatile] = ACTIONS(2328), + [anon_sym__Atomic] = ACTIONS(2328), + [anon_sym_unsigned] = ACTIONS(2328), + [anon_sym_long] = ACTIONS(2328), + [anon_sym_short] = ACTIONS(2328), + [sym_primitive_type] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [anon_sym_struct] = ACTIONS(2328), + [anon_sym_union] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_goto] = ACTIONS(2328), + [anon_sym_AMP] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2330), + [anon_sym_PLUS_PLUS] = ACTIONS(2330), + [anon_sym_sizeof] = ACTIONS(2328), + [sym_number_literal] = ACTIONS(2330), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2330), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_identifier] = ACTIONS(2328), [sym_comment] = ACTIONS(39), }, - [1016] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3141), + [1008] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3041), [sym_comment] = ACTIONS(39), }, - [1017] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3143), + [1009] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3043), [sym_comment] = ACTIONS(39), }, - [1018] = { - [sym_preproc_include] = STATE(915), - [sym_preproc_def] = STATE(915), - [sym_preproc_function_def] = STATE(915), - [sym_preproc_call] = STATE(915), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(1121), - [sym_preproc_elif_in_compound_statement] = STATE(1122), - [sym_declaration] = STATE(915), - [sym_type_definition] = STATE(915), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(915), + [1010] = { + [sym_preproc_include] = STATE(896), + [sym_preproc_def] = STATE(896), + [sym_preproc_function_def] = STATE(896), + [sym_preproc_call] = STATE(896), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(1109), + [sym_preproc_elif_in_compound_statement] = STATE(1110), + [sym_declaration] = STATE(896), + [sym_type_definition] = STATE(896), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(896), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -39113,59 +39001,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(915), - [sym_expression_statement] = STATE(915), - [sym_if_statement] = STATE(915), - [sym_switch_statement] = STATE(915), - [sym_case_statement] = STATE(915), - [sym_while_statement] = STATE(915), - [sym_do_statement] = STATE(915), - [sym_for_statement] = STATE(915), - [sym_return_statement] = STATE(915), - [sym_break_statement] = STATE(915), - [sym_continue_statement] = STATE(915), - [sym_goto_statement] = STATE(915), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(915), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(896), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(915), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -39181,47 +39069,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [1019] = { - [sym_preproc_include] = STATE(1126), - [sym_preproc_def] = STATE(1126), - [sym_preproc_function_def] = STATE(1126), - [sym_preproc_call] = STATE(1126), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(1124), - [sym_preproc_elif_in_compound_statement] = STATE(1125), - [sym_declaration] = STATE(1126), - [sym_type_definition] = STATE(1126), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(1126), + [1011] = { + [sym_preproc_include] = STATE(1114), + [sym_preproc_def] = STATE(1114), + [sym_preproc_function_def] = STATE(1114), + [sym_preproc_call] = STATE(1114), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(1112), + [sym_preproc_elif_in_compound_statement] = STATE(1113), + [sym_declaration] = STATE(1114), + [sym_type_definition] = STATE(1114), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(1114), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -39229,59 +39117,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(1126), - [sym_expression_statement] = STATE(1126), - [sym_if_statement] = STATE(1126), - [sym_switch_statement] = STATE(1126), - [sym_case_statement] = STATE(1126), - [sym_while_statement] = STATE(1126), - [sym_do_statement] = STATE(1126), - [sym_for_statement] = STATE(1126), - [sym_return_statement] = STATE(1126), - [sym_break_statement] = STATE(1126), - [sym_continue_statement] = STATE(1126), - [sym_goto_statement] = STATE(1126), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(1126), + [sym_labeled_statement] = STATE(1114), + [sym_expression_statement] = STATE(1114), + [sym_if_statement] = STATE(1114), + [sym_switch_statement] = STATE(1114), + [sym_case_statement] = STATE(1114), + [sym_while_statement] = STATE(1114), + [sym_do_statement] = STATE(1114), + [sym_for_statement] = STATE(1114), + [sym_return_statement] = STATE(1114), + [sym_break_statement] = STATE(1114), + [sym_continue_statement] = STATE(1114), + [sym_goto_statement] = STATE(1114), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(1114), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1126), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1114), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3147), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3047), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -39297,47 +39185,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [1020] = { - [sym_preproc_include] = STATE(1130), - [sym_preproc_def] = STATE(1130), - [sym_preproc_function_def] = STATE(1130), - [sym_preproc_call] = STATE(1130), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(1128), - [sym_preproc_elif_in_compound_statement] = STATE(1129), - [sym_declaration] = STATE(1130), - [sym_type_definition] = STATE(1130), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(1130), + [1012] = { + [sym_preproc_include] = STATE(1118), + [sym_preproc_def] = STATE(1118), + [sym_preproc_function_def] = STATE(1118), + [sym_preproc_call] = STATE(1118), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(1116), + [sym_preproc_elif_in_compound_statement] = STATE(1117), + [sym_declaration] = STATE(1118), + [sym_type_definition] = STATE(1118), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(1118), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -39345,59 +39233,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(1130), - [sym_expression_statement] = STATE(1130), - [sym_if_statement] = STATE(1130), - [sym_switch_statement] = STATE(1130), - [sym_case_statement] = STATE(1130), - [sym_while_statement] = STATE(1130), - [sym_do_statement] = STATE(1130), - [sym_for_statement] = STATE(1130), - [sym_return_statement] = STATE(1130), - [sym_break_statement] = STATE(1130), - [sym_continue_statement] = STATE(1130), - [sym_goto_statement] = STATE(1130), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(1130), + [sym_labeled_statement] = STATE(1118), + [sym_expression_statement] = STATE(1118), + [sym_if_statement] = STATE(1118), + [sym_switch_statement] = STATE(1118), + [sym_case_statement] = STATE(1118), + [sym_while_statement] = STATE(1118), + [sym_do_statement] = STATE(1118), + [sym_for_statement] = STATE(1118), + [sym_return_statement] = STATE(1118), + [sym_break_statement] = STATE(1118), + [sym_continue_statement] = STATE(1118), + [sym_goto_statement] = STATE(1118), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(1118), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1130), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1118), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3049), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -39413,47 +39301,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [1021] = { - [sym_preproc_include] = STATE(1134), - [sym_preproc_def] = STATE(1134), - [sym_preproc_function_def] = STATE(1134), - [sym_preproc_call] = STATE(1134), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(1132), - [sym_preproc_elif_in_compound_statement] = STATE(1133), - [sym_declaration] = STATE(1134), - [sym_type_definition] = STATE(1134), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(1134), + [1013] = { + [sym_preproc_include] = STATE(1122), + [sym_preproc_def] = STATE(1122), + [sym_preproc_function_def] = STATE(1122), + [sym_preproc_call] = STATE(1122), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(1120), + [sym_preproc_elif_in_compound_statement] = STATE(1121), + [sym_declaration] = STATE(1122), + [sym_type_definition] = STATE(1122), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(1122), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -39461,59 +39349,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(1134), - [sym_expression_statement] = STATE(1134), - [sym_if_statement] = STATE(1134), - [sym_switch_statement] = STATE(1134), - [sym_case_statement] = STATE(1134), - [sym_while_statement] = STATE(1134), - [sym_do_statement] = STATE(1134), - [sym_for_statement] = STATE(1134), - [sym_return_statement] = STATE(1134), - [sym_break_statement] = STATE(1134), - [sym_continue_statement] = STATE(1134), - [sym_goto_statement] = STATE(1134), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(1134), + [sym_labeled_statement] = STATE(1122), + [sym_expression_statement] = STATE(1122), + [sym_if_statement] = STATE(1122), + [sym_switch_statement] = STATE(1122), + [sym_case_statement] = STATE(1122), + [sym_while_statement] = STATE(1122), + [sym_do_statement] = STATE(1122), + [sym_for_statement] = STATE(1122), + [sym_return_statement] = STATE(1122), + [sym_break_statement] = STATE(1122), + [sym_continue_statement] = STATE(1122), + [sym_goto_statement] = STATE(1122), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(1122), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1134), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1122), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3051), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -39529,160 +39417,214 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [1022] = { - [sym__expression] = STATE(1135), - [sym_conditional_expression] = STATE(1135), - [sym_assignment_expression] = STATE(1135), - [sym_pointer_expression] = STATE(1135), - [sym_logical_expression] = STATE(1135), - [sym_bitwise_expression] = STATE(1135), - [sym_equality_expression] = STATE(1135), - [sym_relational_expression] = STATE(1135), - [sym_shift_expression] = STATE(1135), - [sym_math_expression] = STATE(1135), - [sym_cast_expression] = STATE(1135), - [sym_sizeof_expression] = STATE(1135), - [sym_subscript_expression] = STATE(1135), - [sym_call_expression] = STATE(1135), - [sym_field_expression] = STATE(1135), - [sym_compound_literal_expression] = STATE(1135), - [sym_parenthesized_expression] = STATE(1135), - [sym_char_literal] = STATE(1135), - [sym_concatenated_string] = STATE(1135), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3153), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [sym_null] = ACTIONS(3155), - [sym_identifier] = ACTIONS(3155), + [1014] = { + [sym_compound_statement] = STATE(1130), + [sym_labeled_statement] = STATE(1130), + [sym_expression_statement] = STATE(1130), + [sym_if_statement] = STATE(1130), + [sym_switch_statement] = STATE(1130), + [sym_case_statement] = STATE(1130), + [sym_while_statement] = STATE(1130), + [sym_do_statement] = STATE(1130), + [sym_for_statement] = STATE(1130), + [sym_return_statement] = STATE(1130), + [sym_break_statement] = STATE(1130), + [sym_continue_statement] = STATE(1130), + [sym_goto_statement] = STATE(1130), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3057), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3065), [sym_comment] = ACTIONS(39), }, - [1023] = { - [sym__expression] = STATE(1136), - [sym_conditional_expression] = STATE(1136), - [sym_assignment_expression] = STATE(1136), - [sym_pointer_expression] = STATE(1136), - [sym_logical_expression] = STATE(1136), - [sym_bitwise_expression] = STATE(1136), - [sym_equality_expression] = STATE(1136), - [sym_relational_expression] = STATE(1136), - [sym_shift_expression] = STATE(1136), - [sym_math_expression] = STATE(1136), - [sym_cast_expression] = STATE(1136), - [sym_sizeof_expression] = STATE(1136), - [sym_subscript_expression] = STATE(1136), - [sym_call_expression] = STATE(1136), - [sym_field_expression] = STATE(1136), - [sym_compound_literal_expression] = STATE(1136), - [sym_parenthesized_expression] = STATE(1136), - [sym_char_literal] = STATE(1136), - [sym_concatenated_string] = STATE(1136), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3159), - [sym_false] = ACTIONS(3159), - [sym_null] = ACTIONS(3159), - [sym_identifier] = ACTIONS(3159), + [1015] = { + [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(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3067), [sym_comment] = ACTIONS(39), }, - [1024] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [1016] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(3069), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [1025] = { - [sym_declaration] = STATE(1139), - [sym_type_definition] = STATE(1139), - [sym__declaration_specifiers] = STATE(1140), - [sym_compound_statement] = STATE(1139), + [1017] = { + [sym_declaration] = STATE(1135), + [sym_type_definition] = STATE(1135), + [sym__declaration_specifiers] = STATE(1136), + [sym_compound_statement] = STATE(1135), [sym_storage_class_specifier] = STATE(96), [sym_type_qualifier] = STATE(96), [sym__type_specifier] = STATE(95), @@ -39690,48 +39632,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(95), [sym_struct_specifier] = STATE(95), [sym_union_specifier] = STATE(95), - [sym_labeled_statement] = STATE(1139), - [sym_expression_statement] = STATE(1139), - [sym_if_statement] = STATE(1139), - [sym_switch_statement] = STATE(1139), - [sym_case_statement] = STATE(1139), - [sym_while_statement] = STATE(1139), - [sym_do_statement] = STATE(1139), - [sym_for_statement] = STATE(1139), - [sym_return_statement] = STATE(1139), - [sym_break_statement] = STATE(1139), - [sym_continue_statement] = STATE(1139), - [sym_goto_statement] = STATE(1139), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), + [sym_labeled_statement] = STATE(1135), + [sym_expression_statement] = STATE(1135), + [sym_if_statement] = STATE(1135), + [sym_switch_statement] = STATE(1135), + [sym_case_statement] = STATE(1135), + [sym_while_statement] = STATE(1135), + [sym_do_statement] = STATE(1135), + [sym_for_statement] = STATE(1135), + [sym_return_statement] = STATE(1135), + [sym_break_statement] = STATE(1135), + [sym_continue_statement] = STATE(1135), + [sym_goto_statement] = STATE(1135), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2254), [anon_sym_typedef] = ACTIONS(380), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -39747,81 +39689,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3163), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3071), [sym_comment] = ACTIONS(39), }, - [1026] = { - [sym__expression] = STATE(1141), - [sym_conditional_expression] = STATE(1141), - [sym_assignment_expression] = STATE(1141), - [sym_pointer_expression] = STATE(1141), - [sym_logical_expression] = STATE(1141), - [sym_bitwise_expression] = STATE(1141), - [sym_equality_expression] = STATE(1141), - [sym_relational_expression] = STATE(1141), - [sym_shift_expression] = STATE(1141), - [sym_math_expression] = STATE(1141), - [sym_cast_expression] = STATE(1141), - [sym_sizeof_expression] = STATE(1141), - [sym_subscript_expression] = STATE(1141), - [sym_call_expression] = STATE(1141), - [sym_field_expression] = STATE(1141), - [sym_compound_literal_expression] = STATE(1141), - [sym_parenthesized_expression] = STATE(1141), - [sym_char_literal] = STATE(1141), - [sym_concatenated_string] = STATE(1141), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3165), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_null] = ACTIONS(3167), - [sym_identifier] = ACTIONS(3167), + [1018] = { + [sym_compound_statement] = STATE(1137), + [sym_labeled_statement] = STATE(1137), + [sym_expression_statement] = STATE(1137), + [sym_if_statement] = STATE(1137), + [sym_switch_statement] = STATE(1137), + [sym_case_statement] = STATE(1137), + [sym_while_statement] = STATE(1137), + [sym_do_statement] = STATE(1137), + [sym_for_statement] = STATE(1137), + [sym_return_statement] = STATE(1137), + [sym_break_statement] = STATE(1137), + [sym_continue_statement] = STATE(1137), + [sym_goto_statement] = STATE(1137), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3067), [sym_comment] = ACTIONS(39), }, - [1027] = { - [anon_sym_while] = ACTIONS(3169), + [1019] = { + [anon_sym_while] = ACTIONS(3073), [sym_comment] = ACTIONS(39), }, - [1028] = { - [sym_declaration] = STATE(1143), - [sym__declaration_specifiers] = STATE(716), + [1020] = { + [sym_declaration] = STATE(1139), + [sym__declaration_specifiers] = STATE(710), [sym_storage_class_specifier] = STATE(96), [sym_type_qualifier] = STATE(96), [sym__type_specifier] = STATE(95), @@ -39829,32 +39798,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(95), [sym_struct_specifier] = STATE(95), [sym_union_specifier] = STATE(95), - [sym__expression] = STATE(1144), - [sym_conditional_expression] = STATE(1144), - [sym_assignment_expression] = STATE(1144), - [sym_pointer_expression] = STATE(1144), - [sym_logical_expression] = STATE(1144), - [sym_bitwise_expression] = STATE(1144), - [sym_equality_expression] = STATE(1144), - [sym_relational_expression] = STATE(1144), - [sym_shift_expression] = STATE(1144), - [sym_math_expression] = STATE(1144), - [sym_cast_expression] = STATE(1144), - [sym_sizeof_expression] = STATE(1144), - [sym_subscript_expression] = STATE(1144), - [sym_call_expression] = STATE(1144), - [sym_field_expression] = STATE(1144), - [sym_compound_literal_expression] = STATE(1144), - [sym_parenthesized_expression] = STATE(1144), - [sym_char_literal] = STATE(1144), - [sym_concatenated_string] = STATE(1144), - [sym_string_literal] = STATE(378), + [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(376), [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3075), [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -39879,380 +39848,380 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_null] = ACTIONS(3175), - [sym_identifier] = ACTIONS(1705), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [sym_null] = ACTIONS(3079), + [sym_identifier] = ACTIONS(1670), [sym_comment] = ACTIONS(39), }, - [1029] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1709), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1707), - [sym_preproc_directive] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1709), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_auto] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_case] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_goto] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1709), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_sizeof] = ACTIONS(1707), - [sym_number_literal] = ACTIONS(1709), - [anon_sym_SQUOTE] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1707), + [1021] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1672), + [sym_preproc_directive] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_else] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1672), [sym_comment] = ACTIONS(39), }, - [1030] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [1022] = { + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [1031] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1715), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1713), - [sym_preproc_directive] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_typedef] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1713), - [anon_sym_auto] = ACTIONS(1713), - [anon_sym_register] = ACTIONS(1713), - [anon_sym_inline] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_restrict] = ACTIONS(1713), - [anon_sym_volatile] = ACTIONS(1713), - [anon_sym__Atomic] = ACTIONS(1713), - [anon_sym_unsigned] = ACTIONS(1713), - [anon_sym_long] = ACTIONS(1713), - [anon_sym_short] = ACTIONS(1713), - [sym_primitive_type] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_else] = ACTIONS(1713), - [anon_sym_switch] = ACTIONS(1713), - [anon_sym_case] = ACTIONS(1713), - [anon_sym_default] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_do] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_goto] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1713), - [sym_number_literal] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [sym_true] = ACTIONS(1713), - [sym_false] = ACTIONS(1713), - [sym_null] = ACTIONS(1713), - [sym_identifier] = ACTIONS(1713), + [1023] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1678), + [sym_preproc_directive] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_typedef] = ACTIONS(1678), + [anon_sym_extern] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_LPAREN2] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_static] = ACTIONS(1678), + [anon_sym_auto] = ACTIONS(1678), + [anon_sym_register] = ACTIONS(1678), + [anon_sym_inline] = ACTIONS(1678), + [anon_sym_const] = ACTIONS(1678), + [anon_sym_restrict] = ACTIONS(1678), + [anon_sym_volatile] = ACTIONS(1678), + [anon_sym__Atomic] = ACTIONS(1678), + [anon_sym_unsigned] = ACTIONS(1678), + [anon_sym_long] = ACTIONS(1678), + [anon_sym_short] = ACTIONS(1678), + [sym_primitive_type] = ACTIONS(1678), + [anon_sym_enum] = ACTIONS(1678), + [anon_sym_struct] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_else] = ACTIONS(1678), + [anon_sym_switch] = ACTIONS(1678), + [anon_sym_case] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(1678), + [anon_sym_do] = ACTIONS(1678), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1678), + [anon_sym_break] = ACTIONS(1678), + [anon_sym_continue] = ACTIONS(1678), + [anon_sym_goto] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_TILDE] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_DASH_DASH] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_sizeof] = ACTIONS(1678), + [sym_number_literal] = ACTIONS(1680), + [anon_sym_SQUOTE] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1680), + [sym_true] = ACTIONS(1678), + [sym_false] = ACTIONS(1678), + [sym_null] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1678), [sym_comment] = ACTIONS(39), }, - [1032] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1719), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1717), - [sym_preproc_directive] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_typedef] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_static] = ACTIONS(1717), - [anon_sym_auto] = ACTIONS(1717), - [anon_sym_register] = ACTIONS(1717), - [anon_sym_inline] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_restrict] = ACTIONS(1717), - [anon_sym_volatile] = ACTIONS(1717), - [anon_sym__Atomic] = ACTIONS(1717), - [anon_sym_unsigned] = ACTIONS(1717), - [anon_sym_long] = ACTIONS(1717), - [anon_sym_short] = ACTIONS(1717), - [sym_primitive_type] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_union] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_switch] = ACTIONS(1717), - [anon_sym_case] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_goto] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(1719), - [anon_sym_sizeof] = ACTIONS(1717), - [sym_number_literal] = ACTIONS(1719), - [anon_sym_SQUOTE] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym_true] = ACTIONS(1717), - [sym_false] = ACTIONS(1717), - [sym_null] = ACTIONS(1717), - [sym_identifier] = ACTIONS(1717), + [1024] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1682), + [sym_preproc_directive] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_typedef] = ACTIONS(1682), + [anon_sym_extern] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_LPAREN2] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_static] = ACTIONS(1682), + [anon_sym_auto] = ACTIONS(1682), + [anon_sym_register] = ACTIONS(1682), + [anon_sym_inline] = ACTIONS(1682), + [anon_sym_const] = ACTIONS(1682), + [anon_sym_restrict] = ACTIONS(1682), + [anon_sym_volatile] = ACTIONS(1682), + [anon_sym__Atomic] = ACTIONS(1682), + [anon_sym_unsigned] = ACTIONS(1682), + [anon_sym_long] = ACTIONS(1682), + [anon_sym_short] = ACTIONS(1682), + [sym_primitive_type] = ACTIONS(1682), + [anon_sym_enum] = ACTIONS(1682), + [anon_sym_struct] = ACTIONS(1682), + [anon_sym_union] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_switch] = ACTIONS(1682), + [anon_sym_case] = ACTIONS(1682), + [anon_sym_default] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_do] = ACTIONS(1682), + [anon_sym_for] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_goto] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_TILDE] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_sizeof] = ACTIONS(1682), + [sym_number_literal] = ACTIONS(1684), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_DQUOTE] = ACTIONS(1684), + [sym_true] = ACTIONS(1682), + [sym_false] = ACTIONS(1682), + [sym_null] = ACTIONS(1682), + [sym_identifier] = ACTIONS(1682), [sym_comment] = ACTIONS(39), }, - [1033] = { - [anon_sym_SEMI] = ACTIONS(3179), + [1025] = { + [anon_sym_SEMI] = ACTIONS(3083), [sym_comment] = ACTIONS(39), }, - [1034] = { - [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(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), + [1026] = { + [sym_compound_statement] = STATE(1143), + [sym_labeled_statement] = STATE(1143), + [sym_expression_statement] = STATE(1143), + [sym_if_statement] = STATE(1143), + [sym_switch_statement] = STATE(1143), + [sym_case_statement] = STATE(1143), + [sym_while_statement] = STATE(1143), + [sym_do_statement] = STATE(1143), + [sym_for_statement] = STATE(1143), + [sym_return_statement] = STATE(1143), + [sym_break_statement] = STATE(1143), + [sym_continue_statement] = STATE(1143), + [sym_goto_statement] = STATE(1143), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3181), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3067), [sym_comment] = ACTIONS(39), }, - [1035] = { + [1027] = { [sym_parameter_list] = STATE(131), [aux_sym_declaration_repeat1] = STATE(543), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(243), [anon_sym_LBRACK] = ACTIONS(245), [anon_sym_EQ] = ACTIONS(247), [sym_comment] = ACTIONS(39), }, - [1036] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1753), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1753), - [anon_sym_LPAREN] = ACTIONS(1755), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1753), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1753), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1753), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1753), - [sym_preproc_directive] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_typedef] = ACTIONS(1753), - [anon_sym_extern] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_auto] = ACTIONS(1753), - [anon_sym_register] = ACTIONS(1753), - [anon_sym_inline] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_restrict] = ACTIONS(1753), - [anon_sym_volatile] = ACTIONS(1753), - [anon_sym__Atomic] = ACTIONS(1753), - [anon_sym_unsigned] = ACTIONS(1753), - [anon_sym_long] = ACTIONS(1753), - [anon_sym_short] = ACTIONS(1753), - [sym_primitive_type] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_struct] = ACTIONS(1753), - [anon_sym_union] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_else] = ACTIONS(1753), - [anon_sym_switch] = ACTIONS(1753), - [anon_sym_case] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_do] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_goto] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1755), - [anon_sym_TILDE] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_DASH_DASH] = ACTIONS(1755), - [anon_sym_PLUS_PLUS] = ACTIONS(1755), - [anon_sym_sizeof] = ACTIONS(1753), - [sym_number_literal] = ACTIONS(1755), - [anon_sym_SQUOTE] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [sym_null] = ACTIONS(1753), - [sym_identifier] = ACTIONS(1753), + [1028] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1710), + [sym_preproc_directive] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_typedef] = ACTIONS(1710), + [anon_sym_extern] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1712), + [anon_sym_LPAREN2] = ACTIONS(1712), + [anon_sym_STAR] = ACTIONS(1712), + [anon_sym_static] = ACTIONS(1710), + [anon_sym_auto] = ACTIONS(1710), + [anon_sym_register] = ACTIONS(1710), + [anon_sym_inline] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1710), + [anon_sym_restrict] = ACTIONS(1710), + [anon_sym_volatile] = ACTIONS(1710), + [anon_sym__Atomic] = ACTIONS(1710), + [anon_sym_unsigned] = ACTIONS(1710), + [anon_sym_long] = ACTIONS(1710), + [anon_sym_short] = ACTIONS(1710), + [sym_primitive_type] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1710), + [anon_sym_struct] = ACTIONS(1710), + [anon_sym_union] = ACTIONS(1710), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1710), + [anon_sym_case] = ACTIONS(1710), + [anon_sym_default] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1710), + [anon_sym_do] = ACTIONS(1710), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(1710), + [anon_sym_break] = ACTIONS(1710), + [anon_sym_continue] = ACTIONS(1710), + [anon_sym_goto] = ACTIONS(1710), + [anon_sym_AMP] = ACTIONS(1712), + [anon_sym_BANG] = ACTIONS(1712), + [anon_sym_TILDE] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1712), + [anon_sym_PLUS_PLUS] = ACTIONS(1712), + [anon_sym_sizeof] = ACTIONS(1710), + [sym_number_literal] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_DQUOTE] = ACTIONS(1712), + [sym_true] = ACTIONS(1710), + [sym_false] = ACTIONS(1710), + [sym_null] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1710), [sym_comment] = ACTIONS(39), }, - [1037] = { - [sym_preproc_include] = STATE(1037), - [sym_preproc_def] = STATE(1037), - [sym_preproc_function_def] = STATE(1037), - [sym_preproc_call] = STATE(1037), - [sym_preproc_if_in_compound_statement] = STATE(888), - [sym_preproc_ifdef_in_compound_statement] = STATE(889), - [sym_declaration] = STATE(1037), - [sym_type_definition] = STATE(1037), - [sym__declaration_specifiers] = STATE(890), - [sym_compound_statement] = STATE(1037), + [1029] = { + [sym_preproc_include] = STATE(1029), + [sym_preproc_def] = STATE(1029), + [sym_preproc_function_def] = STATE(1029), + [sym_preproc_call] = STATE(1029), + [sym_preproc_if_in_compound_statement] = STATE(869), + [sym_preproc_ifdef_in_compound_statement] = STATE(870), + [sym_declaration] = STATE(1029), + [sym_type_definition] = STATE(1029), + [sym__declaration_specifiers] = STATE(871), + [sym_compound_statement] = STATE(1029), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -40260,121 +40229,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(1037), - [sym_expression_statement] = STATE(1037), - [sym_if_statement] = STATE(1037), - [sym_switch_statement] = STATE(1037), - [sym_case_statement] = STATE(1037), - [sym_while_statement] = STATE(1037), - [sym_do_statement] = STATE(1037), - [sym_for_statement] = STATE(1037), - [sym_return_statement] = STATE(1037), - [sym_break_statement] = STATE(1037), - [sym_continue_statement] = STATE(1037), - [sym_goto_statement] = STATE(1037), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [sym__empty_declaration] = STATE(1037), + [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(872), + [sym_comma_expression] = STATE(873), + [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(253), + [sym__empty_declaration] = STATE(1029), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1037), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1029), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3183), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(1829), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3189), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3195), - [sym_preproc_directive] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_typedef] = ACTIONS(3204), - [anon_sym_extern] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_static] = ACTIONS(1850), - [anon_sym_auto] = ACTIONS(1850), - [anon_sym_register] = ACTIONS(1850), - [anon_sym_inline] = ACTIONS(1850), - [anon_sym_const] = ACTIONS(1861), - [anon_sym_restrict] = ACTIONS(1861), - [anon_sym_volatile] = ACTIONS(1861), - [anon_sym__Atomic] = ACTIONS(1861), - [anon_sym_unsigned] = ACTIONS(1864), - [anon_sym_long] = ACTIONS(1864), - [anon_sym_short] = ACTIONS(1864), - [sym_primitive_type] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1870), - [anon_sym_struct] = ACTIONS(1873), - [anon_sym_union] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(3210), - [anon_sym_switch] = ACTIONS(3213), - [anon_sym_case] = ACTIONS(3216), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3222), - [anon_sym_do] = ACTIONS(3225), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3237), - [anon_sym_goto] = ACTIONS(3240), - [anon_sym_AMP] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_PLUS] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_DASH_DASH] = ACTIONS(1921), - [anon_sym_PLUS_PLUS] = ACTIONS(1921), - [anon_sym_sizeof] = ACTIONS(1924), - [sym_number_literal] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_identifier] = ACTIONS(3249), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3088), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3091), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3097), + [sym_preproc_directive] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3106), + [anon_sym_extern] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_STAR] = ACTIONS(1821), + [anon_sym_static] = ACTIONS(1810), + [anon_sym_auto] = ACTIONS(1810), + [anon_sym_register] = ACTIONS(1810), + [anon_sym_inline] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(1824), + [anon_sym_restrict] = ACTIONS(1824), + [anon_sym_volatile] = ACTIONS(1824), + [anon_sym__Atomic] = ACTIONS(1824), + [anon_sym_unsigned] = ACTIONS(1827), + [anon_sym_long] = ACTIONS(1827), + [anon_sym_short] = ACTIONS(1827), + [sym_primitive_type] = ACTIONS(1830), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(1836), + [anon_sym_union] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_switch] = ACTIONS(3115), + [anon_sym_case] = ACTIONS(3118), + [anon_sym_default] = ACTIONS(3121), + [anon_sym_while] = ACTIONS(3124), + [anon_sym_do] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3139), + [anon_sym_goto] = ACTIONS(3142), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_BANG] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1884), + [anon_sym_PLUS_PLUS] = ACTIONS(1884), + [anon_sym_sizeof] = ACTIONS(1887), + [sym_number_literal] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1896), + [sym_true] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_null] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3151), [sym_comment] = ACTIONS(39), }, - [1038] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3252), + [1030] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3154), [sym_comment] = ACTIONS(39), }, - [1039] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3254), + [1031] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3156), [sym_comment] = ACTIONS(39), }, - [1040] = { - [sym_preproc_include] = STATE(915), - [sym_preproc_def] = STATE(915), - [sym_preproc_function_def] = STATE(915), - [sym_preproc_call] = STATE(915), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(1149), - [sym_preproc_elif_in_compound_statement] = STATE(1150), - [sym_declaration] = STATE(915), - [sym_type_definition] = STATE(915), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(915), + [1032] = { + [sym_preproc_include] = STATE(896), + [sym_preproc_def] = STATE(896), + [sym_preproc_function_def] = STATE(896), + [sym_preproc_call] = STATE(896), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(1144), + [sym_preproc_elif_in_compound_statement] = STATE(1145), + [sym_declaration] = STATE(896), + [sym_type_definition] = STATE(896), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(896), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -40382,59 +40351,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(915), - [sym_expression_statement] = STATE(915), - [sym_if_statement] = STATE(915), - [sym_switch_statement] = STATE(915), - [sym_case_statement] = STATE(915), - [sym_while_statement] = STATE(915), - [sym_do_statement] = STATE(915), - [sym_for_statement] = STATE(915), - [sym_return_statement] = STATE(915), - [sym_break_statement] = STATE(915), - [sym_continue_statement] = STATE(915), - [sym_goto_statement] = STATE(915), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(915), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(896), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(915), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3256), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3158), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -40450,121 +40419,306 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), + [sym_comment] = ACTIONS(39), + }, + [1033] = { + [sym_parenthesized_expression] = STATE(1146), + [anon_sym_LPAREN2] = ACTIONS(994), + [sym_comment] = ACTIONS(39), + }, + [1034] = { + [sym_parenthesized_expression] = STATE(1147), + [anon_sym_LPAREN2] = ACTIONS(994), + [sym_comment] = ACTIONS(39), + }, + [1035] = { + [sym__expression] = STATE(1148), + [sym_conditional_expression] = STATE(1148), + [sym_assignment_expression] = STATE(1148), + [sym_pointer_expression] = STATE(1148), + [sym_logical_expression] = STATE(1148), + [sym_bitwise_expression] = STATE(1148), + [sym_equality_expression] = STATE(1148), + [sym_relational_expression] = STATE(1148), + [sym_shift_expression] = STATE(1148), + [sym_math_expression] = STATE(1148), + [sym_cast_expression] = STATE(1148), + [sym_sizeof_expression] = STATE(1148), + [sym_subscript_expression] = STATE(1148), + [sym_call_expression] = STATE(1148), + [sym_field_expression] = STATE(1148), + [sym_compound_literal_expression] = STATE(1148), + [sym_parenthesized_expression] = STATE(1148), + [sym_char_literal] = STATE(1148), + [sym_concatenated_string] = STATE(1148), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3162), + [sym_false] = ACTIONS(3162), + [sym_null] = ACTIONS(3162), + [sym_identifier] = ACTIONS(3162), + [sym_comment] = ACTIONS(39), + }, + [1036] = { + [anon_sym_COLON] = ACTIONS(3164), + [sym_comment] = ACTIONS(39), + }, + [1037] = { + [sym_parenthesized_expression] = STATE(1150), + [anon_sym_LPAREN2] = ACTIONS(994), + [sym_comment] = ACTIONS(39), + }, + [1038] = { + [anon_sym_LPAREN2] = ACTIONS(3166), + [sym_comment] = ACTIONS(39), + }, + [1039] = { + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(3168), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_comment] = ACTIONS(39), + }, + [1040] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(3170), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [sym_null] = ACTIONS(2408), + [sym_identifier] = ACTIONS(2408), [sym_comment] = ACTIONS(39), }, [1041] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3258), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(2306), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), [sym_comment] = ACTIONS(39), }, [1042] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3260), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2414), + [sym_preproc_directive] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2414), + [anon_sym_extern] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_auto] = ACTIONS(2414), + [anon_sym_register] = ACTIONS(2414), + [anon_sym_inline] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [anon_sym_restrict] = ACTIONS(2414), + [anon_sym_volatile] = ACTIONS(2414), + [anon_sym__Atomic] = ACTIONS(2414), + [anon_sym_unsigned] = ACTIONS(2414), + [anon_sym_long] = ACTIONS(2414), + [anon_sym_short] = ACTIONS(2414), + [sym_primitive_type] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [anon_sym_struct] = ACTIONS(2414), + [anon_sym_union] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_else] = ACTIONS(2414), + [anon_sym_switch] = ACTIONS(2414), + [anon_sym_case] = ACTIONS(2414), + [anon_sym_default] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_goto] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(2416), + [anon_sym_TILDE] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(2416), + [anon_sym_sizeof] = ACTIONS(2414), + [sym_number_literal] = ACTIONS(2416), + [anon_sym_SQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2414), + [sym_false] = ACTIONS(2414), + [sym_null] = ACTIONS(2414), + [sym_identifier] = ACTIONS(2414), [sym_comment] = ACTIONS(39), }, [1043] = { - [sym_declaration] = STATE(1153), - [sym_type_definition] = STATE(1153), + [sym_declaration] = STATE(1154), + [sym_type_definition] = STATE(1154), [sym__declaration_specifiers] = STATE(1046), - [sym_compound_statement] = STATE(1153), + [sym_compound_statement] = STATE(1154), [sym_storage_class_specifier] = STATE(96), [sym_type_qualifier] = STATE(96), [sym__type_specifier] = STATE(95), @@ -40572,48 +40726,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(95), [sym_struct_specifier] = STATE(95), [sym_union_specifier] = STATE(95), - [sym_labeled_statement] = STATE(1153), - [sym_expression_statement] = STATE(1153), - [sym_if_statement] = STATE(1153), - [sym_switch_statement] = STATE(1153), - [sym_case_statement] = STATE(1153), - [sym_while_statement] = STATE(1153), - [sym_do_statement] = STATE(1153), - [sym_for_statement] = STATE(1153), - [sym_return_statement] = STATE(1153), - [sym_break_statement] = STATE(1153), - [sym_continue_statement] = STATE(1153), - [sym_goto_statement] = STATE(1153), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), + [sym_labeled_statement] = STATE(1154), + [sym_expression_statement] = STATE(1154), + [sym_if_statement] = STATE(1154), + [sym_switch_statement] = STATE(1154), + [sym_case_statement] = STATE(1154), + [sym_while_statement] = STATE(1154), + [sym_do_statement] = STATE(1154), + [sym_for_statement] = STATE(1154), + [sym_return_statement] = STATE(1154), + [sym_break_statement] = STATE(1154), + [sym_continue_statement] = STATE(1154), + [sym_goto_statement] = STATE(1154), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -40629,225 +40783,245 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2751), [sym_comment] = ACTIONS(39), }, [1044] = { - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2410), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), - [sym_identifier] = ACTIONS(86), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_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_COLON] = ACTIONS(2306), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, [1045] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2526), - [sym_preproc_directive] = ACTIONS(2526), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_typedef] = ACTIONS(2526), - [anon_sym_extern] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2528), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_auto] = ACTIONS(2526), - [anon_sym_register] = ACTIONS(2526), - [anon_sym_inline] = ACTIONS(2526), - [anon_sym_const] = ACTIONS(2526), - [anon_sym_restrict] = ACTIONS(2526), - [anon_sym_volatile] = ACTIONS(2526), - [anon_sym__Atomic] = ACTIONS(2526), - [anon_sym_unsigned] = ACTIONS(2526), - [anon_sym_long] = ACTIONS(2526), - [anon_sym_short] = ACTIONS(2526), - [sym_primitive_type] = ACTIONS(2526), - [anon_sym_enum] = ACTIONS(2526), - [anon_sym_struct] = ACTIONS(2526), - [anon_sym_union] = ACTIONS(2526), - [anon_sym_if] = ACTIONS(2526), - [anon_sym_else] = ACTIONS(2526), - [anon_sym_switch] = ACTIONS(2526), - [anon_sym_case] = ACTIONS(2526), - [anon_sym_default] = ACTIONS(2526), - [anon_sym_while] = ACTIONS(2526), - [anon_sym_do] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2526), - [anon_sym_return] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2526), - [anon_sym_continue] = ACTIONS(2526), - [anon_sym_goto] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_sizeof] = ACTIONS(2526), - [sym_number_literal] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [sym_true] = ACTIONS(2526), - [sym_false] = ACTIONS(2526), - [sym_null] = ACTIONS(2526), - [sym_identifier] = ACTIONS(2526), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2464), + [sym_preproc_directive] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2464), + [anon_sym_extern] = ACTIONS(2464), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2464), + [anon_sym_register] = ACTIONS(2464), + [anon_sym_inline] = ACTIONS(2464), + [anon_sym_const] = ACTIONS(2464), + [anon_sym_restrict] = ACTIONS(2464), + [anon_sym_volatile] = ACTIONS(2464), + [anon_sym__Atomic] = ACTIONS(2464), + [anon_sym_unsigned] = ACTIONS(2464), + [anon_sym_long] = ACTIONS(2464), + [anon_sym_short] = ACTIONS(2464), + [sym_primitive_type] = ACTIONS(2464), + [anon_sym_enum] = ACTIONS(2464), + [anon_sym_struct] = ACTIONS(2464), + [anon_sym_union] = ACTIONS(2464), + [anon_sym_if] = ACTIONS(2464), + [anon_sym_else] = ACTIONS(2464), + [anon_sym_switch] = ACTIONS(2464), + [anon_sym_case] = ACTIONS(2464), + [anon_sym_default] = ACTIONS(2464), + [anon_sym_while] = ACTIONS(2464), + [anon_sym_do] = ACTIONS(2464), + [anon_sym_for] = ACTIONS(2464), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_goto] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2466), + [anon_sym_TILDE] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_sizeof] = ACTIONS(2464), + [sym_number_literal] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2466), + [sym_true] = ACTIONS(2464), + [sym_false] = ACTIONS(2464), + [sym_null] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2464), [sym_comment] = ACTIONS(39), }, [1046] = { - [sym__declarator] = STATE(910), - [sym_pointer_declarator] = STATE(910), - [sym_function_declarator] = STATE(910), - [sym_array_declarator] = STATE(910), + [sym__declarator] = STATE(891), + [sym_pointer_declarator] = STATE(891), + [sym_function_declarator] = STATE(891), + [sym_array_declarator] = STATE(891), [sym_init_declarator] = STATE(167), - [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_STAR] = ACTIONS(540), - [sym_identifier] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(92), + [anon_sym_STAR] = ACTIONS(534), + [sym_identifier] = ACTIONS(2312), [sym_comment] = ACTIONS(39), }, [1047] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3262), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2468), + [sym_preproc_directive] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_typedef] = ACTIONS(2468), + [anon_sym_extern] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_LPAREN2] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2468), + [anon_sym_register] = ACTIONS(2468), + [anon_sym_inline] = ACTIONS(2468), + [anon_sym_const] = ACTIONS(2468), + [anon_sym_restrict] = ACTIONS(2468), + [anon_sym_volatile] = ACTIONS(2468), + [anon_sym__Atomic] = ACTIONS(2468), + [anon_sym_unsigned] = ACTIONS(2468), + [anon_sym_long] = ACTIONS(2468), + [anon_sym_short] = ACTIONS(2468), + [sym_primitive_type] = ACTIONS(2468), + [anon_sym_enum] = ACTIONS(2468), + [anon_sym_struct] = ACTIONS(2468), + [anon_sym_union] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_else] = ACTIONS(2468), + [anon_sym_switch] = ACTIONS(2468), + [anon_sym_case] = ACTIONS(2468), + [anon_sym_default] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_do] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_goto] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_sizeof] = ACTIONS(2468), + [sym_number_literal] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [sym_true] = ACTIONS(2468), + [sym_false] = ACTIONS(2468), + [sym_null] = ACTIONS(2468), + [sym_identifier] = ACTIONS(2468), [sym_comment] = ACTIONS(39), }, [1048] = { - [anon_sym_LPAREN] = ACTIONS(3264), + [sym_parenthesized_expression] = STATE(1156), + [anon_sym_LPAREN2] = ACTIONS(3172), [sym_comment] = ACTIONS(39), }, [1049] = { - [sym__expression] = STATE(1157), - [sym_conditional_expression] = STATE(1157), - [sym_assignment_expression] = STATE(1157), - [sym_pointer_expression] = STATE(1157), - [sym_logical_expression] = STATE(1157), - [sym_bitwise_expression] = STATE(1157), - [sym_equality_expression] = STATE(1157), - [sym_relational_expression] = STATE(1157), - [sym_shift_expression] = STATE(1157), - [sym_math_expression] = STATE(1157), - [sym_cast_expression] = STATE(1157), - [sym_sizeof_expression] = STATE(1157), - [sym_subscript_expression] = STATE(1157), - [sym_call_expression] = STATE(1157), - [sym_field_expression] = STATE(1157), - [sym_compound_literal_expression] = STATE(1157), - [sym_parenthesized_expression] = STATE(1157), - [sym_char_literal] = STATE(1157), - [sym_concatenated_string] = STATE(1157), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3266), + [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(376), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -40857,3132 +41031,3047 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3268), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [sym_null] = ACTIONS(3270), - [sym_identifier] = ACTIONS(3270), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_null] = ACTIONS(3178), + [sym_identifier] = ACTIONS(3178), [sym_comment] = ACTIONS(39), }, [1050] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1051] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2564), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2564), - [anon_sym_LPAREN] = ACTIONS(2566), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2564), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2564), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2564), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2564), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2564), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2564), - [sym_preproc_directive] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_typedef] = ACTIONS(2564), - [anon_sym_extern] = ACTIONS(2564), - [anon_sym_LBRACE] = ACTIONS(2566), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_static] = ACTIONS(2564), - [anon_sym_auto] = ACTIONS(2564), - [anon_sym_register] = ACTIONS(2564), - [anon_sym_inline] = ACTIONS(2564), - [anon_sym_const] = ACTIONS(2564), - [anon_sym_restrict] = ACTIONS(2564), - [anon_sym_volatile] = ACTIONS(2564), - [anon_sym__Atomic] = ACTIONS(2564), - [anon_sym_unsigned] = ACTIONS(2564), - [anon_sym_long] = ACTIONS(2564), - [anon_sym_short] = ACTIONS(2564), - [sym_primitive_type] = ACTIONS(2564), - [anon_sym_enum] = ACTIONS(2564), - [anon_sym_struct] = ACTIONS(2564), - [anon_sym_union] = ACTIONS(2564), - [anon_sym_if] = ACTIONS(2564), - [anon_sym_else] = ACTIONS(2564), - [anon_sym_switch] = ACTIONS(2564), - [anon_sym_case] = ACTIONS(2564), - [anon_sym_default] = ACTIONS(2564), - [anon_sym_while] = ACTIONS(2564), - [anon_sym_do] = ACTIONS(2564), - [anon_sym_for] = ACTIONS(2564), - [anon_sym_return] = ACTIONS(2564), - [anon_sym_break] = ACTIONS(2564), - [anon_sym_continue] = ACTIONS(2564), - [anon_sym_goto] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_BANG] = ACTIONS(2566), - [anon_sym_TILDE] = ACTIONS(2566), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_DASH_DASH] = ACTIONS(2566), - [anon_sym_PLUS_PLUS] = ACTIONS(2566), - [anon_sym_sizeof] = ACTIONS(2564), - [sym_number_literal] = ACTIONS(2566), - [anon_sym_SQUOTE] = ACTIONS(2566), - [anon_sym_DQUOTE] = ACTIONS(2566), - [sym_true] = ACTIONS(2564), - [sym_false] = ACTIONS(2564), - [sym_null] = ACTIONS(2564), - [sym_identifier] = ACTIONS(2564), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2506), + [sym_preproc_directive] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2508), + [anon_sym_typedef] = ACTIONS(2506), + [anon_sym_extern] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2508), + [anon_sym_LPAREN2] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2506), + [anon_sym_auto] = ACTIONS(2506), + [anon_sym_register] = ACTIONS(2506), + [anon_sym_inline] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(2506), + [anon_sym_restrict] = ACTIONS(2506), + [anon_sym_volatile] = ACTIONS(2506), + [anon_sym__Atomic] = ACTIONS(2506), + [anon_sym_unsigned] = ACTIONS(2506), + [anon_sym_long] = ACTIONS(2506), + [anon_sym_short] = ACTIONS(2506), + [sym_primitive_type] = ACTIONS(2506), + [anon_sym_enum] = ACTIONS(2506), + [anon_sym_struct] = ACTIONS(2506), + [anon_sym_union] = ACTIONS(2506), + [anon_sym_if] = ACTIONS(2506), + [anon_sym_else] = ACTIONS(2506), + [anon_sym_switch] = ACTIONS(2506), + [anon_sym_case] = ACTIONS(2506), + [anon_sym_default] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2506), + [anon_sym_do] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2506), + [anon_sym_return] = ACTIONS(2506), + [anon_sym_break] = ACTIONS(2506), + [anon_sym_continue] = ACTIONS(2506), + [anon_sym_goto] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_BANG] = ACTIONS(2508), + [anon_sym_TILDE] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2506), + [anon_sym_DASH] = ACTIONS(2506), + [anon_sym_DASH_DASH] = ACTIONS(2508), + [anon_sym_PLUS_PLUS] = ACTIONS(2508), + [anon_sym_sizeof] = ACTIONS(2506), + [sym_number_literal] = ACTIONS(2508), + [anon_sym_SQUOTE] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_identifier] = ACTIONS(2506), [sym_comment] = ACTIONS(39), }, [1052] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2568), - [anon_sym_LPAREN] = ACTIONS(2570), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2568), - [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(2568), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_typedef] = ACTIONS(2568), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_auto] = ACTIONS(2568), - [anon_sym_register] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_restrict] = ACTIONS(2568), - [anon_sym_volatile] = ACTIONS(2568), - [anon_sym__Atomic] = ACTIONS(2568), - [anon_sym_unsigned] = ACTIONS(2568), - [anon_sym_long] = ACTIONS(2568), - [anon_sym_short] = ACTIONS(2568), - [sym_primitive_type] = ACTIONS(2568), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_struct] = ACTIONS(2568), - [anon_sym_union] = ACTIONS(2568), - [anon_sym_if] = ACTIONS(2568), - [anon_sym_else] = ACTIONS(2568), - [anon_sym_switch] = ACTIONS(2568), - [anon_sym_case] = ACTIONS(2568), - [anon_sym_default] = ACTIONS(2568), - [anon_sym_while] = ACTIONS(2568), - [anon_sym_do] = ACTIONS(2568), - [anon_sym_for] = ACTIONS(2568), - [anon_sym_return] = ACTIONS(2568), - [anon_sym_break] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2568), - [anon_sym_goto] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_BANG] = ACTIONS(2570), - [anon_sym_TILDE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2570), - [anon_sym_PLUS_PLUS] = ACTIONS(2570), - [anon_sym_sizeof] = ACTIONS(2568), - [sym_number_literal] = ACTIONS(2570), - [anon_sym_SQUOTE] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(2570), - [sym_true] = ACTIONS(2568), - [sym_false] = ACTIONS(2568), - [sym_null] = ACTIONS(2568), - [sym_identifier] = ACTIONS(2568), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2510), + [sym_preproc_directive] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2510), + [anon_sym_extern] = ACTIONS(2510), + [anon_sym_LBRACE] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2510), + [anon_sym_auto] = ACTIONS(2510), + [anon_sym_register] = ACTIONS(2510), + [anon_sym_inline] = ACTIONS(2510), + [anon_sym_const] = ACTIONS(2510), + [anon_sym_restrict] = ACTIONS(2510), + [anon_sym_volatile] = ACTIONS(2510), + [anon_sym__Atomic] = ACTIONS(2510), + [anon_sym_unsigned] = ACTIONS(2510), + [anon_sym_long] = ACTIONS(2510), + [anon_sym_short] = ACTIONS(2510), + [sym_primitive_type] = ACTIONS(2510), + [anon_sym_enum] = ACTIONS(2510), + [anon_sym_struct] = ACTIONS(2510), + [anon_sym_union] = ACTIONS(2510), + [anon_sym_if] = ACTIONS(2510), + [anon_sym_else] = ACTIONS(2510), + [anon_sym_switch] = ACTIONS(2510), + [anon_sym_case] = ACTIONS(2510), + [anon_sym_default] = ACTIONS(2510), + [anon_sym_while] = ACTIONS(2510), + [anon_sym_do] = ACTIONS(2510), + [anon_sym_for] = ACTIONS(2510), + [anon_sym_return] = ACTIONS(2510), + [anon_sym_break] = ACTIONS(2510), + [anon_sym_continue] = ACTIONS(2510), + [anon_sym_goto] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2512), + [anon_sym_BANG] = ACTIONS(2512), + [anon_sym_TILDE] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2512), + [anon_sym_PLUS_PLUS] = ACTIONS(2512), + [anon_sym_sizeof] = ACTIONS(2510), + [sym_number_literal] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2512), + [sym_true] = ACTIONS(2510), + [sym_false] = ACTIONS(2510), + [sym_null] = ACTIONS(2510), + [sym_identifier] = ACTIONS(2510), [sym_comment] = ACTIONS(39), }, [1053] = { - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_COLON] = ACTIONS(2410), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2520), + [sym_preproc_directive] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_typedef] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_LPAREN2] = ACTIONS(2522), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_auto] = ACTIONS(2520), + [anon_sym_register] = ACTIONS(2520), + [anon_sym_inline] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_restrict] = ACTIONS(2520), + [anon_sym_volatile] = ACTIONS(2520), + [anon_sym__Atomic] = ACTIONS(2520), + [anon_sym_unsigned] = ACTIONS(2520), + [anon_sym_long] = ACTIONS(2520), + [anon_sym_short] = ACTIONS(2520), + [sym_primitive_type] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2520), + [anon_sym_union] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_switch] = ACTIONS(2520), + [anon_sym_case] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_goto] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_sizeof] = ACTIONS(2520), + [sym_number_literal] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2522), + [sym_true] = ACTIONS(2520), + [sym_false] = ACTIONS(2520), + [sym_null] = ACTIONS(2520), + [sym_identifier] = ACTIONS(2520), [sym_comment] = ACTIONS(39), }, [1054] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2578), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2578), - [anon_sym_LPAREN] = ACTIONS(2580), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2578), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2578), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2578), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2578), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2578), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2578), - [sym_preproc_directive] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2580), - [anon_sym_typedef] = ACTIONS(2578), - [anon_sym_extern] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2578), - [anon_sym_auto] = ACTIONS(2578), - [anon_sym_register] = ACTIONS(2578), - [anon_sym_inline] = ACTIONS(2578), - [anon_sym_const] = ACTIONS(2578), - [anon_sym_restrict] = ACTIONS(2578), - [anon_sym_volatile] = ACTIONS(2578), - [anon_sym__Atomic] = ACTIONS(2578), - [anon_sym_unsigned] = ACTIONS(2578), - [anon_sym_long] = ACTIONS(2578), - [anon_sym_short] = ACTIONS(2578), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_enum] = ACTIONS(2578), - [anon_sym_struct] = ACTIONS(2578), - [anon_sym_union] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2578), - [anon_sym_else] = ACTIONS(2578), - [anon_sym_switch] = ACTIONS(2578), - [anon_sym_case] = ACTIONS(2578), - [anon_sym_default] = ACTIONS(2578), - [anon_sym_while] = ACTIONS(2578), - [anon_sym_do] = ACTIONS(2578), - [anon_sym_for] = ACTIONS(2578), - [anon_sym_return] = ACTIONS(2578), - [anon_sym_break] = ACTIONS(2578), - [anon_sym_continue] = ACTIONS(2578), - [anon_sym_goto] = ACTIONS(2578), - [anon_sym_AMP] = ACTIONS(2580), - [anon_sym_BANG] = ACTIONS(2580), - [anon_sym_TILDE] = ACTIONS(2580), - [anon_sym_PLUS] = ACTIONS(2578), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(2580), - [anon_sym_PLUS_PLUS] = ACTIONS(2580), - [anon_sym_sizeof] = ACTIONS(2578), - [sym_number_literal] = ACTIONS(2580), - [anon_sym_SQUOTE] = ACTIONS(2580), - [anon_sym_DQUOTE] = ACTIONS(2580), - [sym_true] = ACTIONS(2578), - [sym_false] = ACTIONS(2578), - [sym_null] = ACTIONS(2578), - [sym_identifier] = ACTIONS(2578), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3182), + [sym_preproc_directive] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3182), + [anon_sym_extern] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_auto] = ACTIONS(3182), + [anon_sym_register] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_restrict] = ACTIONS(3182), + [anon_sym_volatile] = ACTIONS(3182), + [anon_sym__Atomic] = ACTIONS(3182), + [anon_sym_unsigned] = ACTIONS(3182), + [anon_sym_long] = ACTIONS(3182), + [anon_sym_short] = ACTIONS(3182), + [sym_primitive_type] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_union] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_case] = ACTIONS(3182), + [anon_sym_default] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_goto] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_sizeof] = ACTIONS(3182), + [sym_number_literal] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_identifier] = ACTIONS(3182), [sym_comment] = ACTIONS(39), }, [1055] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3276), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym_typedef] = ACTIONS(3274), - [anon_sym_extern] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_RBRACE] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_auto] = ACTIONS(3274), - [anon_sym_register] = ACTIONS(3274), - [anon_sym_inline] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_restrict] = ACTIONS(3274), - [anon_sym_volatile] = ACTIONS(3274), - [anon_sym__Atomic] = ACTIONS(3274), - [anon_sym_unsigned] = ACTIONS(3274), - [anon_sym_long] = ACTIONS(3274), - [anon_sym_short] = ACTIONS(3274), - [sym_primitive_type] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_goto] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_sizeof] = ACTIONS(3274), - [sym_number_literal] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_null] = ACTIONS(3274), - [sym_identifier] = ACTIONS(3274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3186), + [sym_preproc_directive] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_typedef] = ACTIONS(3186), + [anon_sym_extern] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_auto] = ACTIONS(3186), + [anon_sym_register] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_restrict] = ACTIONS(3186), + [anon_sym_volatile] = ACTIONS(3186), + [anon_sym__Atomic] = ACTIONS(3186), + [anon_sym_unsigned] = ACTIONS(3186), + [anon_sym_long] = ACTIONS(3186), + [anon_sym_short] = ACTIONS(3186), + [sym_primitive_type] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), + [anon_sym_struct] = ACTIONS(3186), + [anon_sym_union] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_goto] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_sizeof] = ACTIONS(3186), + [sym_number_literal] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_identifier] = ACTIONS(3186), [sym_comment] = ACTIONS(39), }, [1056] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3280), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3278), - [sym_preproc_directive] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_typedef] = ACTIONS(3278), - [anon_sym_extern] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_auto] = ACTIONS(3278), - [anon_sym_register] = ACTIONS(3278), - [anon_sym_inline] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_restrict] = ACTIONS(3278), - [anon_sym_volatile] = ACTIONS(3278), - [anon_sym__Atomic] = ACTIONS(3278), - [anon_sym_unsigned] = ACTIONS(3278), - [anon_sym_long] = ACTIONS(3278), - [anon_sym_short] = ACTIONS(3278), - [sym_primitive_type] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_union] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3278), - [anon_sym_default] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_goto] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_sizeof] = ACTIONS(3278), - [sym_number_literal] = ACTIONS(3280), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_null] = ACTIONS(3278), - [sym_identifier] = ACTIONS(3278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3190), + [sym_preproc_directive] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3192), + [anon_sym_typedef] = ACTIONS(3190), + [anon_sym_extern] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_LPAREN2] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3190), + [anon_sym_auto] = ACTIONS(3190), + [anon_sym_register] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_const] = ACTIONS(3190), + [anon_sym_restrict] = ACTIONS(3190), + [anon_sym_volatile] = ACTIONS(3190), + [anon_sym__Atomic] = ACTIONS(3190), + [anon_sym_unsigned] = ACTIONS(3190), + [anon_sym_long] = ACTIONS(3190), + [anon_sym_short] = ACTIONS(3190), + [sym_primitive_type] = ACTIONS(3190), + [anon_sym_enum] = ACTIONS(3190), + [anon_sym_struct] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_switch] = ACTIONS(3190), + [anon_sym_case] = ACTIONS(3190), + [anon_sym_default] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_do] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_goto] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3192), + [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_DASH_DASH] = ACTIONS(3192), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_sizeof] = ACTIONS(3190), + [sym_number_literal] = ACTIONS(3192), + [anon_sym_SQUOTE] = ACTIONS(3192), + [anon_sym_DQUOTE] = ACTIONS(3192), + [sym_true] = ACTIONS(3190), + [sym_false] = ACTIONS(3190), + [sym_null] = ACTIONS(3190), + [sym_identifier] = ACTIONS(3190), [sym_comment] = ACTIONS(39), }, [1057] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3284), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3282), - [sym_preproc_directive] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_typedef] = ACTIONS(3282), - [anon_sym_extern] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_auto] = ACTIONS(3282), - [anon_sym_register] = ACTIONS(3282), - [anon_sym_inline] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_restrict] = ACTIONS(3282), - [anon_sym_volatile] = ACTIONS(3282), - [anon_sym__Atomic] = ACTIONS(3282), - [anon_sym_unsigned] = ACTIONS(3282), - [anon_sym_long] = ACTIONS(3282), - [anon_sym_short] = ACTIONS(3282), - [sym_primitive_type] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), - [anon_sym_struct] = ACTIONS(3282), - [anon_sym_union] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_case] = ACTIONS(3282), - [anon_sym_default] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_goto] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_sizeof] = ACTIONS(3282), - [sym_number_literal] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [sym_null] = ACTIONS(3282), - [sym_identifier] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3194), + [sym_preproc_directive] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3196), + [anon_sym_typedef] = ACTIONS(3194), + [anon_sym_extern] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3196), + [anon_sym_RBRACE] = ACTIONS(3196), + [anon_sym_LPAREN2] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_auto] = ACTIONS(3194), + [anon_sym_register] = ACTIONS(3194), + [anon_sym_inline] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_restrict] = ACTIONS(3194), + [anon_sym_volatile] = ACTIONS(3194), + [anon_sym__Atomic] = ACTIONS(3194), + [anon_sym_unsigned] = ACTIONS(3194), + [anon_sym_long] = ACTIONS(3194), + [anon_sym_short] = ACTIONS(3194), + [sym_primitive_type] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), + [anon_sym_struct] = ACTIONS(3194), + [anon_sym_union] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_case] = ACTIONS(3194), + [anon_sym_default] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_goto] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3196), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_TILDE] = ACTIONS(3196), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3196), + [anon_sym_PLUS_PLUS] = ACTIONS(3196), + [anon_sym_sizeof] = ACTIONS(3194), + [sym_number_literal] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3196), + [anon_sym_DQUOTE] = ACTIONS(3196), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_identifier] = ACTIONS(3194), [sym_comment] = ACTIONS(39), }, [1058] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3288), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_auto] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_sizeof] = ACTIONS(3286), - [sym_number_literal] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_identifier] = ACTIONS(3286), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3198), + [sym_preproc_directive] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_typedef] = ACTIONS(3198), + [anon_sym_extern] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN2] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_auto] = ACTIONS(3198), + [anon_sym_register] = ACTIONS(3198), + [anon_sym_inline] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_restrict] = ACTIONS(3198), + [anon_sym_volatile] = ACTIONS(3198), + [anon_sym__Atomic] = ACTIONS(3198), + [anon_sym_unsigned] = ACTIONS(3198), + [anon_sym_long] = ACTIONS(3198), + [anon_sym_short] = ACTIONS(3198), + [sym_primitive_type] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_goto] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_sizeof] = ACTIONS(3198), + [sym_number_literal] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_identifier] = ACTIONS(3198), [sym_comment] = ACTIONS(39), }, [1059] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3290), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3290), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3290), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3290), - [sym_preproc_directive] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_typedef] = ACTIONS(3290), - [anon_sym_extern] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3290), - [anon_sym_auto] = ACTIONS(3290), - [anon_sym_register] = ACTIONS(3290), - [anon_sym_inline] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_restrict] = ACTIONS(3290), - [anon_sym_volatile] = ACTIONS(3290), - [anon_sym__Atomic] = ACTIONS(3290), - [anon_sym_unsigned] = ACTIONS(3290), - [anon_sym_long] = ACTIONS(3290), - [anon_sym_short] = ACTIONS(3290), - [sym_primitive_type] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), - [anon_sym_struct] = ACTIONS(3290), - [anon_sym_union] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3290), - [anon_sym_default] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_goto] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_sizeof] = ACTIONS(3290), - [sym_number_literal] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [sym_null] = ACTIONS(3290), - [sym_identifier] = ACTIONS(3290), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3202), + [sym_preproc_directive] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym_typedef] = ACTIONS(3202), + [anon_sym_extern] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_auto] = ACTIONS(3202), + [anon_sym_register] = ACTIONS(3202), + [anon_sym_inline] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_restrict] = ACTIONS(3202), + [anon_sym_volatile] = ACTIONS(3202), + [anon_sym__Atomic] = ACTIONS(3202), + [anon_sym_unsigned] = ACTIONS(3202), + [anon_sym_long] = ACTIONS(3202), + [anon_sym_short] = ACTIONS(3202), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_union] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_goto] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_sizeof] = ACTIONS(3202), + [sym_number_literal] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3204), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_null] = ACTIONS(3202), + [sym_identifier] = ACTIONS(3202), [sym_comment] = ACTIONS(39), }, [1060] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3296), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3294), - [sym_preproc_directive] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_auto] = ACTIONS(3294), - [anon_sym_register] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_restrict] = ACTIONS(3294), - [anon_sym_volatile] = ACTIONS(3294), - [anon_sym__Atomic] = ACTIONS(3294), - [anon_sym_unsigned] = ACTIONS(3294), - [anon_sym_long] = ACTIONS(3294), - [anon_sym_short] = ACTIONS(3294), - [sym_primitive_type] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_goto] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_sizeof] = ACTIONS(3294), - [sym_number_literal] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3294), + [sym__expression] = STATE(921), + [sym_conditional_expression] = STATE(921), + [sym_assignment_expression] = STATE(921), + [sym_pointer_expression] = STATE(921), + [sym_logical_expression] = STATE(921), + [sym_bitwise_expression] = STATE(921), + [sym_equality_expression] = STATE(921), + [sym_relational_expression] = STATE(921), + [sym_shift_expression] = STATE(921), + [sym_math_expression] = STATE(921), + [sym_cast_expression] = STATE(921), + [sym_sizeof_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_call_expression] = STATE(921), + [sym_field_expression] = STATE(921), + [sym_compound_literal_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(921), + [sym_initializer_list] = STATE(922), + [sym_char_literal] = STATE(921), + [sym_concatenated_string] = STATE(921), + [sym_string_literal] = STATE(409), + [anon_sym_COMMA] = ACTIONS(2952), + [anon_sym_RPAREN] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_EQ] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2952), + [anon_sym_STAR_EQ] = ACTIONS(2952), + [anon_sym_SLASH_EQ] = ACTIONS(2952), + [anon_sym_PERCENT_EQ] = ACTIONS(2952), + [anon_sym_PLUS_EQ] = ACTIONS(2952), + [anon_sym_DASH_EQ] = ACTIONS(2952), + [anon_sym_LT_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_GT_EQ] = ACTIONS(2952), + [anon_sym_AMP_EQ] = ACTIONS(2952), + [anon_sym_CARET_EQ] = ACTIONS(2952), + [anon_sym_PIPE_EQ] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(2952), + [anon_sym_AMP_AMP] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(3208), + [anon_sym_PIPE] = ACTIONS(2956), + [anon_sym_CARET] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_EQ_EQ] = ACTIONS(2952), + [anon_sym_BANG_EQ] = ACTIONS(2952), + [anon_sym_LT] = ACTIONS(2956), + [anon_sym_GT] = ACTIONS(2956), + [anon_sym_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_EQ] = ACTIONS(2952), + [anon_sym_LT_LT] = ACTIONS(2956), + [anon_sym_GT_GT] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(2952), + [anon_sym_DASH_GT] = ACTIONS(2952), + [sym_number_literal] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2394), + [sym_false] = ACTIONS(2394), + [sym_null] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2394), [sym_comment] = ACTIONS(39), }, [1061] = { - [sym__expression] = STATE(866), - [sym_conditional_expression] = STATE(866), - [sym_assignment_expression] = STATE(866), - [sym_pointer_expression] = STATE(866), - [sym_logical_expression] = STATE(866), - [sym_bitwise_expression] = STATE(866), - [sym_equality_expression] = STATE(866), - [sym_relational_expression] = STATE(866), - [sym_shift_expression] = STATE(866), - [sym_math_expression] = STATE(866), - [sym_cast_expression] = STATE(866), - [sym_sizeof_expression] = STATE(866), - [sym_subscript_expression] = STATE(866), - [sym_call_expression] = STATE(866), - [sym_field_expression] = STATE(866), - [sym_compound_literal_expression] = STATE(866), - [sym_parenthesized_expression] = STATE(866), - [sym_initializer_list] = STATE(867), - [sym_char_literal] = STATE(866), - [sym_concatenated_string] = STATE(866), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2332), + [sym__expression] = STATE(1160), + [sym_conditional_expression] = STATE(1160), + [sym_assignment_expression] = STATE(1160), + [sym_pointer_expression] = STATE(1160), + [sym_logical_expression] = STATE(1160), + [sym_bitwise_expression] = STATE(1160), + [sym_equality_expression] = STATE(1160), + [sym_relational_expression] = STATE(1160), + [sym_shift_expression] = STATE(1160), + [sym_math_expression] = STATE(1160), + [sym_cast_expression] = STATE(1160), + [sym_sizeof_expression] = STATE(1160), + [sym_subscript_expression] = STATE(1160), + [sym_call_expression] = STATE(1160), + [sym_field_expression] = STATE(1160), + [sym_compound_literal_expression] = STATE(1160), + [sym_parenthesized_expression] = STATE(1160), + [sym_char_literal] = STATE(1160), + [sym_concatenated_string] = STATE(1160), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3212), + [sym_false] = ACTIONS(3212), + [sym_null] = ACTIONS(3212), + [sym_identifier] = ACTIONS(3212), [sym_comment] = ACTIONS(39), }, [1062] = { - [anon_sym_RPAREN] = ACTIONS(3298), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [sym_null] = ACTIONS(2408), + [sym_identifier] = ACTIONS(2408), [sym_comment] = ACTIONS(39), }, [1063] = { - [anon_sym_LPAREN] = ACTIONS(3300), + [sym_declaration] = STATE(936), + [sym_type_definition] = STATE(936), + [sym__declaration_specifiers] = STATE(710), + [sym_compound_statement] = STATE(936), + [sym_storage_class_specifier] = STATE(96), + [sym_type_qualifier] = STATE(96), + [sym__type_specifier] = STATE(95), + [sym_sized_type_specifier] = STATE(95), + [sym_enum_specifier] = STATE(95), + [sym_struct_specifier] = STATE(95), + [sym_union_specifier] = STATE(95), + [sym_labeled_statement] = STATE(936), + [sym_expression_statement] = STATE(936), + [sym_if_statement] = STATE(936), + [sym_switch_statement] = STATE(936), + [sym_case_statement] = STATE(936), + [sym_while_statement] = STATE(936), + [sym_do_statement] = STATE(936), + [sym_for_statement] = STATE(936), + [sym_return_statement] = STATE(936), + [sym_break_statement] = STATE(936), + [sym_continue_statement] = STATE(936), + [sym_goto_statement] = STATE(936), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [sym_macro_type_specifier] = STATE(95), + [aux_sym__declaration_specifiers_repeat1] = STATE(96), + [aux_sym_sized_type_specifier_repeat1] = STATE(97), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_typedef] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_long] = ACTIONS(177), + [anon_sym_short] = ACTIONS(177), + [sym_primitive_type] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(2898), [sym_comment] = ACTIONS(39), }, [1064] = { - [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_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_COLON] = ACTIONS(2406), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, [1065] = { - [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(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_null] = ACTIONS(3306), - [sym_identifier] = ACTIONS(3306), + [sym__expression] = STATE(1163), + [sym_conditional_expression] = STATE(1163), + [sym_assignment_expression] = STATE(1163), + [sym_pointer_expression] = STATE(1163), + [sym_logical_expression] = STATE(1163), + [sym_bitwise_expression] = STATE(1163), + [sym_equality_expression] = STATE(1163), + [sym_relational_expression] = STATE(1163), + [sym_shift_expression] = STATE(1163), + [sym_math_expression] = STATE(1163), + [sym_cast_expression] = STATE(1163), + [sym_sizeof_expression] = STATE(1163), + [sym_subscript_expression] = STATE(1163), + [sym_call_expression] = STATE(1163), + [sym_field_expression] = STATE(1163), + [sym_compound_literal_expression] = STATE(1163), + [sym_parenthesized_expression] = STATE(1163), + [sym_char_literal] = STATE(1163), + [sym_concatenated_string] = STATE(1163), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym_LPAREN2] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_sizeof] = ACTIONS(859), + [sym_number_literal] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_null] = ACTIONS(3220), + [sym_identifier] = ACTIONS(3220), [sym_comment] = ACTIONS(39), }, [1066] = { - [anon_sym_COLON] = ACTIONS(3308), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1067] = { - [anon_sym_LPAREN] = ACTIONS(3310), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3224), + [sym_preproc_directive] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_typedef] = ACTIONS(3224), + [anon_sym_extern] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_RBRACE] = ACTIONS(3226), + [anon_sym_LPAREN2] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_auto] = ACTIONS(3224), + [anon_sym_register] = ACTIONS(3224), + [anon_sym_inline] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_restrict] = ACTIONS(3224), + [anon_sym_volatile] = ACTIONS(3224), + [anon_sym__Atomic] = ACTIONS(3224), + [anon_sym_unsigned] = ACTIONS(3224), + [anon_sym_long] = ACTIONS(3224), + [anon_sym_short] = ACTIONS(3224), + [sym_primitive_type] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), + [anon_sym_struct] = ACTIONS(3224), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_goto] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_sizeof] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(3226), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_identifier] = ACTIONS(3224), [sym_comment] = ACTIONS(39), }, [1068] = { - [anon_sym_LPAREN] = ACTIONS(3312), + [sym__expression] = STATE(921), + [sym_conditional_expression] = STATE(921), + [sym_assignment_expression] = STATE(921), + [sym_pointer_expression] = STATE(921), + [sym_logical_expression] = STATE(921), + [sym_bitwise_expression] = STATE(921), + [sym_equality_expression] = STATE(921), + [sym_relational_expression] = STATE(921), + [sym_shift_expression] = STATE(921), + [sym_math_expression] = STATE(921), + [sym_cast_expression] = STATE(921), + [sym_sizeof_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_call_expression] = STATE(921), + [sym_field_expression] = STATE(921), + [sym_compound_literal_expression] = STATE(921), + [sym_parenthesized_expression] = STATE(921), + [sym_initializer_list] = STATE(922), + [sym_char_literal] = STATE(921), + [sym_concatenated_string] = STATE(921), + [sym_string_literal] = STATE(421), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_EQ] = ACTIONS(2956), + [anon_sym_COLON] = ACTIONS(2952), + [anon_sym_QMARK] = ACTIONS(2952), + [anon_sym_STAR_EQ] = ACTIONS(2952), + [anon_sym_SLASH_EQ] = ACTIONS(2952), + [anon_sym_PERCENT_EQ] = ACTIONS(2952), + [anon_sym_PLUS_EQ] = ACTIONS(2952), + [anon_sym_DASH_EQ] = ACTIONS(2952), + [anon_sym_LT_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_GT_EQ] = ACTIONS(2952), + [anon_sym_AMP_EQ] = ACTIONS(2952), + [anon_sym_CARET_EQ] = ACTIONS(2952), + [anon_sym_PIPE_EQ] = ACTIONS(2952), + [anon_sym_AMP] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(2952), + [anon_sym_AMP_AMP] = ACTIONS(2952), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_PIPE] = ACTIONS(2956), + [anon_sym_CARET] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_EQ_EQ] = ACTIONS(2952), + [anon_sym_BANG_EQ] = ACTIONS(2952), + [anon_sym_LT] = ACTIONS(2956), + [anon_sym_GT] = ACTIONS(2956), + [anon_sym_LT_EQ] = ACTIONS(2952), + [anon_sym_GT_EQ] = ACTIONS(2952), + [anon_sym_LT_LT] = ACTIONS(2956), + [anon_sym_GT_GT] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_PERCENT] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(2952), + [anon_sym_DASH_GT] = ACTIONS(2952), + [sym_number_literal] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2394), + [sym_false] = ACTIONS(2394), + [sym_null] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2394), [sym_comment] = ACTIONS(39), }, [1069] = { - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_COLON] = ACTIONS(3314), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), + [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(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_identifier] = ACTIONS(3234), [sym_comment] = ACTIONS(39), }, [1070] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3316), - [sym_preproc_directive] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_typedef] = ACTIONS(3316), - [anon_sym_extern] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_STAR] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_auto] = ACTIONS(3316), - [anon_sym_register] = ACTIONS(3316), - [anon_sym_inline] = ACTIONS(3316), - [anon_sym_const] = ACTIONS(3316), - [anon_sym_restrict] = ACTIONS(3316), - [anon_sym_volatile] = ACTIONS(3316), - [anon_sym__Atomic] = ACTIONS(3316), - [anon_sym_unsigned] = ACTIONS(3316), - [anon_sym_long] = ACTIONS(3316), - [anon_sym_short] = ACTIONS(3316), - [sym_primitive_type] = ACTIONS(3316), - [anon_sym_enum] = ACTIONS(3316), - [anon_sym_struct] = ACTIONS(3316), - [anon_sym_union] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3320), - [anon_sym_switch] = ACTIONS(3316), - [anon_sym_case] = ACTIONS(3316), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_break] = ACTIONS(3316), - [anon_sym_continue] = ACTIONS(3316), - [anon_sym_goto] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_sizeof] = ACTIONS(3316), - [sym_number_literal] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_null] = ACTIONS(3316), - [sym_identifier] = ACTIONS(3316), + [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(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(2484), [sym_comment] = ACTIONS(39), }, [1071] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(2598), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2598), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(690), + [sym_labeled_statement] = STATE(690), + [sym_expression_statement] = STATE(690), + [sym_if_statement] = STATE(690), + [sym_switch_statement] = STATE(690), + [sym_case_statement] = STATE(690), + [sym_while_statement] = STATE(690), + [sym_do_statement] = STATE(690), + [sym_for_statement] = STATE(690), + [sym_return_statement] = STATE(690), + [sym_break_statement] = STATE(690), + [sym_continue_statement] = STATE(690), + [sym_goto_statement] = STATE(690), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(2484), [sym_comment] = ACTIONS(39), }, [1072] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(3322), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(3236), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1073] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_declaration] = STATE(709), + [sym_type_definition] = STATE(709), + [sym__declaration_specifiers] = STATE(710), + [sym_compound_statement] = STATE(709), + [sym_storage_class_specifier] = STATE(96), + [sym_type_qualifier] = STATE(96), + [sym__type_specifier] = STATE(95), + [sym_sized_type_specifier] = STATE(95), + [sym_enum_specifier] = STATE(95), + [sym_struct_specifier] = STATE(95), + [sym_union_specifier] = STATE(95), + [sym_labeled_statement] = STATE(709), + [sym_expression_statement] = STATE(709), + [sym_if_statement] = STATE(709), + [sym_switch_statement] = STATE(709), + [sym_case_statement] = STATE(709), + [sym_while_statement] = STATE(709), + [sym_do_statement] = STATE(709), + [sym_for_statement] = STATE(709), + [sym_return_statement] = STATE(709), + [sym_break_statement] = STATE(709), + [sym_continue_statement] = STATE(709), + [sym_goto_statement] = STATE(709), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [sym_macro_type_specifier] = STATE(95), + [aux_sym__declaration_specifiers_repeat1] = STATE(96), + [aux_sym_sized_type_specifier_repeat1] = STATE(97), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_typedef] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_long] = ACTIONS(177), + [anon_sym_short] = ACTIONS(177), + [sym_primitive_type] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(3238), [sym_comment] = ACTIONS(39), }, [1074] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2606), - [anon_sym_STAR_EQ] = ACTIONS(2606), - [anon_sym_SLASH_EQ] = ACTIONS(2606), - [anon_sym_PERCENT_EQ] = ACTIONS(2606), - [anon_sym_PLUS_EQ] = ACTIONS(2606), - [anon_sym_DASH_EQ] = ACTIONS(2606), - [anon_sym_LT_LT_EQ] = ACTIONS(2606), - [anon_sym_GT_GT_EQ] = ACTIONS(2606), - [anon_sym_AMP_EQ] = ACTIONS(2606), - [anon_sym_CARET_EQ] = ACTIONS(2606), - [anon_sym_PIPE_EQ] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(711), + [sym_labeled_statement] = STATE(711), + [sym_expression_statement] = STATE(711), + [sym_if_statement] = STATE(711), + [sym_switch_statement] = STATE(711), + [sym_case_statement] = STATE(711), + [sym_while_statement] = STATE(711), + [sym_do_statement] = STATE(711), + [sym_for_statement] = STATE(711), + [sym_return_statement] = STATE(711), + [sym_break_statement] = STATE(711), + [sym_continue_statement] = STATE(711), + [sym_goto_statement] = STATE(711), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(2484), [sym_comment] = ACTIONS(39), }, [1075] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_QMARK] = ACTIONS(2606), - [anon_sym_STAR_EQ] = ACTIONS(2606), - [anon_sym_SLASH_EQ] = ACTIONS(2606), - [anon_sym_PERCENT_EQ] = ACTIONS(2606), - [anon_sym_PLUS_EQ] = ACTIONS(2606), - [anon_sym_DASH_EQ] = ACTIONS(2606), - [anon_sym_LT_LT_EQ] = ACTIONS(2606), - [anon_sym_GT_GT_EQ] = ACTIONS(2606), - [anon_sym_AMP_EQ] = ACTIONS(2606), - [anon_sym_CARET_EQ] = ACTIONS(2606), - [anon_sym_PIPE_EQ] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2606), - [anon_sym_AMP_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_declaration] = STATE(1169), + [sym__declaration_specifiers] = STATE(710), + [sym_storage_class_specifier] = STATE(96), + [sym_type_qualifier] = STATE(96), + [sym__type_specifier] = STATE(95), + [sym_sized_type_specifier] = STATE(95), + [sym_enum_specifier] = STATE(95), + [sym_struct_specifier] = STATE(95), + [sym_union_specifier] = STATE(95), + [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(376), + [sym_macro_type_specifier] = STATE(95), + [aux_sym__declaration_specifiers_repeat1] = STATE(96), + [aux_sym_sized_type_specifier_repeat1] = STATE(97), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_long] = ACTIONS(177), + [anon_sym_short] = ACTIONS(177), + [sym_primitive_type] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_sizeof] = ACTIONS(859), + [sym_number_literal] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3244), + [sym_false] = ACTIONS(3244), + [sym_null] = ACTIONS(3244), + [sym_identifier] = ACTIONS(1670), [sym_comment] = ACTIONS(39), }, [1076] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(728), + [sym_labeled_statement] = STATE(728), + [sym_expression_statement] = STATE(728), + [sym_if_statement] = STATE(728), + [sym_switch_statement] = STATE(728), + [sym_case_statement] = STATE(728), + [sym_while_statement] = STATE(728), + [sym_do_statement] = STATE(728), + [sym_for_statement] = STATE(728), + [sym_return_statement] = STATE(728), + [sym_break_statement] = STATE(728), + [sym_continue_statement] = STATE(728), + [sym_goto_statement] = STATE(728), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(2484), [sym_comment] = ACTIONS(39), }, [1077] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2602), - [anon_sym_STAR_EQ] = ACTIONS(2602), - [anon_sym_SLASH_EQ] = ACTIONS(2602), - [anon_sym_PERCENT_EQ] = ACTIONS(2602), - [anon_sym_PLUS_EQ] = ACTIONS(2602), - [anon_sym_DASH_EQ] = ACTIONS(2602), - [anon_sym_LT_LT_EQ] = ACTIONS(2602), - [anon_sym_GT_GT_EQ] = ACTIONS(2602), - [anon_sym_AMP_EQ] = ACTIONS(2602), - [anon_sym_CARET_EQ] = ACTIONS(2602), - [anon_sym_PIPE_EQ] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2602), - [anon_sym_AMP_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_CARET] = ACTIONS(2604), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(1067), + [sym_labeled_statement] = STATE(1067), + [sym_expression_statement] = STATE(1067), + [sym_if_statement] = STATE(1067), + [sym_switch_statement] = STATE(1067), + [sym_case_statement] = STATE(1067), + [sym_while_statement] = STATE(1067), + [sym_do_statement] = STATE(1067), + [sym_for_statement] = STATE(1067), + [sym_return_statement] = STATE(1067), + [sym_break_statement] = STATE(1067), + [sym_continue_statement] = STATE(1067), + [sym_goto_statement] = STATE(1067), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1030), [sym_comment] = ACTIONS(39), }, [1078] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2612), - [anon_sym_QMARK] = ACTIONS(2610), - [anon_sym_STAR_EQ] = ACTIONS(2610), - [anon_sym_SLASH_EQ] = ACTIONS(2610), - [anon_sym_PERCENT_EQ] = ACTIONS(2610), - [anon_sym_PLUS_EQ] = ACTIONS(2610), - [anon_sym_DASH_EQ] = ACTIONS(2610), - [anon_sym_LT_LT_EQ] = ACTIONS(2610), - [anon_sym_GT_GT_EQ] = ACTIONS(2610), - [anon_sym_AMP_EQ] = ACTIONS(2610), - [anon_sym_CARET_EQ] = ACTIONS(2610), - [anon_sym_PIPE_EQ] = ACTIONS(2610), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_PIPE_PIPE] = ACTIONS(2610), - [anon_sym_AMP_AMP] = ACTIONS(2610), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_CARET] = ACTIONS(2612), - [anon_sym_EQ_EQ] = ACTIONS(2610), - [anon_sym_BANG_EQ] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym__expression] = STATE(406), + [sym_comma_expression] = STATE(407), + [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(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(986), + [sym_false] = ACTIONS(986), + [sym_null] = ACTIONS(986), + [sym_identifier] = ACTIONS(986), [sym_comment] = ACTIONS(39), }, [1079] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2616), - [anon_sym_QMARK] = ACTIONS(2614), - [anon_sym_STAR_EQ] = ACTIONS(2614), - [anon_sym_SLASH_EQ] = ACTIONS(2614), - [anon_sym_PERCENT_EQ] = ACTIONS(2614), - [anon_sym_PLUS_EQ] = ACTIONS(2614), - [anon_sym_DASH_EQ] = ACTIONS(2614), - [anon_sym_LT_LT_EQ] = ACTIONS(2614), - [anon_sym_GT_GT_EQ] = ACTIONS(2614), - [anon_sym_AMP_EQ] = ACTIONS(2614), - [anon_sym_CARET_EQ] = ACTIONS(2614), - [anon_sym_PIPE_EQ] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_CARET] = ACTIONS(2616), - [anon_sym_EQ_EQ] = ACTIONS(2614), - [anon_sym_BANG_EQ] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_GT] = ACTIONS(2616), - [anon_sym_LT_EQ] = ACTIONS(2614), - [anon_sym_GT_EQ] = ACTIONS(2614), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [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(409), + [anon_sym_RPAREN] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_null] = ACTIONS(3250), + [sym_identifier] = ACTIONS(3250), [sym_comment] = ACTIONS(39), }, [1080] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2618), - [anon_sym_STAR_EQ] = ACTIONS(2618), - [anon_sym_SLASH_EQ] = ACTIONS(2618), - [anon_sym_PERCENT_EQ] = ACTIONS(2618), - [anon_sym_PLUS_EQ] = ACTIONS(2618), - [anon_sym_DASH_EQ] = ACTIONS(2618), - [anon_sym_LT_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_GT_EQ] = ACTIONS(2618), - [anon_sym_AMP_EQ] = ACTIONS(2618), - [anon_sym_CARET_EQ] = ACTIONS(2618), - [anon_sym_PIPE_EQ] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_EQ_EQ] = ACTIONS(2618), - [anon_sym_BANG_EQ] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_LT_LT] = ACTIONS(2620), - [anon_sym_GT_GT] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1081] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(2592), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2594), - [anon_sym_QMARK] = ACTIONS(2592), - [anon_sym_STAR_EQ] = ACTIONS(2592), - [anon_sym_SLASH_EQ] = ACTIONS(2592), - [anon_sym_PERCENT_EQ] = ACTIONS(2592), - [anon_sym_PLUS_EQ] = ACTIONS(2592), - [anon_sym_DASH_EQ] = ACTIONS(2592), - [anon_sym_LT_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_GT_EQ] = ACTIONS(2592), - [anon_sym_AMP_EQ] = ACTIONS(2592), - [anon_sym_CARET_EQ] = ACTIONS(2592), - [anon_sym_PIPE_EQ] = ACTIONS(2592), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2592), - [anon_sym_AMP_AMP] = ACTIONS(2592), - [anon_sym_PIPE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_EQ_EQ] = ACTIONS(2592), - [anon_sym_BANG_EQ] = ACTIONS(2592), - [anon_sym_LT] = ACTIONS(2594), - [anon_sym_GT] = ACTIONS(2594), - [anon_sym_LT_EQ] = ACTIONS(2592), - [anon_sym_GT_EQ] = ACTIONS(2592), - [anon_sym_LT_LT] = ACTIONS(2594), - [anon_sym_GT_GT] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [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(376), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN2] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_sizeof] = ACTIONS(859), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [sym_null] = ACTIONS(3256), + [sym_identifier] = ACTIONS(3256), [sym_comment] = ACTIONS(39), }, [1082] = { - [sym_string_literal] = STATE(1082), - [aux_sym_concatenated_string_repeat1] = STATE(1082), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_RPAREN] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_EQ] = ACTIONS(2628), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_STAR_EQ] = ACTIONS(2626), - [anon_sym_SLASH_EQ] = ACTIONS(2626), - [anon_sym_PERCENT_EQ] = ACTIONS(2626), - [anon_sym_PLUS_EQ] = ACTIONS(2626), - [anon_sym_DASH_EQ] = ACTIONS(2626), - [anon_sym_LT_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_GT_EQ] = ACTIONS(2626), - [anon_sym_AMP_EQ] = ACTIONS(2626), - [anon_sym_CARET_EQ] = ACTIONS(2626), - [anon_sym_PIPE_EQ] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2628), - [anon_sym_CARET] = ACTIONS(2628), - [anon_sym_EQ_EQ] = ACTIONS(2626), - [anon_sym_BANG_EQ] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_LT_EQ] = ACTIONS(2626), - [anon_sym_GT_EQ] = ACTIONS(2626), - [anon_sym_LT_LT] = ACTIONS(2628), - [anon_sym_GT_GT] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_SLASH] = ACTIONS(2628), - [anon_sym_PERCENT] = ACTIONS(2628), - [anon_sym_DASH_DASH] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2626), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_DQUOTE] = ACTIONS(2630), + [sym_compound_statement] = STATE(1175), + [sym_labeled_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_if_statement] = STATE(1175), + [sym_switch_statement] = STATE(1175), + [sym_case_statement] = STATE(1175), + [sym_while_statement] = STATE(1175), + [sym_do_statement] = STATE(1175), + [sym_for_statement] = STATE(1175), + [sym_return_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_goto_statement] = STATE(1175), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1612), [sym_comment] = ACTIONS(39), }, [1083] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3324), - [sym_preproc_directive] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3326), - [anon_sym_typedef] = ACTIONS(3324), - [anon_sym_extern] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_STAR] = ACTIONS(3326), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_auto] = ACTIONS(3324), - [anon_sym_register] = ACTIONS(3324), - [anon_sym_inline] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_restrict] = ACTIONS(3324), - [anon_sym_volatile] = ACTIONS(3324), - [anon_sym__Atomic] = ACTIONS(3324), - [anon_sym_unsigned] = ACTIONS(3324), - [anon_sym_long] = ACTIONS(3324), - [anon_sym_short] = ACTIONS(3324), - [sym_primitive_type] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), - [anon_sym_struct] = ACTIONS(3324), - [anon_sym_union] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_else] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_case] = ACTIONS(3324), - [anon_sym_default] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_goto] = ACTIONS(3324), - [anon_sym_AMP] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3326), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_sizeof] = ACTIONS(3324), - [sym_number_literal] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_identifier] = ACTIONS(3324), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1177), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1084] = { - [sym__expression] = STATE(866), - [sym_conditional_expression] = STATE(866), - [sym_assignment_expression] = STATE(866), - [sym_pointer_expression] = STATE(866), - [sym_logical_expression] = STATE(866), - [sym_bitwise_expression] = STATE(866), - [sym_equality_expression] = STATE(866), - [sym_relational_expression] = STATE(866), - [sym_shift_expression] = STATE(866), - [sym_math_expression] = STATE(866), - [sym_cast_expression] = STATE(866), - [sym_sizeof_expression] = STATE(866), - [sym_subscript_expression] = STATE(866), - [sym_call_expression] = STATE(866), - [sym_field_expression] = STATE(866), - [sym_compound_literal_expression] = STATE(866), - [sym_parenthesized_expression] = STATE(866), - [sym_initializer_list] = STATE(867), - [sym_char_literal] = STATE(866), - [sym_concatenated_string] = STATE(866), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_STAR_EQ] = ACTIONS(3044), - [anon_sym_SLASH_EQ] = ACTIONS(3044), - [anon_sym_PERCENT_EQ] = ACTIONS(3044), - [anon_sym_PLUS_EQ] = ACTIONS(3044), - [anon_sym_DASH_EQ] = ACTIONS(3044), - [anon_sym_LT_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_GT_EQ] = ACTIONS(3044), - [anon_sym_AMP_EQ] = ACTIONS(3044), - [anon_sym_CARET_EQ] = ACTIONS(3044), - [anon_sym_PIPE_EQ] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3328), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_CARET] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_EQ_EQ] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3048), - [anon_sym_GT] = ACTIONS(3048), - [anon_sym_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_EQ] = ACTIONS(3044), - [anon_sym_LT_LT] = ACTIONS(3048), - [anon_sym_GT_GT] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_SLASH] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2332), + [sym__expression] = STATE(1178), + [sym_conditional_expression] = STATE(1178), + [sym_assignment_expression] = STATE(1178), + [sym_pointer_expression] = STATE(1178), + [sym_logical_expression] = STATE(1178), + [sym_bitwise_expression] = STATE(1178), + [sym_equality_expression] = STATE(1178), + [sym_relational_expression] = STATE(1178), + [sym_shift_expression] = STATE(1178), + [sym_math_expression] = STATE(1178), + [sym_cast_expression] = STATE(1178), + [sym_sizeof_expression] = STATE(1178), + [sym_subscript_expression] = STATE(1178), + [sym_call_expression] = STATE(1178), + [sym_field_expression] = STATE(1178), + [sym_compound_literal_expression] = STATE(1178), + [sym_parenthesized_expression] = STATE(1178), + [sym_char_literal] = STATE(1178), + [sym_concatenated_string] = STATE(1178), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_null] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3262), [sym_comment] = ACTIONS(39), }, [1085] = { - [sym__expression] = STATE(1169), - [sym_conditional_expression] = STATE(1169), - [sym_assignment_expression] = STATE(1169), - [sym_pointer_expression] = STATE(1169), - [sym_logical_expression] = STATE(1169), - [sym_bitwise_expression] = STATE(1169), - [sym_equality_expression] = STATE(1169), - [sym_relational_expression] = STATE(1169), - [sym_shift_expression] = STATE(1169), - [sym_math_expression] = STATE(1169), - [sym_cast_expression] = STATE(1169), - [sym_sizeof_expression] = STATE(1169), - [sym_subscript_expression] = STATE(1169), - [sym_call_expression] = STATE(1169), - [sym_field_expression] = STATE(1169), - [sym_compound_literal_expression] = STATE(1169), - [sym_parenthesized_expression] = STATE(1169), - [sym_char_literal] = STATE(1169), - [sym_concatenated_string] = STATE(1169), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_identifier] = ACTIONS(3334), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1086] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3336), - [sym_preproc_directive] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_typedef] = ACTIONS(3336), - [anon_sym_extern] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_STAR] = ACTIONS(3338), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_auto] = ACTIONS(3336), - [anon_sym_register] = ACTIONS(3336), - [anon_sym_inline] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_restrict] = ACTIONS(3336), - [anon_sym_volatile] = ACTIONS(3336), - [anon_sym__Atomic] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [sym_primitive_type] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_goto] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_sizeof] = ACTIONS(3336), - [sym_number_literal] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_identifier] = ACTIONS(3336), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1087] = { - [sym_compound_statement] = STATE(1177), - [sym_labeled_statement] = STATE(1177), - [sym_expression_statement] = STATE(1177), - [sym_if_statement] = STATE(1177), - [sym_switch_statement] = STATE(1177), - [sym_case_statement] = STATE(1177), - [sym_while_statement] = STATE(1177), - [sym_do_statement] = STATE(1177), - [sym_for_statement] = STATE(1177), - [sym_return_statement] = STATE(1177), - [sym_break_statement] = STATE(1177), - [sym_continue_statement] = STATE(1177), - [sym_goto_statement] = STATE(1177), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(3352), + [anon_sym_COMMA] = ACTIONS(3268), + [anon_sym_RPAREN] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_LPAREN2] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_RBRACK] = ACTIONS(3268), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_QMARK] = ACTIONS(3268), + [anon_sym_STAR_EQ] = ACTIONS(3268), + [anon_sym_SLASH_EQ] = ACTIONS(3268), + [anon_sym_PERCENT_EQ] = ACTIONS(3268), + [anon_sym_PLUS_EQ] = ACTIONS(3268), + [anon_sym_DASH_EQ] = ACTIONS(3268), + [anon_sym_LT_LT_EQ] = ACTIONS(3268), + [anon_sym_GT_GT_EQ] = ACTIONS(3268), + [anon_sym_AMP_EQ] = ACTIONS(3268), + [anon_sym_CARET_EQ] = ACTIONS(3268), + [anon_sym_PIPE_EQ] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_PIPE_PIPE] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_CARET] = ACTIONS(3270), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_GT_EQ] = ACTIONS(3268), + [anon_sym_LT_LT] = ACTIONS(3270), + [anon_sym_GT_GT] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DOT] = ACTIONS(3268), + [anon_sym_DASH_GT] = ACTIONS(3268), [sym_comment] = ACTIONS(39), }, [1088] = { - [sym_compound_statement] = STATE(1083), - [sym_labeled_statement] = STATE(1083), - [sym_expression_statement] = STATE(1083), - [sym_if_statement] = STATE(1083), - [sym_switch_statement] = STATE(1083), - [sym_case_statement] = STATE(1083), - [sym_while_statement] = STATE(1083), - [sym_do_statement] = STATE(1083), - [sym_for_statement] = STATE(1083), - [sym_return_statement] = STATE(1083), - [sym_break_statement] = STATE(1083), - [sym_continue_statement] = STATE(1083), - [sym_goto_statement] = STATE(1083), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1050), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(3272), + [anon_sym_RPAREN] = ACTIONS(3266), [sym_comment] = ACTIONS(39), }, [1089] = { - [sym_compound_statement] = STATE(1086), - [sym_labeled_statement] = STATE(1086), - [sym_expression_statement] = STATE(1086), - [sym_if_statement] = STATE(1086), - [sym_switch_statement] = STATE(1086), - [sym_case_statement] = STATE(1086), - [sym_while_statement] = STATE(1086), - [sym_do_statement] = STATE(1086), - [sym_for_statement] = STATE(1086), - [sym_return_statement] = STATE(1086), - [sym_break_statement] = STATE(1086), - [sym_continue_statement] = STATE(1086), - [sym_goto_statement] = STATE(1086), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1050), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3275), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1102), + [anon_sym_QMARK] = ACTIONS(1104), + [anon_sym_STAR_EQ] = ACTIONS(1106), + [anon_sym_SLASH_EQ] = ACTIONS(1106), + [anon_sym_PERCENT_EQ] = ACTIONS(1106), + [anon_sym_PLUS_EQ] = ACTIONS(1106), + [anon_sym_DASH_EQ] = ACTIONS(1106), + [anon_sym_LT_LT_EQ] = ACTIONS(1106), + [anon_sym_GT_GT_EQ] = ACTIONS(1106), + [anon_sym_AMP_EQ] = ACTIONS(1106), + [anon_sym_CARET_EQ] = ACTIONS(1106), + [anon_sym_PIPE_EQ] = ACTIONS(1106), + [anon_sym_AMP] = ACTIONS(1108), + [anon_sym_PIPE_PIPE] = ACTIONS(1110), + [anon_sym_AMP_AMP] = ACTIONS(1112), + [anon_sym_PIPE] = ACTIONS(1114), + [anon_sym_CARET] = ACTIONS(1116), + [anon_sym_EQ_EQ] = ACTIONS(1118), + [anon_sym_BANG_EQ] = ACTIONS(1118), + [anon_sym_LT] = ACTIONS(1120), + [anon_sym_GT] = ACTIONS(1120), + [anon_sym_LT_EQ] = ACTIONS(1122), + [anon_sym_GT_EQ] = ACTIONS(1122), + [anon_sym_LT_LT] = ACTIONS(1124), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_PLUS] = ACTIONS(1126), + [anon_sym_DASH] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1098), + [anon_sym_PERCENT] = ACTIONS(1098), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1090] = { - [sym__expression] = STATE(1179), - [sym_conditional_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1179), - [sym_pointer_expression] = STATE(1179), - [sym_logical_expression] = STATE(1179), - [sym_bitwise_expression] = STATE(1179), - [sym_equality_expression] = STATE(1179), - [sym_relational_expression] = STATE(1179), - [sym_shift_expression] = STATE(1179), - [sym_math_expression] = STATE(1179), - [sym_cast_expression] = STATE(1179), - [sym_sizeof_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_call_expression] = STATE(1179), - [sym_field_expression] = STATE(1179), - [sym_compound_literal_expression] = STATE(1179), - [sym_parenthesized_expression] = STATE(1179), - [sym_char_literal] = STATE(1179), - [sym_concatenated_string] = STATE(1179), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3354), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [sym_null] = ACTIONS(3358), - [sym_identifier] = ACTIONS(3358), + [sym_type_qualifier] = STATE(1090), + [aux_sym_type_definition_repeat1] = STATE(1090), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_LPAREN2] = ACTIONS(950), + [anon_sym_STAR] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_const] = ACTIONS(436), + [anon_sym_restrict] = ACTIONS(436), + [anon_sym_volatile] = ACTIONS(436), + [anon_sym__Atomic] = ACTIONS(436), + [sym_identifier] = ACTIONS(439), [sym_comment] = ACTIONS(39), }, [1091] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_RBRACK] = ACTIONS(3275), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_QMARK] = ACTIONS(1170), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1174), + [anon_sym_PIPE_PIPE] = ACTIONS(1176), + [anon_sym_AMP_AMP] = ACTIONS(1178), + [anon_sym_PIPE] = ACTIONS(1180), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_EQ_EQ] = ACTIONS(1184), + [anon_sym_BANG_EQ] = ACTIONS(1184), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_GT] = ACTIONS(1186), + [anon_sym_LT_EQ] = ACTIONS(1188), + [anon_sym_GT_EQ] = ACTIONS(1188), + [anon_sym_LT_LT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1192), + [anon_sym_SLASH] = ACTIONS(1166), + [anon_sym_PERCENT] = ACTIONS(1166), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1092] = { - [sym__expression] = STATE(1181), - [sym_conditional_expression] = STATE(1181), - [sym_assignment_expression] = STATE(1181), - [sym_pointer_expression] = STATE(1181), - [sym_logical_expression] = STATE(1181), - [sym_bitwise_expression] = STATE(1181), - [sym_equality_expression] = STATE(1181), - [sym_relational_expression] = STATE(1181), - [sym_shift_expression] = STATE(1181), - [sym_math_expression] = STATE(1181), - [sym_cast_expression] = STATE(1181), - [sym_sizeof_expression] = STATE(1181), - [sym_subscript_expression] = STATE(1181), - [sym_call_expression] = STATE(1181), - [sym_field_expression] = STATE(1181), - [sym_compound_literal_expression] = STATE(1181), - [sym_parenthesized_expression] = STATE(1181), - [sym_char_literal] = STATE(1181), - [sym_concatenated_string] = STATE(1181), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3364), - [sym_false] = ACTIONS(3364), - [sym_null] = ACTIONS(3364), - [sym_identifier] = ACTIONS(3364), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RPAREN] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_LPAREN2] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_RBRACK] = ACTIONS(3277), + [anon_sym_EQ] = ACTIONS(3279), + [anon_sym_COLON] = ACTIONS(3277), + [anon_sym_QMARK] = ACTIONS(3277), + [anon_sym_STAR_EQ] = ACTIONS(3277), + [anon_sym_SLASH_EQ] = ACTIONS(3277), + [anon_sym_PERCENT_EQ] = ACTIONS(3277), + [anon_sym_PLUS_EQ] = ACTIONS(3277), + [anon_sym_DASH_EQ] = ACTIONS(3277), + [anon_sym_LT_LT_EQ] = ACTIONS(3277), + [anon_sym_GT_GT_EQ] = ACTIONS(3277), + [anon_sym_AMP_EQ] = ACTIONS(3277), + [anon_sym_CARET_EQ] = ACTIONS(3277), + [anon_sym_PIPE_EQ] = ACTIONS(3277), + [anon_sym_AMP] = ACTIONS(3279), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [anon_sym_AMP_AMP] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3279), + [anon_sym_CARET] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3277), + [anon_sym_BANG_EQ] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3279), + [anon_sym_LT_EQ] = ACTIONS(3277), + [anon_sym_GT_EQ] = ACTIONS(3277), + [anon_sym_LT_LT] = ACTIONS(3279), + [anon_sym_GT_GT] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_PERCENT] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DOT] = ACTIONS(3277), + [anon_sym_DASH_GT] = ACTIONS(3277), [sym_comment] = ACTIONS(39), }, [1093] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3366), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym__expression] = STATE(977), + [sym_conditional_expression] = STATE(977), + [sym_assignment_expression] = STATE(977), + [sym_pointer_expression] = STATE(977), + [sym_logical_expression] = STATE(977), + [sym_bitwise_expression] = STATE(977), + [sym_equality_expression] = STATE(977), + [sym_relational_expression] = STATE(977), + [sym_shift_expression] = STATE(977), + [sym_math_expression] = STATE(977), + [sym_cast_expression] = STATE(977), + [sym_sizeof_expression] = STATE(977), + [sym_subscript_expression] = STATE(977), + [sym_call_expression] = STATE(977), + [sym_field_expression] = STATE(977), + [sym_compound_literal_expression] = STATE(977), + [sym_parenthesized_expression] = STATE(977), + [sym_initializer_list] = STATE(978), + [sym_initializer_pair] = STATE(978), + [sym_subscript_designator] = STATE(506), + [sym_field_designator] = STATE(506), + [sym_char_literal] = STATE(977), + [sym_concatenated_string] = STATE(977), + [sym_string_literal] = STATE(346), + [aux_sym_initializer_pair_repeat1] = STATE(506), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LPAREN2] = ACTIONS(807), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_BANG] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_sizeof] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(1204), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_null] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2607), [sym_comment] = ACTIONS(39), }, [1094] = { - [sym_compound_statement] = STATE(1183), - [sym_labeled_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_switch_statement] = STATE(1183), - [sym_case_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_do_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_goto_statement] = STATE(1183), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1741), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(1355), + [anon_sym_STAR_EQ] = ACTIONS(1357), + [anon_sym_SLASH_EQ] = ACTIONS(1357), + [anon_sym_PERCENT_EQ] = ACTIONS(1357), + [anon_sym_PLUS_EQ] = ACTIONS(1357), + [anon_sym_DASH_EQ] = ACTIONS(1357), + [anon_sym_LT_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_GT_EQ] = ACTIONS(1357), + [anon_sym_AMP_EQ] = ACTIONS(1357), + [anon_sym_CARET_EQ] = ACTIONS(1357), + [anon_sym_PIPE_EQ] = ACTIONS(1357), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1365), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_LT] = ACTIONS(1375), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1095] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1185), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3368), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3275), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1096] = { - [sym__expression] = STATE(1186), - [sym_conditional_expression] = STATE(1186), - [sym_assignment_expression] = STATE(1186), - [sym_pointer_expression] = STATE(1186), - [sym_logical_expression] = STATE(1186), - [sym_bitwise_expression] = STATE(1186), - [sym_equality_expression] = STATE(1186), - [sym_relational_expression] = STATE(1186), - [sym_shift_expression] = STATE(1186), - [sym_math_expression] = STATE(1186), - [sym_cast_expression] = STATE(1186), - [sym_sizeof_expression] = STATE(1186), - [sym_subscript_expression] = STATE(1186), - [sym_call_expression] = STATE(1186), - [sym_field_expression] = STATE(1186), - [sym_compound_literal_expression] = STATE(1186), - [sym_parenthesized_expression] = STATE(1186), - [sym_char_literal] = STATE(1186), - [sym_concatenated_string] = STATE(1186), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3368), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3370), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3372), - [sym_false] = ACTIONS(3372), - [sym_null] = ACTIONS(3372), - [sym_identifier] = ACTIONS(3372), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2765), + [sym_preproc_directive] = ACTIONS(2765), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_typedef] = ACTIONS(2765), + [anon_sym_extern] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_LPAREN2] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_auto] = ACTIONS(2765), + [anon_sym_register] = ACTIONS(2765), + [anon_sym_inline] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_restrict] = ACTIONS(2765), + [anon_sym_volatile] = ACTIONS(2765), + [anon_sym__Atomic] = ACTIONS(2765), + [anon_sym_unsigned] = ACTIONS(2765), + [anon_sym_long] = ACTIONS(2765), + [anon_sym_short] = ACTIONS(2765), + [sym_primitive_type] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_union] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_switch] = ACTIONS(2765), + [anon_sym_case] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_goto] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(2765), + [sym_number_literal] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_null] = ACTIONS(2765), + [sym_identifier] = ACTIONS(2765), [sym_comment] = ACTIONS(39), }, [1097] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3374), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2769), + [sym_preproc_directive] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_LPAREN2] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_auto] = ACTIONS(2769), + [anon_sym_register] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_restrict] = ACTIONS(2769), + [anon_sym_volatile] = ACTIONS(2769), + [anon_sym__Atomic] = ACTIONS(2769), + [anon_sym_unsigned] = ACTIONS(2769), + [anon_sym_long] = ACTIONS(2769), + [anon_sym_short] = ACTIONS(2769), + [sym_primitive_type] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2769), + [anon_sym_union] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_switch] = ACTIONS(2769), + [anon_sym_case] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_goto] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_sizeof] = ACTIONS(2769), + [sym_number_literal] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_null] = ACTIONS(2769), + [sym_identifier] = ACTIONS(2769), [sym_comment] = ACTIONS(39), }, [1098] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(3376), - [anon_sym_RPAREN] = ACTIONS(3376), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2773), + [sym_preproc_directive] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_auto] = ACTIONS(2773), + [anon_sym_register] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_restrict] = ACTIONS(2773), + [anon_sym_volatile] = ACTIONS(2773), + [anon_sym__Atomic] = ACTIONS(2773), + [anon_sym_unsigned] = ACTIONS(2773), + [anon_sym_long] = ACTIONS(2773), + [anon_sym_short] = ACTIONS(2773), + [sym_primitive_type] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_goto] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2773), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), + [sym_identifier] = ACTIONS(2773), [sym_comment] = ACTIONS(39), }, [1099] = { - [anon_sym_LPAREN] = ACTIONS(3378), - [anon_sym_COMMA] = ACTIONS(3378), - [anon_sym_RPAREN] = ACTIONS(3378), - [anon_sym_SEMI] = ACTIONS(3378), - [anon_sym_RBRACE] = ACTIONS(3378), - [anon_sym_STAR] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_RBRACK] = ACTIONS(3378), - [anon_sym_EQ] = ACTIONS(3380), - [anon_sym_COLON] = ACTIONS(3378), - [anon_sym_QMARK] = ACTIONS(3378), - [anon_sym_STAR_EQ] = ACTIONS(3378), - [anon_sym_SLASH_EQ] = ACTIONS(3378), - [anon_sym_PERCENT_EQ] = ACTIONS(3378), - [anon_sym_PLUS_EQ] = ACTIONS(3378), - [anon_sym_DASH_EQ] = ACTIONS(3378), - [anon_sym_LT_LT_EQ] = ACTIONS(3378), - [anon_sym_GT_GT_EQ] = ACTIONS(3378), - [anon_sym_AMP_EQ] = ACTIONS(3378), - [anon_sym_CARET_EQ] = ACTIONS(3378), - [anon_sym_PIPE_EQ] = ACTIONS(3378), - [anon_sym_AMP] = ACTIONS(3380), - [anon_sym_PIPE_PIPE] = ACTIONS(3378), - [anon_sym_AMP_AMP] = ACTIONS(3378), - [anon_sym_PIPE] = ACTIONS(3380), - [anon_sym_CARET] = ACTIONS(3380), - [anon_sym_EQ_EQ] = ACTIONS(3378), - [anon_sym_BANG_EQ] = ACTIONS(3378), - [anon_sym_LT] = ACTIONS(3380), - [anon_sym_GT] = ACTIONS(3380), - [anon_sym_LT_EQ] = ACTIONS(3378), - [anon_sym_GT_EQ] = ACTIONS(3378), - [anon_sym_LT_LT] = ACTIONS(3380), - [anon_sym_GT_GT] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_SLASH] = ACTIONS(3380), - [anon_sym_PERCENT] = ACTIONS(3380), - [anon_sym_DASH_DASH] = ACTIONS(3378), - [anon_sym_PLUS_PLUS] = ACTIONS(3378), - [anon_sym_DOT] = ACTIONS(3378), - [anon_sym_DASH_GT] = ACTIONS(3378), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3281), [sym_comment] = ACTIONS(39), }, [1100] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(3382), - [anon_sym_RPAREN] = ACTIONS(3376), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3283), [sym_comment] = ACTIONS(39), }, [1101] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(1118), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1122), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1126), - [anon_sym_SLASH_EQ] = ACTIONS(1126), - [anon_sym_PERCENT_EQ] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1126), - [anon_sym_DASH_EQ] = ACTIONS(1126), - [anon_sym_LT_LT_EQ] = ACTIONS(1126), - [anon_sym_GT_GT_EQ] = ACTIONS(1126), - [anon_sym_AMP_EQ] = ACTIONS(1126), - [anon_sym_CARET_EQ] = ACTIONS(1126), - [anon_sym_PIPE_EQ] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_LT_LT] = ACTIONS(1144), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1146), - [anon_sym_SLASH] = ACTIONS(1118), - [anon_sym_PERCENT] = ACTIONS(1118), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_auto] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_goto] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_sizeof] = ACTIONS(2852), + [sym_number_literal] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [sym_null] = ACTIONS(2852), + [sym_identifier] = ACTIONS(2852), [sym_comment] = ACTIONS(39), }, [1102] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_RBRACK] = ACTIONS(3385), - [anon_sym_EQ] = ACTIONS(1170), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_STAR_EQ] = ACTIONS(1174), - [anon_sym_SLASH_EQ] = ACTIONS(1174), - [anon_sym_PERCENT_EQ] = ACTIONS(1174), - [anon_sym_PLUS_EQ] = ACTIONS(1174), - [anon_sym_DASH_EQ] = ACTIONS(1174), - [anon_sym_LT_LT_EQ] = ACTIONS(1174), - [anon_sym_GT_GT_EQ] = ACTIONS(1174), - [anon_sym_AMP_EQ] = ACTIONS(1174), - [anon_sym_CARET_EQ] = ACTIONS(1174), - [anon_sym_PIPE_EQ] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_PIPE_PIPE] = ACTIONS(1178), - [anon_sym_AMP_AMP] = ACTIONS(1180), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1184), - [anon_sym_EQ_EQ] = ACTIONS(1186), - [anon_sym_BANG_EQ] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1190), - [anon_sym_LT_LT] = ACTIONS(1192), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_PERCENT] = ACTIONS(1168), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_auto] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_goto] = ACTIONS(2856), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2856), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [sym_null] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2856), [sym_comment] = ACTIONS(39), }, [1103] = { - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3387), - [anon_sym_RPAREN] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_RBRACK] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_STAR_EQ] = ACTIONS(3387), - [anon_sym_SLASH_EQ] = ACTIONS(3387), - [anon_sym_PERCENT_EQ] = ACTIONS(3387), - [anon_sym_PLUS_EQ] = ACTIONS(3387), - [anon_sym_DASH_EQ] = ACTIONS(3387), - [anon_sym_LT_LT_EQ] = ACTIONS(3387), - [anon_sym_GT_GT_EQ] = ACTIONS(3387), - [anon_sym_AMP_EQ] = ACTIONS(3387), - [anon_sym_CARET_EQ] = ACTIONS(3387), - [anon_sym_PIPE_EQ] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3389), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_PIPE] = ACTIONS(3389), - [anon_sym_CARET] = ACTIONS(3389), - [anon_sym_EQ_EQ] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym_GT] = ACTIONS(3389), - [anon_sym_LT_EQ] = ACTIONS(3387), - [anon_sym_GT_EQ] = ACTIONS(3387), - [anon_sym_LT_LT] = ACTIONS(3389), - [anon_sym_GT_GT] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_SLASH] = ACTIONS(3389), - [anon_sym_PERCENT] = ACTIONS(3389), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_DASH_GT] = ACTIONS(3387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_auto] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [sym_null] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2860), [sym_comment] = ACTIONS(39), }, [1104] = { - [sym__expression] = STATE(981), - [sym_conditional_expression] = STATE(981), - [sym_assignment_expression] = STATE(981), - [sym_pointer_expression] = STATE(981), - [sym_logical_expression] = STATE(981), - [sym_bitwise_expression] = STATE(981), - [sym_equality_expression] = STATE(981), - [sym_relational_expression] = STATE(981), - [sym_shift_expression] = STATE(981), - [sym_math_expression] = STATE(981), - [sym_cast_expression] = STATE(981), - [sym_sizeof_expression] = STATE(981), - [sym_subscript_expression] = STATE(981), - [sym_call_expression] = STATE(981), - [sym_field_expression] = STATE(981), - [sym_compound_literal_expression] = STATE(981), - [sym_parenthesized_expression] = STATE(981), - [sym_initializer_list] = STATE(982), - [sym_initializer_pair] = STATE(982), - [sym_subscript_designator] = STATE(506), - [sym_field_designator] = STATE(506), - [sym_char_literal] = STATE(981), - [sym_concatenated_string] = STATE(981), - [sym_string_literal] = STATE(348), - [aux_sym_initializer_pair_repeat1] = STATE(506), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(817), - [anon_sym_sizeof] = ACTIONS(819), - [anon_sym_DOT] = ACTIONS(1206), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2651), - [sym_false] = ACTIONS(2651), - [sym_null] = ACTIONS(2651), - [sym_identifier] = ACTIONS(2651), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3285), [sym_comment] = ACTIONS(39), }, [1105] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1361), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_STAR_EQ] = ACTIONS(1365), - [anon_sym_SLASH_EQ] = ACTIONS(1365), - [anon_sym_PERCENT_EQ] = ACTIONS(1365), - [anon_sym_PLUS_EQ] = ACTIONS(1365), - [anon_sym_DASH_EQ] = ACTIONS(1365), - [anon_sym_LT_LT_EQ] = ACTIONS(1365), - [anon_sym_GT_GT_EQ] = ACTIONS(1365), - [anon_sym_AMP_EQ] = ACTIONS(1365), - [anon_sym_CARET_EQ] = ACTIONS(1365), - [anon_sym_PIPE_EQ] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1371), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_EQ_EQ] = ACTIONS(1377), - [anon_sym_BANG_EQ] = ACTIONS(1377), - [anon_sym_LT] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1381), - [anon_sym_GT_EQ] = ACTIONS(1381), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3287), [sym_comment] = ACTIONS(39), }, [1106] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_auto] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_goto] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_sizeof] = ACTIONS(2868), + [sym_number_literal] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [sym_null] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2868), [sym_comment] = ACTIONS(39), }, [1107] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_RPAREN] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_auto] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_goto] = ACTIONS(2872), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2872), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [sym_null] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2872), [sym_comment] = ACTIONS(39), }, [1108] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2827), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2829), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2827), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2827), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2827), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2827), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2827), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2827), - [sym_preproc_directive] = ACTIONS(2827), - [anon_sym_SEMI] = ACTIONS(2829), - [anon_sym_typedef] = ACTIONS(2827), - [anon_sym_extern] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2829), - [anon_sym_STAR] = ACTIONS(2829), - [anon_sym_static] = ACTIONS(2827), - [anon_sym_auto] = ACTIONS(2827), - [anon_sym_register] = ACTIONS(2827), - [anon_sym_inline] = ACTIONS(2827), - [anon_sym_const] = ACTIONS(2827), - [anon_sym_restrict] = ACTIONS(2827), - [anon_sym_volatile] = ACTIONS(2827), - [anon_sym__Atomic] = ACTIONS(2827), - [anon_sym_unsigned] = ACTIONS(2827), - [anon_sym_long] = ACTIONS(2827), - [anon_sym_short] = ACTIONS(2827), - [sym_primitive_type] = ACTIONS(2827), - [anon_sym_enum] = ACTIONS(2827), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2827), - [anon_sym_if] = ACTIONS(2827), - [anon_sym_switch] = ACTIONS(2827), - [anon_sym_case] = ACTIONS(2827), - [anon_sym_default] = ACTIONS(2827), - [anon_sym_while] = ACTIONS(2827), - [anon_sym_do] = ACTIONS(2827), - [anon_sym_for] = ACTIONS(2827), - [anon_sym_return] = ACTIONS(2827), - [anon_sym_break] = ACTIONS(2827), - [anon_sym_continue] = ACTIONS(2827), - [anon_sym_goto] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2829), - [anon_sym_BANG] = ACTIONS(2829), - [anon_sym_TILDE] = ACTIONS(2829), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_DASH_DASH] = ACTIONS(2829), - [anon_sym_PLUS_PLUS] = ACTIONS(2829), - [anon_sym_sizeof] = ACTIONS(2827), - [sym_number_literal] = ACTIONS(2829), - [anon_sym_SQUOTE] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(2829), - [sym_true] = ACTIONS(2827), - [sym_false] = ACTIONS(2827), - [sym_null] = ACTIONS(2827), - [sym_identifier] = ACTIONS(2827), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2876), + [sym_preproc_directive] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_typedef] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_auto] = ACTIONS(2876), + [anon_sym_register] = ACTIONS(2876), + [anon_sym_inline] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_restrict] = ACTIONS(2876), + [anon_sym_volatile] = ACTIONS(2876), + [anon_sym__Atomic] = ACTIONS(2876), + [anon_sym_unsigned] = ACTIONS(2876), + [anon_sym_long] = ACTIONS(2876), + [anon_sym_short] = ACTIONS(2876), + [sym_primitive_type] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2876), + [anon_sym_union] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_goto] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_sizeof] = ACTIONS(2876), + [sym_number_literal] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [sym_null] = ACTIONS(2876), + [sym_identifier] = ACTIONS(2876), [sym_comment] = ACTIONS(39), }, [1109] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2833), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2831), - [sym_preproc_directive] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2833), - [anon_sym_typedef] = ACTIONS(2831), - [anon_sym_extern] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2833), - [anon_sym_STAR] = ACTIONS(2833), - [anon_sym_static] = ACTIONS(2831), - [anon_sym_auto] = ACTIONS(2831), - [anon_sym_register] = ACTIONS(2831), - [anon_sym_inline] = ACTIONS(2831), - [anon_sym_const] = ACTIONS(2831), - [anon_sym_restrict] = ACTIONS(2831), - [anon_sym_volatile] = ACTIONS(2831), - [anon_sym__Atomic] = ACTIONS(2831), - [anon_sym_unsigned] = ACTIONS(2831), - [anon_sym_long] = ACTIONS(2831), - [anon_sym_short] = ACTIONS(2831), - [sym_primitive_type] = ACTIONS(2831), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_union] = ACTIONS(2831), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_switch] = ACTIONS(2831), - [anon_sym_case] = ACTIONS(2831), - [anon_sym_default] = ACTIONS(2831), - [anon_sym_while] = ACTIONS(2831), - [anon_sym_do] = ACTIONS(2831), - [anon_sym_for] = ACTIONS(2831), - [anon_sym_return] = ACTIONS(2831), - [anon_sym_break] = ACTIONS(2831), - [anon_sym_continue] = ACTIONS(2831), - [anon_sym_goto] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2833), - [anon_sym_TILDE] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_DASH_DASH] = ACTIONS(2833), - [anon_sym_PLUS_PLUS] = ACTIONS(2833), - [anon_sym_sizeof] = ACTIONS(2831), - [sym_number_literal] = ACTIONS(2833), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [sym_null] = ACTIONS(2831), - [sym_identifier] = ACTIONS(2831), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3289), [sym_comment] = ACTIONS(39), }, [1110] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2835), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2837), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2835), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2835), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2835), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2835), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2835), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2835), - [sym_preproc_directive] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_typedef] = ACTIONS(2835), - [anon_sym_extern] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2837), - [anon_sym_static] = ACTIONS(2835), - [anon_sym_auto] = ACTIONS(2835), - [anon_sym_register] = ACTIONS(2835), - [anon_sym_inline] = ACTIONS(2835), - [anon_sym_const] = ACTIONS(2835), - [anon_sym_restrict] = ACTIONS(2835), - [anon_sym_volatile] = ACTIONS(2835), - [anon_sym__Atomic] = ACTIONS(2835), - [anon_sym_unsigned] = ACTIONS(2835), - [anon_sym_long] = ACTIONS(2835), - [anon_sym_short] = ACTIONS(2835), - [sym_primitive_type] = ACTIONS(2835), - [anon_sym_enum] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2835), - [anon_sym_if] = ACTIONS(2835), - [anon_sym_switch] = ACTIONS(2835), - [anon_sym_case] = ACTIONS(2835), - [anon_sym_default] = ACTIONS(2835), - [anon_sym_while] = ACTIONS(2835), - [anon_sym_do] = ACTIONS(2835), - [anon_sym_for] = ACTIONS(2835), - [anon_sym_return] = ACTIONS(2835), - [anon_sym_break] = ACTIONS(2835), - [anon_sym_continue] = ACTIONS(2835), - [anon_sym_goto] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_DASH_DASH] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2837), - [anon_sym_sizeof] = ACTIONS(2835), - [sym_number_literal] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_true] = ACTIONS(2835), - [sym_false] = ACTIONS(2835), - [sym_null] = ACTIONS(2835), - [sym_identifier] = ACTIONS(2835), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3291), [sym_comment] = ACTIONS(39), }, [1111] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3391), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2238), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2238), + [sym_preproc_directive] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2240), + [anon_sym_typedef] = ACTIONS(2238), + [anon_sym_extern] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_LPAREN2] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_auto] = ACTIONS(2238), + [anon_sym_register] = ACTIONS(2238), + [anon_sym_inline] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_restrict] = ACTIONS(2238), + [anon_sym_volatile] = ACTIONS(2238), + [anon_sym__Atomic] = ACTIONS(2238), + [anon_sym_unsigned] = ACTIONS(2238), + [anon_sym_long] = ACTIONS(2238), + [anon_sym_short] = ACTIONS(2238), + [sym_primitive_type] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [anon_sym_struct] = ACTIONS(2238), + [anon_sym_union] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_switch] = ACTIONS(2238), + [anon_sym_case] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_do] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_goto] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_TILDE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_DASH_DASH] = ACTIONS(2240), + [anon_sym_PLUS_PLUS] = ACTIONS(2240), + [anon_sym_sizeof] = ACTIONS(2238), + [sym_number_literal] = ACTIONS(2240), + [anon_sym_SQUOTE] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2240), + [sym_true] = ACTIONS(2238), + [sym_false] = ACTIONS(2238), + [sym_null] = ACTIONS(2238), + [sym_identifier] = ACTIONS(2238), [sym_comment] = ACTIONS(39), }, [1112] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3293), [sym_comment] = ACTIONS(39), }, [1113] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2914), - [sym_preproc_directive] = ACTIONS(2914), - [anon_sym_SEMI] = ACTIONS(2916), - [anon_sym_typedef] = ACTIONS(2914), - [anon_sym_extern] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_auto] = ACTIONS(2914), - [anon_sym_register] = ACTIONS(2914), - [anon_sym_inline] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_restrict] = ACTIONS(2914), - [anon_sym_volatile] = ACTIONS(2914), - [anon_sym__Atomic] = ACTIONS(2914), - [anon_sym_unsigned] = ACTIONS(2914), - [anon_sym_long] = ACTIONS(2914), - [anon_sym_short] = ACTIONS(2914), - [sym_primitive_type] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2914), - [anon_sym_default] = ACTIONS(2914), - [anon_sym_while] = ACTIONS(2914), - [anon_sym_do] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_goto] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_BANG] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_sizeof] = ACTIONS(2914), - [sym_number_literal] = ACTIONS(2916), - [anon_sym_SQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_null] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2914), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3295), [sym_comment] = ACTIONS(39), }, [1114] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2918), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2920), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2918), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2918), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2918), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2918), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2918), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2918), - [sym_preproc_directive] = ACTIONS(2918), - [anon_sym_SEMI] = ACTIONS(2920), - [anon_sym_typedef] = ACTIONS(2918), - [anon_sym_extern] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2920), - [anon_sym_STAR] = ACTIONS(2920), - [anon_sym_static] = ACTIONS(2918), - [anon_sym_auto] = ACTIONS(2918), - [anon_sym_register] = ACTIONS(2918), - [anon_sym_inline] = ACTIONS(2918), - [anon_sym_const] = ACTIONS(2918), - [anon_sym_restrict] = ACTIONS(2918), - [anon_sym_volatile] = ACTIONS(2918), - [anon_sym__Atomic] = ACTIONS(2918), - [anon_sym_unsigned] = ACTIONS(2918), - [anon_sym_long] = ACTIONS(2918), - [anon_sym_short] = ACTIONS(2918), - [sym_primitive_type] = ACTIONS(2918), - [anon_sym_enum] = ACTIONS(2918), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_union] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_switch] = ACTIONS(2918), - [anon_sym_case] = ACTIONS(2918), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_goto] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2920), - [anon_sym_BANG] = ACTIONS(2920), - [anon_sym_TILDE] = ACTIONS(2920), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_DASH_DASH] = ACTIONS(2920), - [anon_sym_PLUS_PLUS] = ACTIONS(2920), - [anon_sym_sizeof] = ACTIONS(2918), - [sym_number_literal] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_DQUOTE] = ACTIONS(2920), - [sym_true] = ACTIONS(2918), - [sym_false] = ACTIONS(2918), - [sym_null] = ACTIONS(2918), - [sym_identifier] = ACTIONS(2918), - [sym_comment] = ACTIONS(39), - }, - [1115] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2922), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2924), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2922), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2922), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2922), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2922), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2922), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2922), - [sym_preproc_directive] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2924), - [anon_sym_typedef] = ACTIONS(2922), - [anon_sym_extern] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2922), - [anon_sym_auto] = ACTIONS(2922), - [anon_sym_register] = ACTIONS(2922), - [anon_sym_inline] = ACTIONS(2922), - [anon_sym_const] = ACTIONS(2922), - [anon_sym_restrict] = ACTIONS(2922), - [anon_sym_volatile] = ACTIONS(2922), - [anon_sym__Atomic] = ACTIONS(2922), - [anon_sym_unsigned] = ACTIONS(2922), - [anon_sym_long] = ACTIONS(2922), - [anon_sym_short] = ACTIONS(2922), - [sym_primitive_type] = ACTIONS(2922), - [anon_sym_enum] = ACTIONS(2922), - [anon_sym_struct] = ACTIONS(2922), - [anon_sym_union] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_switch] = ACTIONS(2922), - [anon_sym_case] = ACTIONS(2922), - [anon_sym_default] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_break] = ACTIONS(2922), - [anon_sym_continue] = ACTIONS(2922), - [anon_sym_goto] = ACTIONS(2922), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_BANG] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_sizeof] = ACTIONS(2922), - [sym_number_literal] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [sym_true] = ACTIONS(2922), - [sym_false] = ACTIONS(2922), - [sym_null] = ACTIONS(2922), - [sym_identifier] = ACTIONS(2922), - [sym_comment] = ACTIONS(39), - }, - [1116] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3395), - [sym_comment] = ACTIONS(39), - }, - [1117] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3397), - [sym_comment] = ACTIONS(39), - }, - [1118] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2930), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2932), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2930), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2930), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2930), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2930), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2930), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2930), - [sym_preproc_directive] = ACTIONS(2930), - [anon_sym_SEMI] = ACTIONS(2932), - [anon_sym_typedef] = ACTIONS(2930), - [anon_sym_extern] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_STAR] = ACTIONS(2932), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_auto] = ACTIONS(2930), - [anon_sym_register] = ACTIONS(2930), - [anon_sym_inline] = ACTIONS(2930), - [anon_sym_const] = ACTIONS(2930), - [anon_sym_restrict] = ACTIONS(2930), - [anon_sym_volatile] = ACTIONS(2930), - [anon_sym__Atomic] = ACTIONS(2930), - [anon_sym_unsigned] = ACTIONS(2930), - [anon_sym_long] = ACTIONS(2930), - [anon_sym_short] = ACTIONS(2930), - [sym_primitive_type] = ACTIONS(2930), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_union] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_switch] = ACTIONS(2930), - [anon_sym_case] = ACTIONS(2930), - [anon_sym_default] = ACTIONS(2930), - [anon_sym_while] = ACTIONS(2930), - [anon_sym_do] = ACTIONS(2930), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_break] = ACTIONS(2930), - [anon_sym_continue] = ACTIONS(2930), - [anon_sym_goto] = ACTIONS(2930), - [anon_sym_AMP] = ACTIONS(2932), - [anon_sym_BANG] = ACTIONS(2932), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(2932), - [anon_sym_PLUS_PLUS] = ACTIONS(2932), - [anon_sym_sizeof] = ACTIONS(2930), - [sym_number_literal] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2932), - [sym_true] = ACTIONS(2930), - [sym_false] = ACTIONS(2930), - [sym_null] = ACTIONS(2930), - [sym_identifier] = ACTIONS(2930), - [sym_comment] = ACTIONS(39), - }, - [1119] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2934), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2934), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2934), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2934), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2934), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2934), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2934), - [sym_preproc_directive] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_typedef] = ACTIONS(2934), - [anon_sym_extern] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2936), - [anon_sym_STAR] = ACTIONS(2936), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_auto] = ACTIONS(2934), - [anon_sym_register] = ACTIONS(2934), - [anon_sym_inline] = ACTIONS(2934), - [anon_sym_const] = ACTIONS(2934), - [anon_sym_restrict] = ACTIONS(2934), - [anon_sym_volatile] = ACTIONS(2934), - [anon_sym__Atomic] = ACTIONS(2934), - [anon_sym_unsigned] = ACTIONS(2934), - [anon_sym_long] = ACTIONS(2934), - [anon_sym_short] = ACTIONS(2934), - [sym_primitive_type] = ACTIONS(2934), - [anon_sym_enum] = ACTIONS(2934), - [anon_sym_struct] = ACTIONS(2934), - [anon_sym_union] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_switch] = ACTIONS(2934), - [anon_sym_case] = ACTIONS(2934), - [anon_sym_default] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_break] = ACTIONS(2934), - [anon_sym_continue] = ACTIONS(2934), - [anon_sym_goto] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - [anon_sym_BANG] = ACTIONS(2936), - [anon_sym_TILDE] = ACTIONS(2936), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2934), - [sym_number_literal] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [sym_true] = ACTIONS(2934), - [sym_false] = ACTIONS(2934), - [sym_null] = ACTIONS(2934), - [sym_identifier] = ACTIONS(2934), - [sym_comment] = ACTIONS(39), - }, - [1120] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [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_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_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(39), - }, - [1121] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3399), - [sym_comment] = ACTIONS(39), - }, - [1122] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3401), - [sym_comment] = ACTIONS(39), - }, - [1123] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2336), - [anon_sym_LPAREN] = ACTIONS(2338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2336), - [sym_preproc_directive] = ACTIONS(2336), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_typedef] = ACTIONS(2336), - [anon_sym_extern] = ACTIONS(2336), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2336), - [anon_sym_auto] = ACTIONS(2336), - [anon_sym_register] = ACTIONS(2336), - [anon_sym_inline] = ACTIONS(2336), - [anon_sym_const] = ACTIONS(2336), - [anon_sym_restrict] = ACTIONS(2336), - [anon_sym_volatile] = ACTIONS(2336), - [anon_sym__Atomic] = ACTIONS(2336), - [anon_sym_unsigned] = ACTIONS(2336), - [anon_sym_long] = ACTIONS(2336), - [anon_sym_short] = ACTIONS(2336), - [sym_primitive_type] = ACTIONS(2336), - [anon_sym_enum] = ACTIONS(2336), - [anon_sym_struct] = ACTIONS(2336), - [anon_sym_union] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_switch] = ACTIONS(2336), - [anon_sym_case] = ACTIONS(2336), - [anon_sym_default] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_do] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_goto] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_sizeof] = ACTIONS(2336), - [sym_number_literal] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [sym_true] = ACTIONS(2336), - [sym_false] = ACTIONS(2336), - [sym_null] = ACTIONS(2336), - [sym_identifier] = ACTIONS(2336), - [sym_comment] = ACTIONS(39), - }, - [1124] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3403), - [sym_comment] = ACTIONS(39), - }, - [1125] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3405), - [sym_comment] = ACTIONS(39), - }, - [1126] = { - [sym_preproc_include] = STATE(915), - [sym_preproc_def] = STATE(915), - [sym_preproc_function_def] = STATE(915), - [sym_preproc_call] = STATE(915), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(1197), - [sym_preproc_elif_in_compound_statement] = STATE(1198), - [sym_declaration] = STATE(915), - [sym_type_definition] = STATE(915), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(915), + [sym_preproc_include] = STATE(896), + [sym_preproc_def] = STATE(896), + [sym_preproc_function_def] = STATE(896), + [sym_preproc_call] = STATE(896), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(1189), + [sym_preproc_elif_in_compound_statement] = STATE(1190), + [sym_declaration] = STATE(896), + [sym_type_definition] = STATE(896), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(896), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -43990,59 +44079,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(915), - [sym_expression_statement] = STATE(915), - [sym_if_statement] = STATE(915), - [sym_switch_statement] = STATE(915), - [sym_case_statement] = STATE(915), - [sym_while_statement] = STATE(915), - [sym_do_statement] = STATE(915), - [sym_for_statement] = STATE(915), - [sym_return_statement] = STATE(915), - [sym_break_statement] = STATE(915), - [sym_continue_statement] = STATE(915), - [sym_goto_statement] = STATE(915), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(915), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(896), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(915), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3407), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3297), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -44058,112 +44147,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [1127] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2424), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2422), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2422), - [sym_preproc_directive] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_typedef] = ACTIONS(2422), - [anon_sym_extern] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2424), - [anon_sym_static] = ACTIONS(2422), - [anon_sym_auto] = ACTIONS(2422), - [anon_sym_register] = ACTIONS(2422), - [anon_sym_inline] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [anon_sym_restrict] = ACTIONS(2422), - [anon_sym_volatile] = ACTIONS(2422), - [anon_sym__Atomic] = ACTIONS(2422), - [anon_sym_unsigned] = ACTIONS(2422), - [anon_sym_long] = ACTIONS(2422), - [anon_sym_short] = ACTIONS(2422), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2422), - [anon_sym_struct] = ACTIONS(2422), - [anon_sym_union] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_switch] = ACTIONS(2422), - [anon_sym_case] = ACTIONS(2422), - [anon_sym_default] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_do] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_goto] = ACTIONS(2422), - [anon_sym_AMP] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_TILDE] = ACTIONS(2424), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_DASH_DASH] = ACTIONS(2424), - [anon_sym_PLUS_PLUS] = ACTIONS(2424), - [anon_sym_sizeof] = ACTIONS(2422), - [sym_number_literal] = ACTIONS(2424), - [anon_sym_SQUOTE] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2424), - [sym_true] = ACTIONS(2422), - [sym_false] = ACTIONS(2422), - [sym_null] = ACTIONS(2422), - [sym_identifier] = ACTIONS(2422), + [1115] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2318), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2318), + [sym_preproc_directive] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym_typedef] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2320), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_auto] = ACTIONS(2318), + [anon_sym_register] = ACTIONS(2318), + [anon_sym_inline] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_restrict] = ACTIONS(2318), + [anon_sym_volatile] = ACTIONS(2318), + [anon_sym__Atomic] = ACTIONS(2318), + [anon_sym_unsigned] = ACTIONS(2318), + [anon_sym_long] = ACTIONS(2318), + [anon_sym_short] = ACTIONS(2318), + [sym_primitive_type] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_goto] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2320), + [anon_sym_TILDE] = ACTIONS(2320), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2320), + [anon_sym_PLUS_PLUS] = ACTIONS(2320), + [anon_sym_sizeof] = ACTIONS(2318), + [sym_number_literal] = ACTIONS(2320), + [anon_sym_SQUOTE] = ACTIONS(2320), + [anon_sym_DQUOTE] = ACTIONS(2320), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2318), [sym_comment] = ACTIONS(39), }, - [1128] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3409), + [1116] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3299), [sym_comment] = ACTIONS(39), }, - [1129] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3411), + [1117] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3301), [sym_comment] = ACTIONS(39), }, - [1130] = { - [sym_preproc_include] = STATE(915), - [sym_preproc_def] = STATE(915), - [sym_preproc_function_def] = STATE(915), - [sym_preproc_call] = STATE(915), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(1202), - [sym_preproc_elif_in_compound_statement] = STATE(1203), - [sym_declaration] = STATE(915), - [sym_type_definition] = STATE(915), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(915), + [1118] = { + [sym_preproc_include] = STATE(896), + [sym_preproc_def] = STATE(896), + [sym_preproc_function_def] = STATE(896), + [sym_preproc_call] = STATE(896), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(1194), + [sym_preproc_elif_in_compound_statement] = STATE(1195), + [sym_declaration] = STATE(896), + [sym_type_definition] = STATE(896), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(896), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -44171,59 +44260,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(915), - [sym_expression_statement] = STATE(915), - [sym_if_statement] = STATE(915), - [sym_switch_statement] = STATE(915), - [sym_case_statement] = STATE(915), - [sym_while_statement] = STATE(915), - [sym_do_statement] = STATE(915), - [sym_for_statement] = STATE(915), - [sym_return_statement] = STATE(915), - [sym_break_statement] = STATE(915), - [sym_continue_statement] = STATE(915), - [sym_goto_statement] = STATE(915), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(915), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(896), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(915), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3303), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -44239,112 +44328,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [1131] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2432), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2434), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2432), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2432), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2432), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2432), - [sym_preproc_directive] = ACTIONS(2432), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_typedef] = ACTIONS(2432), - [anon_sym_extern] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2434), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_auto] = ACTIONS(2432), - [anon_sym_register] = ACTIONS(2432), - [anon_sym_inline] = ACTIONS(2432), - [anon_sym_const] = ACTIONS(2432), - [anon_sym_restrict] = ACTIONS(2432), - [anon_sym_volatile] = ACTIONS(2432), - [anon_sym__Atomic] = ACTIONS(2432), - [anon_sym_unsigned] = ACTIONS(2432), - [anon_sym_long] = ACTIONS(2432), - [anon_sym_short] = ACTIONS(2432), - [sym_primitive_type] = ACTIONS(2432), - [anon_sym_enum] = ACTIONS(2432), - [anon_sym_struct] = ACTIONS(2432), - [anon_sym_union] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2432), - [anon_sym_switch] = ACTIONS(2432), - [anon_sym_case] = ACTIONS(2432), - [anon_sym_default] = ACTIONS(2432), - [anon_sym_while] = ACTIONS(2432), - [anon_sym_do] = ACTIONS(2432), - [anon_sym_for] = ACTIONS(2432), - [anon_sym_return] = ACTIONS(2432), - [anon_sym_break] = ACTIONS(2432), - [anon_sym_continue] = ACTIONS(2432), - [anon_sym_goto] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_PLUS] = ACTIONS(2432), - [anon_sym_DASH] = ACTIONS(2432), - [anon_sym_DASH_DASH] = ACTIONS(2434), - [anon_sym_PLUS_PLUS] = ACTIONS(2434), - [anon_sym_sizeof] = ACTIONS(2432), - [sym_number_literal] = ACTIONS(2434), - [anon_sym_SQUOTE] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [sym_true] = ACTIONS(2432), - [sym_false] = ACTIONS(2432), - [sym_null] = ACTIONS(2432), - [sym_identifier] = ACTIONS(2432), + [1119] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2328), + [sym_preproc_directive] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_typedef] = ACTIONS(2328), + [anon_sym_extern] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2330), + [anon_sym_LPAREN2] = ACTIONS(2330), + [anon_sym_STAR] = ACTIONS(2330), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_auto] = ACTIONS(2328), + [anon_sym_register] = ACTIONS(2328), + [anon_sym_inline] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_restrict] = ACTIONS(2328), + [anon_sym_volatile] = ACTIONS(2328), + [anon_sym__Atomic] = ACTIONS(2328), + [anon_sym_unsigned] = ACTIONS(2328), + [anon_sym_long] = ACTIONS(2328), + [anon_sym_short] = ACTIONS(2328), + [sym_primitive_type] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [anon_sym_struct] = ACTIONS(2328), + [anon_sym_union] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_goto] = ACTIONS(2328), + [anon_sym_AMP] = ACTIONS(2330), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2330), + [anon_sym_PLUS_PLUS] = ACTIONS(2330), + [anon_sym_sizeof] = ACTIONS(2328), + [sym_number_literal] = ACTIONS(2330), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2330), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_identifier] = ACTIONS(2328), [sym_comment] = ACTIONS(39), }, - [1132] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3415), + [1120] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3305), [sym_comment] = ACTIONS(39), }, - [1133] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3417), + [1121] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3307), [sym_comment] = ACTIONS(39), }, - [1134] = { - [sym_preproc_include] = STATE(915), - [sym_preproc_def] = STATE(915), - [sym_preproc_function_def] = STATE(915), - [sym_preproc_call] = STATE(915), - [sym_preproc_if_in_compound_statement] = STATE(672), - [sym_preproc_ifdef_in_compound_statement] = STATE(673), - [sym_preproc_else_in_compound_statement] = STATE(1207), - [sym_preproc_elif_in_compound_statement] = STATE(1208), - [sym_declaration] = STATE(915), - [sym_type_definition] = STATE(915), - [sym__declaration_specifiers] = STATE(676), - [sym_compound_statement] = STATE(915), + [1122] = { + [sym_preproc_include] = STATE(896), + [sym_preproc_def] = STATE(896), + [sym_preproc_function_def] = STATE(896), + [sym_preproc_call] = STATE(896), + [sym_preproc_if_in_compound_statement] = STATE(644), + [sym_preproc_ifdef_in_compound_statement] = STATE(645), + [sym_preproc_else_in_compound_statement] = STATE(1199), + [sym_preproc_elif_in_compound_statement] = STATE(1200), + [sym_declaration] = STATE(896), + [sym_type_definition] = STATE(896), + [sym__declaration_specifiers] = STATE(648), + [sym_compound_statement] = STATE(896), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -44352,59 +44441,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(915), - [sym_expression_statement] = STATE(915), - [sym_if_statement] = STATE(915), - [sym_switch_statement] = STATE(915), - [sym_case_statement] = STATE(915), - [sym_while_statement] = STATE(915), - [sym_do_statement] = STATE(915), - [sym_for_statement] = STATE(915), - [sym_return_statement] = STATE(915), - [sym_break_statement] = STATE(915), - [sym_continue_statement] = STATE(915), - [sym_goto_statement] = STATE(915), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym__empty_declaration] = STATE(915), + [sym_labeled_statement] = STATE(896), + [sym_expression_statement] = STATE(896), + [sym_if_statement] = STATE(896), + [sym_switch_statement] = STATE(896), + [sym_case_statement] = STATE(896), + [sym_while_statement] = STATE(896), + [sym_do_statement] = STATE(896), + [sym_for_statement] = STATE(896), + [sym_return_statement] = STATE(896), + [sym_break_statement] = STATE(896), + [sym_continue_statement] = STATE(896), + [sym_goto_statement] = STATE(896), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym__empty_declaration] = STATE(896), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(915), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(896), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(550), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1567), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3419), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1571), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1573), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1575), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1504), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3309), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), [sym_preproc_directive] = ACTIONS(149), - [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_typedef] = ACTIONS(151), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -44420,121 +44509,302 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), [sym_comment] = ACTIONS(39), }, - [1135] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3421), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [1123] = { + [sym_parenthesized_expression] = STATE(1201), + [anon_sym_LPAREN2] = ACTIONS(994), [sym_comment] = ACTIONS(39), }, - [1136] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3423), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [1124] = { + [sym_parenthesized_expression] = STATE(1202), + [anon_sym_LPAREN2] = ACTIONS(994), [sym_comment] = ACTIONS(39), }, - [1137] = { - [sym_declaration] = STATE(1211), - [sym_type_definition] = STATE(1211), - [sym__declaration_specifiers] = STATE(1140), - [sym_compound_statement] = STATE(1211), + [1125] = { + [sym__expression] = STATE(1203), + [sym_conditional_expression] = STATE(1203), + [sym_assignment_expression] = STATE(1203), + [sym_pointer_expression] = STATE(1203), + [sym_logical_expression] = STATE(1203), + [sym_bitwise_expression] = STATE(1203), + [sym_equality_expression] = STATE(1203), + [sym_relational_expression] = STATE(1203), + [sym_shift_expression] = STATE(1203), + [sym_math_expression] = STATE(1203), + [sym_cast_expression] = STATE(1203), + [sym_sizeof_expression] = STATE(1203), + [sym_subscript_expression] = STATE(1203), + [sym_call_expression] = STATE(1203), + [sym_field_expression] = STATE(1203), + [sym_compound_literal_expression] = STATE(1203), + [sym_parenthesized_expression] = STATE(1203), + [sym_char_literal] = STATE(1203), + [sym_concatenated_string] = STATE(1203), + [sym_string_literal] = STATE(421), + [anon_sym_LPAREN2] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_sizeof] = ACTIONS(1008), + [sym_number_literal] = ACTIONS(3311), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3313), + [sym_false] = ACTIONS(3313), + [sym_null] = ACTIONS(3313), + [sym_identifier] = ACTIONS(3313), + [sym_comment] = ACTIONS(39), + }, + [1126] = { + [anon_sym_COLON] = ACTIONS(3315), + [sym_comment] = ACTIONS(39), + }, + [1127] = { + [sym_parenthesized_expression] = STATE(1205), + [anon_sym_LPAREN2] = ACTIONS(994), + [sym_comment] = ACTIONS(39), + }, + [1128] = { + [anon_sym_LPAREN2] = ACTIONS(3317), + [sym_comment] = ACTIONS(39), + }, + [1129] = { + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(3319), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_comment] = ACTIONS(39), + }, + [1130] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [sym_null] = ACTIONS(2408), + [sym_identifier] = ACTIONS(2408), + [sym_comment] = ACTIONS(39), + }, + [1131] = { + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_LPAREN2] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_COLON] = ACTIONS(2723), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_comment] = ACTIONS(39), + }, + [1132] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2414), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2414), + [sym_preproc_directive] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2416), + [anon_sym_typedef] = ACTIONS(2414), + [anon_sym_extern] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2416), + [anon_sym_LPAREN2] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_auto] = ACTIONS(2414), + [anon_sym_register] = ACTIONS(2414), + [anon_sym_inline] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [anon_sym_restrict] = ACTIONS(2414), + [anon_sym_volatile] = ACTIONS(2414), + [anon_sym__Atomic] = ACTIONS(2414), + [anon_sym_unsigned] = ACTIONS(2414), + [anon_sym_long] = ACTIONS(2414), + [anon_sym_short] = ACTIONS(2414), + [sym_primitive_type] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [anon_sym_struct] = ACTIONS(2414), + [anon_sym_union] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_else] = ACTIONS(2414), + [anon_sym_switch] = ACTIONS(2414), + [anon_sym_case] = ACTIONS(2414), + [anon_sym_default] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_goto] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(2416), + [anon_sym_TILDE] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(2416), + [anon_sym_sizeof] = ACTIONS(2414), + [sym_number_literal] = ACTIONS(2416), + [anon_sym_SQUOTE] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym_true] = ACTIONS(2414), + [sym_false] = ACTIONS(2414), + [sym_null] = ACTIONS(2414), + [sym_identifier] = ACTIONS(2414), + [sym_comment] = ACTIONS(39), + }, + [1133] = { + [sym_declaration] = STATE(1209), + [sym_type_definition] = STATE(1209), + [sym__declaration_specifiers] = STATE(1136), + [sym_compound_statement] = STATE(1209), [sym_storage_class_specifier] = STATE(96), [sym_type_qualifier] = STATE(96), [sym__type_specifier] = STATE(95), @@ -44542,48 +44812,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(95), [sym_struct_specifier] = STATE(95), [sym_union_specifier] = STATE(95), - [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(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), + [sym_labeled_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_if_statement] = STATE(1209), + [sym_switch_statement] = STATE(1209), + [sym_case_statement] = STATE(1209), + [sym_while_statement] = STATE(1209), + [sym_do_statement] = STATE(1209), + [sym_for_statement] = STATE(1209), + [sym_return_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_goto_statement] = STATE(1209), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym_SEMI] = ACTIONS(2254), [anon_sym_typedef] = ACTIONS(380), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -44599,223 +44869,241 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3163), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3071), [sym_comment] = ACTIONS(39), }, - [1138] = { - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2787), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), - [sym_identifier] = ACTIONS(86), + [1134] = { + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_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_COLON] = ACTIONS(2723), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, - [1139] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2526), - [sym_preproc_directive] = ACTIONS(2526), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_typedef] = ACTIONS(2526), - [anon_sym_extern] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2528), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_auto] = ACTIONS(2526), - [anon_sym_register] = ACTIONS(2526), - [anon_sym_inline] = ACTIONS(2526), - [anon_sym_const] = ACTIONS(2526), - [anon_sym_restrict] = ACTIONS(2526), - [anon_sym_volatile] = ACTIONS(2526), - [anon_sym__Atomic] = ACTIONS(2526), - [anon_sym_unsigned] = ACTIONS(2526), - [anon_sym_long] = ACTIONS(2526), - [anon_sym_short] = ACTIONS(2526), - [sym_primitive_type] = ACTIONS(2526), - [anon_sym_enum] = ACTIONS(2526), - [anon_sym_struct] = ACTIONS(2526), - [anon_sym_union] = ACTIONS(2526), - [anon_sym_if] = ACTIONS(2526), - [anon_sym_else] = ACTIONS(2526), - [anon_sym_switch] = ACTIONS(2526), - [anon_sym_case] = ACTIONS(2526), - [anon_sym_default] = ACTIONS(2526), - [anon_sym_while] = ACTIONS(2526), - [anon_sym_do] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2526), - [anon_sym_return] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2526), - [anon_sym_continue] = ACTIONS(2526), - [anon_sym_goto] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_sizeof] = ACTIONS(2526), - [sym_number_literal] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [sym_true] = ACTIONS(2526), - [sym_false] = ACTIONS(2526), - [sym_null] = ACTIONS(2526), - [sym_identifier] = ACTIONS(2526), + [1135] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2464), + [sym_preproc_directive] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_typedef] = ACTIONS(2464), + [anon_sym_extern] = ACTIONS(2464), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_LPAREN2] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_auto] = ACTIONS(2464), + [anon_sym_register] = ACTIONS(2464), + [anon_sym_inline] = ACTIONS(2464), + [anon_sym_const] = ACTIONS(2464), + [anon_sym_restrict] = ACTIONS(2464), + [anon_sym_volatile] = ACTIONS(2464), + [anon_sym__Atomic] = ACTIONS(2464), + [anon_sym_unsigned] = ACTIONS(2464), + [anon_sym_long] = ACTIONS(2464), + [anon_sym_short] = ACTIONS(2464), + [sym_primitive_type] = ACTIONS(2464), + [anon_sym_enum] = ACTIONS(2464), + [anon_sym_struct] = ACTIONS(2464), + [anon_sym_union] = ACTIONS(2464), + [anon_sym_if] = ACTIONS(2464), + [anon_sym_else] = ACTIONS(2464), + [anon_sym_switch] = ACTIONS(2464), + [anon_sym_case] = ACTIONS(2464), + [anon_sym_default] = ACTIONS(2464), + [anon_sym_while] = ACTIONS(2464), + [anon_sym_do] = ACTIONS(2464), + [anon_sym_for] = ACTIONS(2464), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_goto] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2466), + [anon_sym_TILDE] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_sizeof] = ACTIONS(2464), + [sym_number_literal] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2466), + [sym_true] = ACTIONS(2464), + [sym_false] = ACTIONS(2464), + [sym_null] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2464), [sym_comment] = ACTIONS(39), }, - [1140] = { - [sym__declarator] = STATE(1035), - [sym_pointer_declarator] = STATE(1035), - [sym_function_declarator] = STATE(1035), - [sym_array_declarator] = STATE(1035), - [sym_init_declarator] = STATE(313), - [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_STAR] = ACTIONS(540), - [sym_identifier] = ACTIONS(2789), + [1136] = { + [sym__declarator] = STATE(1027), + [sym_pointer_declarator] = STATE(1027), + [sym_function_declarator] = STATE(1027), + [sym_array_declarator] = STATE(1027), + [sym_init_declarator] = STATE(311), + [anon_sym_LPAREN2] = ACTIONS(92), + [anon_sym_STAR] = ACTIONS(534), + [sym_identifier] = ACTIONS(2725), [sym_comment] = ACTIONS(39), }, - [1141] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [1137] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2468), + [sym_preproc_directive] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_typedef] = ACTIONS(2468), + [anon_sym_extern] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_LPAREN2] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2468), + [anon_sym_auto] = ACTIONS(2468), + [anon_sym_register] = ACTIONS(2468), + [anon_sym_inline] = ACTIONS(2468), + [anon_sym_const] = ACTIONS(2468), + [anon_sym_restrict] = ACTIONS(2468), + [anon_sym_volatile] = ACTIONS(2468), + [anon_sym__Atomic] = ACTIONS(2468), + [anon_sym_unsigned] = ACTIONS(2468), + [anon_sym_long] = ACTIONS(2468), + [anon_sym_short] = ACTIONS(2468), + [sym_primitive_type] = ACTIONS(2468), + [anon_sym_enum] = ACTIONS(2468), + [anon_sym_struct] = ACTIONS(2468), + [anon_sym_union] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_else] = ACTIONS(2468), + [anon_sym_switch] = ACTIONS(2468), + [anon_sym_case] = ACTIONS(2468), + [anon_sym_default] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_do] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_goto] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_sizeof] = ACTIONS(2468), + [sym_number_literal] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [sym_true] = ACTIONS(2468), + [sym_false] = ACTIONS(2468), + [sym_null] = ACTIONS(2468), + [sym_identifier] = ACTIONS(2468), [sym_comment] = ACTIONS(39), }, - [1142] = { - [anon_sym_LPAREN] = ACTIONS(3427), + [1138] = { + [sym_parenthesized_expression] = STATE(1211), + [anon_sym_LPAREN2] = ACTIONS(3323), [sym_comment] = ACTIONS(39), }, - [1143] = { - [sym__expression] = STATE(1215), - [sym_conditional_expression] = STATE(1215), - [sym_assignment_expression] = STATE(1215), - [sym_pointer_expression] = STATE(1215), - [sym_logical_expression] = STATE(1215), - [sym_bitwise_expression] = STATE(1215), - [sym_equality_expression] = STATE(1215), - [sym_relational_expression] = STATE(1215), - [sym_shift_expression] = STATE(1215), - [sym_math_expression] = STATE(1215), - [sym_cast_expression] = STATE(1215), - [sym_sizeof_expression] = STATE(1215), - [sym_subscript_expression] = STATE(1215), - [sym_call_expression] = STATE(1215), - [sym_field_expression] = STATE(1215), - [sym_compound_literal_expression] = STATE(1215), - [sym_parenthesized_expression] = STATE(1215), - [sym_char_literal] = STATE(1215), - [sym_concatenated_string] = STATE(1215), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3429), + [1139] = { + [sym__expression] = STATE(1213), + [sym_conditional_expression] = STATE(1213), + [sym_assignment_expression] = STATE(1213), + [sym_pointer_expression] = STATE(1213), + [sym_logical_expression] = STATE(1213), + [sym_bitwise_expression] = STATE(1213), + [sym_equality_expression] = STATE(1213), + [sym_relational_expression] = STATE(1213), + [sym_shift_expression] = STATE(1213), + [sym_math_expression] = STATE(1213), + [sym_cast_expression] = STATE(1213), + [sym_sizeof_expression] = STATE(1213), + [sym_subscript_expression] = STATE(1213), + [sym_call_expression] = STATE(1213), + [sym_field_expression] = STATE(1213), + [sym_compound_literal_expression] = STATE(1213), + [sym_parenthesized_expression] = STATE(1213), + [sym_char_literal] = STATE(1213), + [sym_concatenated_string] = STATE(1213), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -44825,686 +45113,1046 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(3327), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [sym_null] = ACTIONS(3433), - [sym_identifier] = ACTIONS(3433), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [sym_null] = ACTIONS(3329), + [sym_identifier] = ACTIONS(3329), + [sym_comment] = ACTIONS(39), + }, + [1140] = { + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3331), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [1141] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2506), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2506), + [sym_preproc_directive] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2508), + [anon_sym_typedef] = ACTIONS(2506), + [anon_sym_extern] = ACTIONS(2506), + [anon_sym_LBRACE] = ACTIONS(2508), + [anon_sym_LPAREN2] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2508), + [anon_sym_static] = ACTIONS(2506), + [anon_sym_auto] = ACTIONS(2506), + [anon_sym_register] = ACTIONS(2506), + [anon_sym_inline] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(2506), + [anon_sym_restrict] = ACTIONS(2506), + [anon_sym_volatile] = ACTIONS(2506), + [anon_sym__Atomic] = ACTIONS(2506), + [anon_sym_unsigned] = ACTIONS(2506), + [anon_sym_long] = ACTIONS(2506), + [anon_sym_short] = ACTIONS(2506), + [sym_primitive_type] = ACTIONS(2506), + [anon_sym_enum] = ACTIONS(2506), + [anon_sym_struct] = ACTIONS(2506), + [anon_sym_union] = ACTIONS(2506), + [anon_sym_if] = ACTIONS(2506), + [anon_sym_else] = ACTIONS(2506), + [anon_sym_switch] = ACTIONS(2506), + [anon_sym_case] = ACTIONS(2506), + [anon_sym_default] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2506), + [anon_sym_do] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2506), + [anon_sym_return] = ACTIONS(2506), + [anon_sym_break] = ACTIONS(2506), + [anon_sym_continue] = ACTIONS(2506), + [anon_sym_goto] = ACTIONS(2506), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_BANG] = ACTIONS(2508), + [anon_sym_TILDE] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2506), + [anon_sym_DASH] = ACTIONS(2506), + [anon_sym_DASH_DASH] = ACTIONS(2508), + [anon_sym_PLUS_PLUS] = ACTIONS(2508), + [anon_sym_sizeof] = ACTIONS(2506), + [sym_number_literal] = ACTIONS(2508), + [anon_sym_SQUOTE] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_identifier] = ACTIONS(2506), + [sym_comment] = ACTIONS(39), + }, + [1142] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2510), + [sym_preproc_directive] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2512), + [anon_sym_typedef] = ACTIONS(2510), + [anon_sym_extern] = ACTIONS(2510), + [anon_sym_LBRACE] = ACTIONS(2512), + [anon_sym_LPAREN2] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2512), + [anon_sym_static] = ACTIONS(2510), + [anon_sym_auto] = ACTIONS(2510), + [anon_sym_register] = ACTIONS(2510), + [anon_sym_inline] = ACTIONS(2510), + [anon_sym_const] = ACTIONS(2510), + [anon_sym_restrict] = ACTIONS(2510), + [anon_sym_volatile] = ACTIONS(2510), + [anon_sym__Atomic] = ACTIONS(2510), + [anon_sym_unsigned] = ACTIONS(2510), + [anon_sym_long] = ACTIONS(2510), + [anon_sym_short] = ACTIONS(2510), + [sym_primitive_type] = ACTIONS(2510), + [anon_sym_enum] = ACTIONS(2510), + [anon_sym_struct] = ACTIONS(2510), + [anon_sym_union] = ACTIONS(2510), + [anon_sym_if] = ACTIONS(2510), + [anon_sym_else] = ACTIONS(2510), + [anon_sym_switch] = ACTIONS(2510), + [anon_sym_case] = ACTIONS(2510), + [anon_sym_default] = ACTIONS(2510), + [anon_sym_while] = ACTIONS(2510), + [anon_sym_do] = ACTIONS(2510), + [anon_sym_for] = ACTIONS(2510), + [anon_sym_return] = ACTIONS(2510), + [anon_sym_break] = ACTIONS(2510), + [anon_sym_continue] = ACTIONS(2510), + [anon_sym_goto] = ACTIONS(2510), + [anon_sym_AMP] = ACTIONS(2512), + [anon_sym_BANG] = ACTIONS(2512), + [anon_sym_TILDE] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2510), + [anon_sym_DASH_DASH] = ACTIONS(2512), + [anon_sym_PLUS_PLUS] = ACTIONS(2512), + [anon_sym_sizeof] = ACTIONS(2510), + [sym_number_literal] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2512), + [sym_true] = ACTIONS(2510), + [sym_false] = ACTIONS(2510), + [sym_null] = ACTIONS(2510), + [sym_identifier] = ACTIONS(2510), + [sym_comment] = ACTIONS(39), + }, + [1143] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2520), + [sym_preproc_directive] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_typedef] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_LPAREN2] = ACTIONS(2522), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_auto] = ACTIONS(2520), + [anon_sym_register] = ACTIONS(2520), + [anon_sym_inline] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_restrict] = ACTIONS(2520), + [anon_sym_volatile] = ACTIONS(2520), + [anon_sym__Atomic] = ACTIONS(2520), + [anon_sym_unsigned] = ACTIONS(2520), + [anon_sym_long] = ACTIONS(2520), + [anon_sym_short] = ACTIONS(2520), + [sym_primitive_type] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2520), + [anon_sym_union] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_switch] = ACTIONS(2520), + [anon_sym_case] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_goto] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_TILDE] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_DASH_DASH] = ACTIONS(2522), + [anon_sym_PLUS_PLUS] = ACTIONS(2522), + [anon_sym_sizeof] = ACTIONS(2520), + [sym_number_literal] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2522), + [sym_true] = ACTIONS(2520), + [sym_false] = ACTIONS(2520), + [sym_null] = ACTIONS(2520), + [sym_identifier] = ACTIONS(2520), [sym_comment] = ACTIONS(39), }, [1144] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3333), [sym_comment] = ACTIONS(39), }, [1145] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2564), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2564), - [anon_sym_LPAREN] = ACTIONS(2566), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2564), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2564), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2564), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2564), - [sym_preproc_directive] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_typedef] = ACTIONS(2564), - [anon_sym_extern] = ACTIONS(2564), - [anon_sym_LBRACE] = ACTIONS(2566), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_static] = ACTIONS(2564), - [anon_sym_auto] = ACTIONS(2564), - [anon_sym_register] = ACTIONS(2564), - [anon_sym_inline] = ACTIONS(2564), - [anon_sym_const] = ACTIONS(2564), - [anon_sym_restrict] = ACTIONS(2564), - [anon_sym_volatile] = ACTIONS(2564), - [anon_sym__Atomic] = ACTIONS(2564), - [anon_sym_unsigned] = ACTIONS(2564), - [anon_sym_long] = ACTIONS(2564), - [anon_sym_short] = ACTIONS(2564), - [sym_primitive_type] = ACTIONS(2564), - [anon_sym_enum] = ACTIONS(2564), - [anon_sym_struct] = ACTIONS(2564), - [anon_sym_union] = ACTIONS(2564), - [anon_sym_if] = ACTIONS(2564), - [anon_sym_else] = ACTIONS(2564), - [anon_sym_switch] = ACTIONS(2564), - [anon_sym_case] = ACTIONS(2564), - [anon_sym_default] = ACTIONS(2564), - [anon_sym_while] = ACTIONS(2564), - [anon_sym_do] = ACTIONS(2564), - [anon_sym_for] = ACTIONS(2564), - [anon_sym_return] = ACTIONS(2564), - [anon_sym_break] = ACTIONS(2564), - [anon_sym_continue] = ACTIONS(2564), - [anon_sym_goto] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_BANG] = ACTIONS(2566), - [anon_sym_TILDE] = ACTIONS(2566), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_DASH_DASH] = ACTIONS(2566), - [anon_sym_PLUS_PLUS] = ACTIONS(2566), - [anon_sym_sizeof] = ACTIONS(2564), - [sym_number_literal] = ACTIONS(2566), - [anon_sym_SQUOTE] = ACTIONS(2566), - [anon_sym_DQUOTE] = ACTIONS(2566), - [sym_true] = ACTIONS(2564), - [sym_false] = ACTIONS(2564), - [sym_null] = ACTIONS(2564), - [sym_identifier] = ACTIONS(2564), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3335), [sym_comment] = ACTIONS(39), }, [1146] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2568), - [anon_sym_LPAREN] = ACTIONS(2570), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2568), - [sym_preproc_directive] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_typedef] = ACTIONS(2568), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_auto] = ACTIONS(2568), - [anon_sym_register] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_restrict] = ACTIONS(2568), - [anon_sym_volatile] = ACTIONS(2568), - [anon_sym__Atomic] = ACTIONS(2568), - [anon_sym_unsigned] = ACTIONS(2568), - [anon_sym_long] = ACTIONS(2568), - [anon_sym_short] = ACTIONS(2568), - [sym_primitive_type] = ACTIONS(2568), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_struct] = ACTIONS(2568), - [anon_sym_union] = ACTIONS(2568), - [anon_sym_if] = ACTIONS(2568), - [anon_sym_else] = ACTIONS(2568), - [anon_sym_switch] = ACTIONS(2568), - [anon_sym_case] = ACTIONS(2568), - [anon_sym_default] = ACTIONS(2568), - [anon_sym_while] = ACTIONS(2568), - [anon_sym_do] = ACTIONS(2568), - [anon_sym_for] = ACTIONS(2568), - [anon_sym_return] = ACTIONS(2568), - [anon_sym_break] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2568), - [anon_sym_goto] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_BANG] = ACTIONS(2570), - [anon_sym_TILDE] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2570), - [anon_sym_PLUS_PLUS] = ACTIONS(2570), - [anon_sym_sizeof] = ACTIONS(2568), - [sym_number_literal] = ACTIONS(2570), - [anon_sym_SQUOTE] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(2570), - [sym_true] = ACTIONS(2568), - [sym_false] = ACTIONS(2568), - [sym_null] = ACTIONS(2568), - [sym_identifier] = ACTIONS(2568), + [sym_compound_statement] = STATE(1215), + [sym_labeled_statement] = STATE(1215), + [sym_expression_statement] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym_case_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_break_statement] = STATE(1215), + [sym_continue_statement] = STATE(1215), + [sym_goto_statement] = STATE(1215), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2745), [sym_comment] = ACTIONS(39), }, [1147] = { - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_COLON] = ACTIONS(2787), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), + [sym_compound_statement] = STATE(1042), + [sym_labeled_statement] = STATE(1042), + [sym_expression_statement] = STATE(1042), + [sym_if_statement] = STATE(1042), + [sym_switch_statement] = STATE(1042), + [sym_case_statement] = STATE(1042), + [sym_while_statement] = STATE(1042), + [sym_do_statement] = STATE(1042), + [sym_for_statement] = STATE(1042), + [sym_return_statement] = STATE(1042), + [sym_break_statement] = STATE(1042), + [sym_continue_statement] = STATE(1042), + [sym_goto_statement] = STATE(1042), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2745), [sym_comment] = ACTIONS(39), }, [1148] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2578), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2578), - [anon_sym_LPAREN] = ACTIONS(2580), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2578), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2578), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2578), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2578), - [sym_preproc_directive] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2580), - [anon_sym_typedef] = ACTIONS(2578), - [anon_sym_extern] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2578), - [anon_sym_auto] = ACTIONS(2578), - [anon_sym_register] = ACTIONS(2578), - [anon_sym_inline] = ACTIONS(2578), - [anon_sym_const] = ACTIONS(2578), - [anon_sym_restrict] = ACTIONS(2578), - [anon_sym_volatile] = ACTIONS(2578), - [anon_sym__Atomic] = ACTIONS(2578), - [anon_sym_unsigned] = ACTIONS(2578), - [anon_sym_long] = ACTIONS(2578), - [anon_sym_short] = ACTIONS(2578), - [sym_primitive_type] = ACTIONS(2578), - [anon_sym_enum] = ACTIONS(2578), - [anon_sym_struct] = ACTIONS(2578), - [anon_sym_union] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2578), - [anon_sym_else] = ACTIONS(2578), - [anon_sym_switch] = ACTIONS(2578), - [anon_sym_case] = ACTIONS(2578), - [anon_sym_default] = ACTIONS(2578), - [anon_sym_while] = ACTIONS(2578), - [anon_sym_do] = ACTIONS(2578), - [anon_sym_for] = ACTIONS(2578), - [anon_sym_return] = ACTIONS(2578), - [anon_sym_break] = ACTIONS(2578), - [anon_sym_continue] = ACTIONS(2578), - [anon_sym_goto] = ACTIONS(2578), - [anon_sym_AMP] = ACTIONS(2580), - [anon_sym_BANG] = ACTIONS(2580), - [anon_sym_TILDE] = ACTIONS(2580), - [anon_sym_PLUS] = ACTIONS(2578), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_DASH_DASH] = ACTIONS(2580), - [anon_sym_PLUS_PLUS] = ACTIONS(2580), - [anon_sym_sizeof] = ACTIONS(2578), - [sym_number_literal] = ACTIONS(2580), - [anon_sym_SQUOTE] = ACTIONS(2580), - [anon_sym_DQUOTE] = ACTIONS(2580), - [sym_true] = ACTIONS(2578), - [sym_false] = ACTIONS(2578), - [sym_null] = ACTIONS(2578), - [sym_identifier] = ACTIONS(2578), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(3337), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1149] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3437), + [sym_declaration] = STATE(1045), + [sym_type_definition] = STATE(1045), + [sym__declaration_specifiers] = STATE(1046), + [sym_compound_statement] = STATE(1045), + [sym_storage_class_specifier] = STATE(96), + [sym_type_qualifier] = STATE(96), + [sym__type_specifier] = STATE(95), + [sym_sized_type_specifier] = STATE(95), + [sym_enum_specifier] = STATE(95), + [sym_struct_specifier] = STATE(95), + [sym_union_specifier] = STATE(95), + [sym_labeled_statement] = STATE(1045), + [sym_expression_statement] = STATE(1045), + [sym_if_statement] = STATE(1045), + [sym_switch_statement] = STATE(1045), + [sym_case_statement] = STATE(1045), + [sym_while_statement] = STATE(1045), + [sym_do_statement] = STATE(1045), + [sym_for_statement] = STATE(1045), + [sym_return_statement] = STATE(1045), + [sym_break_statement] = STATE(1045), + [sym_continue_statement] = STATE(1045), + [sym_goto_statement] = STATE(1045), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym_macro_type_specifier] = STATE(95), + [aux_sym__declaration_specifiers_repeat1] = STATE(96), + [aux_sym_sized_type_specifier_repeat1] = STATE(97), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(151), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_long] = ACTIONS(177), + [anon_sym_short] = ACTIONS(177), + [sym_primitive_type] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(3339), [sym_comment] = ACTIONS(39), }, [1150] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3439), + [sym_compound_statement] = STATE(1047), + [sym_labeled_statement] = STATE(1047), + [sym_expression_statement] = STATE(1047), + [sym_if_statement] = STATE(1047), + [sym_switch_statement] = STATE(1047), + [sym_case_statement] = STATE(1047), + [sym_while_statement] = STATE(1047), + [sym_do_statement] = STATE(1047), + [sym_for_statement] = STATE(1047), + [sym_return_statement] = STATE(1047), + [sym_break_statement] = STATE(1047), + [sym_continue_statement] = STATE(1047), + [sym_goto_statement] = STATE(1047), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2745), [sym_comment] = ACTIONS(39), }, [1151] = { - [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(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(3453), + [sym_declaration] = STATE(1218), + [sym__declaration_specifiers] = STATE(710), + [sym_storage_class_specifier] = STATE(96), + [sym_type_qualifier] = STATE(96), + [sym__type_specifier] = STATE(95), + [sym_sized_type_specifier] = STATE(95), + [sym_enum_specifier] = STATE(95), + [sym_struct_specifier] = STATE(95), + [sym_union_specifier] = STATE(95), + [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(376), + [sym_macro_type_specifier] = STATE(95), + [aux_sym__declaration_specifiers_repeat1] = STATE(96), + [aux_sym_sized_type_specifier_repeat1] = STATE(97), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_long] = ACTIONS(177), + [anon_sym_short] = ACTIONS(177), + [sym_primitive_type] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_sizeof] = ACTIONS(859), + [sym_number_literal] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3345), + [sym_false] = ACTIONS(3345), + [sym_null] = ACTIONS(3345), + [sym_identifier] = ACTIONS(1670), [sym_comment] = ACTIONS(39), }, [1152] = { - [sym_compound_statement] = STATE(1225), - [sym_labeled_statement] = STATE(1225), - [sym_expression_statement] = STATE(1225), - [sym_if_statement] = STATE(1225), - [sym_switch_statement] = STATE(1225), - [sym_case_statement] = STATE(1225), - [sym_while_statement] = STATE(1225), - [sym_do_statement] = STATE(1225), - [sym_for_statement] = STATE(1225), - [sym_return_statement] = STATE(1225), - [sym_break_statement] = STATE(1225), - [sym_continue_statement] = STATE(1225), - [sym_goto_statement] = STATE(1225), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(2825), + [sym_compound_statement] = STATE(1053), + [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(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2745), [sym_comment] = ACTIONS(39), }, [1153] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3008), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3008), - [anon_sym_LPAREN] = ACTIONS(3010), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3008), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3008), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3008), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3008), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3008), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3008), - [sym_preproc_directive] = ACTIONS(3008), - [anon_sym_SEMI] = ACTIONS(3010), - [anon_sym_typedef] = ACTIONS(3008), - [anon_sym_extern] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_static] = ACTIONS(3008), - [anon_sym_auto] = ACTIONS(3008), - [anon_sym_register] = ACTIONS(3008), - [anon_sym_inline] = ACTIONS(3008), - [anon_sym_const] = ACTIONS(3008), - [anon_sym_restrict] = ACTIONS(3008), - [anon_sym_volatile] = ACTIONS(3008), - [anon_sym__Atomic] = ACTIONS(3008), - [anon_sym_unsigned] = ACTIONS(3008), - [anon_sym_long] = ACTIONS(3008), - [anon_sym_short] = ACTIONS(3008), - [sym_primitive_type] = ACTIONS(3008), - [anon_sym_enum] = ACTIONS(3008), - [anon_sym_struct] = ACTIONS(3008), - [anon_sym_union] = ACTIONS(3008), - [anon_sym_if] = ACTIONS(3008), - [anon_sym_else] = ACTIONS(3008), - [anon_sym_switch] = ACTIONS(3008), - [anon_sym_case] = ACTIONS(3008), - [anon_sym_default] = ACTIONS(3008), - [anon_sym_while] = ACTIONS(3008), - [anon_sym_do] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3008), - [anon_sym_return] = ACTIONS(3008), - [anon_sym_break] = ACTIONS(3008), - [anon_sym_continue] = ACTIONS(3008), - [anon_sym_goto] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3008), - [anon_sym_DASH] = ACTIONS(3008), - [anon_sym_DASH_DASH] = ACTIONS(3010), - [anon_sym_PLUS_PLUS] = ACTIONS(3010), - [anon_sym_sizeof] = ACTIONS(3008), - [sym_number_literal] = ACTIONS(3010), - [anon_sym_SQUOTE] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [sym_true] = ACTIONS(3008), - [sym_false] = ACTIONS(3008), - [sym_null] = ACTIONS(3008), - [sym_identifier] = ACTIONS(3008), + [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(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2747), [sym_comment] = ACTIONS(39), }, [1154] = { - [sym_compound_statement] = STATE(1226), - [sym_labeled_statement] = STATE(1226), - [sym_expression_statement] = STATE(1226), - [sym_if_statement] = STATE(1226), - [sym_switch_statement] = STATE(1226), - [sym_case_statement] = STATE(1226), - [sym_while_statement] = STATE(1226), - [sym_do_statement] = STATE(1226), - [sym_for_statement] = STATE(1226), - [sym_return_statement] = STATE(1226), - [sym_break_statement] = STATE(1226), - [sym_continue_statement] = STATE(1226), - [sym_goto_statement] = STATE(1226), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(2825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2908), + [sym_preproc_directive] = ACTIONS(2908), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_typedef] = ACTIONS(2908), + [anon_sym_extern] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_auto] = ACTIONS(2908), + [anon_sym_register] = ACTIONS(2908), + [anon_sym_inline] = ACTIONS(2908), + [anon_sym_const] = ACTIONS(2908), + [anon_sym_restrict] = ACTIONS(2908), + [anon_sym_volatile] = ACTIONS(2908), + [anon_sym__Atomic] = ACTIONS(2908), + [anon_sym_unsigned] = ACTIONS(2908), + [anon_sym_long] = ACTIONS(2908), + [anon_sym_short] = ACTIONS(2908), + [sym_primitive_type] = ACTIONS(2908), + [anon_sym_enum] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_else] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2908), + [anon_sym_case] = ACTIONS(2908), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_goto] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_sizeof] = ACTIONS(2908), + [sym_number_literal] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [sym_true] = ACTIONS(2908), + [sym_false] = ACTIONS(2908), + [sym_null] = ACTIONS(2908), + [sym_identifier] = ACTIONS(2908), [sym_comment] = ACTIONS(39), }, [1155] = { - [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(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3457), - [sym_false] = ACTIONS(3457), - [sym_null] = ACTIONS(3457), - [sym_identifier] = ACTIONS(3457), + [sym__expression] = STATE(1221), + [sym_comma_expression] = STATE(1222), + [sym_conditional_expression] = STATE(1221), + [sym_assignment_expression] = STATE(1221), + [sym_pointer_expression] = STATE(1221), + [sym_logical_expression] = STATE(1221), + [sym_bitwise_expression] = STATE(1221), + [sym_equality_expression] = STATE(1221), + [sym_relational_expression] = STATE(1221), + [sym_shift_expression] = STATE(1221), + [sym_math_expression] = STATE(1221), + [sym_cast_expression] = STATE(1221), + [sym_sizeof_expression] = STATE(1221), + [sym_subscript_expression] = STATE(1221), + [sym_call_expression] = STATE(1221), + [sym_field_expression] = STATE(1221), + [sym_compound_literal_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(1221), + [sym_char_literal] = STATE(1221), + [sym_concatenated_string] = STATE(1221), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3349), + [sym_false] = ACTIONS(3349), + [sym_null] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3349), [sym_comment] = ACTIONS(39), }, [1156] = { - [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(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3461), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3463), - [sym_false] = ACTIONS(3463), - [sym_null] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3463), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2936), + [sym_preproc_directive] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_typedef] = ACTIONS(2936), + [anon_sym_extern] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LPAREN2] = ACTIONS(2938), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_auto] = ACTIONS(2936), + [anon_sym_register] = ACTIONS(2936), + [anon_sym_inline] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2936), + [anon_sym_restrict] = ACTIONS(2936), + [anon_sym_volatile] = ACTIONS(2936), + [anon_sym__Atomic] = ACTIONS(2936), + [anon_sym_unsigned] = ACTIONS(2936), + [anon_sym_long] = ACTIONS(2936), + [anon_sym_short] = ACTIONS(2936), + [sym_primitive_type] = ACTIONS(2936), + [anon_sym_enum] = ACTIONS(2936), + [anon_sym_struct] = ACTIONS(2936), + [anon_sym_union] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_else] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2936), + [anon_sym_case] = ACTIONS(2936), + [anon_sym_default] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_do] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_goto] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_sizeof] = ACTIONS(2936), + [sym_number_literal] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [sym_true] = ACTIONS(2936), + [sym_false] = ACTIONS(2936), + [sym_null] = ACTIONS(2936), + [sym_identifier] = ACTIONS(2936), [sym_comment] = ACTIONS(39), }, [1157] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3465), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym__expression] = STATE(1224), + [sym_conditional_expression] = STATE(1224), + [sym_assignment_expression] = STATE(1224), + [sym_pointer_expression] = STATE(1224), + [sym_logical_expression] = STATE(1224), + [sym_bitwise_expression] = STATE(1224), + [sym_equality_expression] = STATE(1224), + [sym_relational_expression] = STATE(1224), + [sym_shift_expression] = STATE(1224), + [sym_math_expression] = STATE(1224), + [sym_cast_expression] = STATE(1224), + [sym_sizeof_expression] = STATE(1224), + [sym_subscript_expression] = STATE(1224), + [sym_call_expression] = STATE(1224), + [sym_field_expression] = STATE(1224), + [sym_compound_literal_expression] = STATE(1224), + [sym_parenthesized_expression] = STATE(1224), + [sym_char_literal] = STATE(1224), + [sym_concatenated_string] = STATE(1224), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3351), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3353), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3355), + [sym_false] = ACTIONS(3355), + [sym_null] = ACTIONS(3355), + [sym_identifier] = ACTIONS(3355), [sym_comment] = ACTIONS(39), }, [1158] = { - [sym__expression] = STATE(1231), - [sym_conditional_expression] = STATE(1231), - [sym_assignment_expression] = STATE(1231), - [sym_pointer_expression] = STATE(1231), - [sym_logical_expression] = STATE(1231), - [sym_bitwise_expression] = STATE(1231), - [sym_equality_expression] = STATE(1231), - [sym_relational_expression] = STATE(1231), - [sym_shift_expression] = STATE(1231), - [sym_math_expression] = STATE(1231), - [sym_cast_expression] = STATE(1231), - [sym_sizeof_expression] = STATE(1231), - [sym_subscript_expression] = STATE(1231), - [sym_call_expression] = STATE(1231), - [sym_field_expression] = STATE(1231), - [sym_compound_literal_expression] = STATE(1231), - [sym_parenthesized_expression] = STATE(1231), - [sym_char_literal] = STATE(1231), - [sym_concatenated_string] = STATE(1231), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3465), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [1159] = { + [sym__expression] = STATE(1226), + [sym_conditional_expression] = STATE(1226), + [sym_assignment_expression] = STATE(1226), + [sym_pointer_expression] = STATE(1226), + [sym_logical_expression] = STATE(1226), + [sym_bitwise_expression] = STATE(1226), + [sym_equality_expression] = STATE(1226), + [sym_relational_expression] = STATE(1226), + [sym_shift_expression] = STATE(1226), + [sym_math_expression] = STATE(1226), + [sym_cast_expression] = STATE(1226), + [sym_sizeof_expression] = STATE(1226), + [sym_subscript_expression] = STATE(1226), + [sym_call_expression] = STATE(1226), + [sym_field_expression] = STATE(1226), + [sym_compound_literal_expression] = STATE(1226), + [sym_parenthesized_expression] = STATE(1226), + [sym_char_literal] = STATE(1226), + [sym_concatenated_string] = STATE(1226), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -45514,348 +46162,298 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3467), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3469), - [sym_false] = ACTIONS(3469), - [sym_null] = ACTIONS(3469), - [sym_identifier] = ACTIONS(3469), - [sym_comment] = ACTIONS(39), - }, - [1159] = { - [sym__expression] = STATE(866), - [sym_conditional_expression] = STATE(866), - [sym_assignment_expression] = STATE(866), - [sym_pointer_expression] = STATE(866), - [sym_logical_expression] = STATE(866), - [sym_bitwise_expression] = STATE(866), - [sym_equality_expression] = STATE(866), - [sym_relational_expression] = STATE(866), - [sym_shift_expression] = STATE(866), - [sym_math_expression] = STATE(866), - [sym_cast_expression] = STATE(866), - [sym_sizeof_expression] = STATE(866), - [sym_subscript_expression] = STATE(866), - [sym_call_expression] = STATE(866), - [sym_field_expression] = STATE(866), - [sym_compound_literal_expression] = STATE(866), - [sym_parenthesized_expression] = STATE(866), - [sym_initializer_list] = STATE(867), - [sym_char_literal] = STATE(866), - [sym_concatenated_string] = STATE(866), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_RPAREN] = ACTIONS(3044), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(3471), - [anon_sym_LBRACK] = ACTIONS(3044), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_QMARK] = ACTIONS(3044), - [anon_sym_STAR_EQ] = ACTIONS(3044), - [anon_sym_SLASH_EQ] = ACTIONS(3044), - [anon_sym_PERCENT_EQ] = ACTIONS(3044), - [anon_sym_PLUS_EQ] = ACTIONS(3044), - [anon_sym_DASH_EQ] = ACTIONS(3044), - [anon_sym_LT_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_GT_EQ] = ACTIONS(3044), - [anon_sym_AMP_EQ] = ACTIONS(3044), - [anon_sym_CARET_EQ] = ACTIONS(3044), - [anon_sym_PIPE_EQ] = ACTIONS(3044), - [anon_sym_AMP] = ACTIONS(3471), - [anon_sym_PIPE_PIPE] = ACTIONS(3044), - [anon_sym_AMP_AMP] = ACTIONS(3044), - [anon_sym_BANG] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3048), - [anon_sym_CARET] = ACTIONS(3048), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_EQ_EQ] = ACTIONS(3044), - [anon_sym_BANG_EQ] = ACTIONS(3044), - [anon_sym_LT] = ACTIONS(3048), - [anon_sym_GT] = ACTIONS(3048), - [anon_sym_LT_EQ] = ACTIONS(3044), - [anon_sym_GT_EQ] = ACTIONS(3044), - [anon_sym_LT_LT] = ACTIONS(3048), - [anon_sym_GT_GT] = ACTIONS(3048), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_SLASH] = ACTIONS(3048), - [anon_sym_PERCENT] = ACTIONS(3048), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(3044), - [anon_sym_DASH_GT] = ACTIONS(3044), - [sym_number_literal] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(3359), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_identifier] = ACTIONS(2332), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_identifier] = ACTIONS(3361), [sym_comment] = ACTIONS(39), }, [1160] = { - [sym__expression] = STATE(1232), - [sym_conditional_expression] = STATE(1232), - [sym_assignment_expression] = STATE(1232), - [sym_pointer_expression] = STATE(1232), - [sym_logical_expression] = STATE(1232), - [sym_bitwise_expression] = STATE(1232), - [sym_equality_expression] = STATE(1232), - [sym_relational_expression] = STATE(1232), - [sym_shift_expression] = STATE(1232), - [sym_math_expression] = STATE(1232), - [sym_cast_expression] = STATE(1232), - [sym_sizeof_expression] = STATE(1232), - [sym_subscript_expression] = STATE(1232), - [sym_call_expression] = STATE(1232), - [sym_field_expression] = STATE(1232), - [sym_compound_literal_expression] = STATE(1232), - [sym_parenthesized_expression] = STATE(1232), - [sym_char_literal] = STATE(1232), - [sym_concatenated_string] = STATE(1232), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3475), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3477), - [sym_false] = ACTIONS(3477), - [sym_null] = ACTIONS(3477), - [sym_identifier] = ACTIONS(3477), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1161] = { - [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(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3479), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3481), - [sym_false] = ACTIONS(3481), - [sym_null] = ACTIONS(3481), - [sym_identifier] = ACTIONS(3481), + [sym_compound_statement] = STATE(1067), + [sym_labeled_statement] = STATE(1067), + [sym_expression_statement] = STATE(1067), + [sym_if_statement] = STATE(1067), + [sym_switch_statement] = STATE(1067), + [sym_case_statement] = STATE(1067), + [sym_while_statement] = STATE(1067), + [sym_do_statement] = STATE(1067), + [sym_for_statement] = STATE(1067), + [sym_return_statement] = STATE(1067), + [sym_break_statement] = STATE(1067), + [sym_continue_statement] = STATE(1067), + [sym_goto_statement] = STATE(1067), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1610), [sym_comment] = ACTIONS(39), }, [1162] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(3483), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym__expression] = STATE(1228), + [sym_conditional_expression] = STATE(1228), + [sym_assignment_expression] = STATE(1228), + [sym_pointer_expression] = STATE(1228), + [sym_logical_expression] = STATE(1228), + [sym_bitwise_expression] = STATE(1228), + [sym_equality_expression] = STATE(1228), + [sym_relational_expression] = STATE(1228), + [sym_shift_expression] = STATE(1228), + [sym_math_expression] = STATE(1228), + [sym_cast_expression] = STATE(1228), + [sym_sizeof_expression] = STATE(1228), + [sym_subscript_expression] = STATE(1228), + [sym_call_expression] = STATE(1228), + [sym_field_expression] = STATE(1228), + [sym_compound_literal_expression] = STATE(1228), + [sym_parenthesized_expression] = STATE(1228), + [sym_char_literal] = STATE(1228), + [sym_concatenated_string] = STATE(1228), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3363), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3365), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_identifier] = ACTIONS(3367), [sym_comment] = ACTIONS(39), }, [1163] = { - [sym_declaration] = STATE(715), - [sym_type_definition] = STATE(715), - [sym__declaration_specifiers] = STATE(716), - [sym_compound_statement] = STATE(715), - [sym_storage_class_specifier] = STATE(96), - [sym_type_qualifier] = STATE(96), - [sym__type_specifier] = STATE(95), - [sym_sized_type_specifier] = STATE(95), - [sym_enum_specifier] = STATE(95), - [sym_struct_specifier] = STATE(95), - [sym_union_specifier] = STATE(95), - [sym_labeled_statement] = STATE(715), - [sym_expression_statement] = STATE(715), - [sym_if_statement] = STATE(715), - [sym_switch_statement] = STATE(715), - [sym_case_statement] = STATE(715), - [sym_while_statement] = STATE(715), - [sym_do_statement] = STATE(715), - [sym_for_statement] = STATE(715), - [sym_return_statement] = STATE(715), - [sym_break_statement] = STATE(715), - [sym_continue_statement] = STATE(715), - [sym_goto_statement] = STATE(715), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [sym_macro_type_specifier] = STATE(95), - [aux_sym__declaration_specifiers_repeat1] = STATE(96), - [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(3485), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [1164] = { + [sym__expression] = STATE(1230), + [sym_conditional_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1230), + [sym_pointer_expression] = STATE(1230), + [sym_logical_expression] = STATE(1230), + [sym_bitwise_expression] = STATE(1230), + [sym_equality_expression] = STATE(1230), + [sym_relational_expression] = STATE(1230), + [sym_shift_expression] = STATE(1230), + [sym_math_expression] = STATE(1230), + [sym_cast_expression] = STATE(1230), + [sym_sizeof_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_call_expression] = STATE(1230), + [sym_field_expression] = STATE(1230), + [sym_compound_literal_expression] = STATE(1230), + [sym_parenthesized_expression] = STATE(1230), + [sym_char_literal] = STATE(1230), + [sym_concatenated_string] = STATE(1230), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_LPAREN2] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_sizeof] = ACTIONS(859), + [sym_number_literal] = ACTIONS(3371), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3373), + [sym_false] = ACTIONS(3373), + [sym_null] = ACTIONS(3373), + [sym_identifier] = ACTIONS(3373), [sym_comment] = ACTIONS(39), }, - [1164] = { - [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(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3487), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3489), - [sym_false] = ACTIONS(3489), - [sym_null] = ACTIONS(3489), - [sym_identifier] = ACTIONS(3489), + [1165] = { + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(3275), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [1165] = { - [sym_declaration] = STATE(1237), - [sym__declaration_specifiers] = STATE(716), + [1166] = { + [anon_sym_else] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(2410), + [sym_comment] = ACTIONS(39), + }, + [1167] = { + [sym_declaration] = STATE(936), + [sym_type_definition] = STATE(936), + [sym__declaration_specifiers] = STATE(710), + [sym_compound_statement] = STATE(936), [sym_storage_class_specifier] = STATE(96), [sym_type_qualifier] = STATE(96), [sym__type_specifier] = STATE(95), @@ -45863,33 +46461,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(95), [sym_struct_specifier] = STATE(95), [sym_union_specifier] = STATE(95), - [sym__expression] = STATE(1238), - [sym_conditional_expression] = STATE(1238), - [sym_assignment_expression] = STATE(1238), - [sym_pointer_expression] = STATE(1238), - [sym_logical_expression] = STATE(1238), - [sym_bitwise_expression] = STATE(1238), - [sym_equality_expression] = STATE(1238), - [sym_relational_expression] = STATE(1238), - [sym_shift_expression] = STATE(1238), - [sym_math_expression] = STATE(1238), - [sym_cast_expression] = STATE(1238), - [sym_sizeof_expression] = STATE(1238), - [sym_subscript_expression] = STATE(1238), - [sym_call_expression] = STATE(1238), - [sym_field_expression] = STATE(1238), - [sym_compound_literal_expression] = STATE(1238), - [sym_parenthesized_expression] = STATE(1238), - [sym_char_literal] = STATE(1238), - [sym_concatenated_string] = STATE(1238), - [sym_string_literal] = STATE(378), + [sym_labeled_statement] = STATE(936), + [sym_expression_statement] = STATE(936), + [sym_if_statement] = STATE(936), + [sym_switch_statement] = STATE(936), + [sym_case_statement] = STATE(936), + [sym_while_statement] = STATE(936), + [sym_do_statement] = STATE(936), + [sym_for_statement] = STATE(936), + [sym_return_statement] = STATE(936), + [sym_break_statement] = STATE(936), + [sym_continue_statement] = STATE(936), + [sym_goto_statement] = STATE(936), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3491), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(849), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -45905,6 +46518,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(3238), + [sym_comment] = ACTIONS(39), + }, + [1168] = { + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_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_COLON] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_identifier] = ACTIONS(83), + [sym_comment] = ACTIONS(39), + }, + [1169] = { + [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(376), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_LPAREN2] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), [anon_sym_TILDE] = ACTIONS(853), @@ -45913,2097 +46630,2158 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3493), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3495), - [sym_false] = ACTIONS(3495), - [sym_null] = ACTIONS(3495), - [sym_identifier] = ACTIONS(1705), - [sym_comment] = ACTIONS(39), - }, - [1166] = { - [sym_compound_statement] = STATE(734), - [sym_labeled_statement] = STATE(734), - [sym_expression_statement] = STATE(734), - [sym_if_statement] = STATE(734), - [sym_switch_statement] = STATE(734), - [sym_case_statement] = STATE(734), - [sym_while_statement] = STATE(734), - [sym_do_statement] = STATE(734), - [sym_for_statement] = STATE(734), - [sym_return_statement] = STATE(734), - [sym_break_statement] = STATE(734), - [sym_continue_statement] = STATE(734), - [sym_goto_statement] = STATE(734), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(2960), - [sym_comment] = ACTIONS(39), - }, - [1167] = { - [sym_compound_statement] = STATE(1239), - [sym_labeled_statement] = STATE(1239), - [sym_expression_statement] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_switch_statement] = STATE(1239), - [sym_case_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_do_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_return_statement] = STATE(1239), - [sym_break_statement] = STATE(1239), - [sym_continue_statement] = STATE(1239), - [sym_goto_statement] = STATE(1239), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1741), - [sym_comment] = ACTIONS(39), - }, - [1168] = { - [sym__expression] = STATE(1240), - [sym_conditional_expression] = STATE(1240), - [sym_assignment_expression] = STATE(1240), - [sym_pointer_expression] = STATE(1240), - [sym_logical_expression] = STATE(1240), - [sym_bitwise_expression] = STATE(1240), - [sym_equality_expression] = STATE(1240), - [sym_relational_expression] = STATE(1240), - [sym_shift_expression] = STATE(1240), - [sym_math_expression] = STATE(1240), - [sym_cast_expression] = STATE(1240), - [sym_sizeof_expression] = STATE(1240), - [sym_subscript_expression] = STATE(1240), - [sym_call_expression] = STATE(1240), - [sym_field_expression] = STATE(1240), - [sym_compound_literal_expression] = STATE(1240), - [sym_parenthesized_expression] = STATE(1240), - [sym_char_literal] = STATE(1240), - [sym_concatenated_string] = STATE(1240), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3497), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(3379), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3499), - [sym_false] = ACTIONS(3499), - [sym_null] = ACTIONS(3499), - [sym_identifier] = ACTIONS(3499), - [sym_comment] = ACTIONS(39), - }, - [1169] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(3385), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_true] = ACTIONS(3381), + [sym_false] = ACTIONS(3381), + [sym_null] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3381), [sym_comment] = ACTIONS(39), }, [1170] = { - [anon_sym_LPAREN] = ACTIONS(3501), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3383), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1171] = { - [anon_sym_LPAREN] = ACTIONS(3503), + [sym_compound_statement] = STATE(1175), + [sym_labeled_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_if_statement] = STATE(1175), + [sym_switch_statement] = STATE(1175), + [sym_case_statement] = STATE(1175), + [sym_while_statement] = STATE(1175), + [sym_do_statement] = STATE(1175), + [sym_for_statement] = STATE(1175), + [sym_return_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_goto_statement] = STATE(1175), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1030), [sym_comment] = ACTIONS(39), }, [1172] = { - [sym__expression] = STATE(1243), - [sym_conditional_expression] = STATE(1243), - [sym_assignment_expression] = STATE(1243), - [sym_pointer_expression] = STATE(1243), - [sym_logical_expression] = STATE(1243), - [sym_bitwise_expression] = STATE(1243), - [sym_equality_expression] = STATE(1243), - [sym_relational_expression] = STATE(1243), - [sym_shift_expression] = STATE(1243), - [sym_math_expression] = STATE(1243), - [sym_cast_expression] = STATE(1243), - [sym_sizeof_expression] = STATE(1243), - [sym_subscript_expression] = STATE(1243), - [sym_call_expression] = STATE(1243), - [sym_field_expression] = STATE(1243), - [sym_compound_literal_expression] = STATE(1243), - [sym_parenthesized_expression] = STATE(1243), - [sym_char_literal] = STATE(1243), - [sym_concatenated_string] = STATE(1243), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(3505), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3507), - [sym_false] = ACTIONS(3507), - [sym_null] = ACTIONS(3507), - [sym_identifier] = ACTIONS(3507), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1236), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3385), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1173] = { - [anon_sym_COLON] = ACTIONS(3509), + [sym__expression] = STATE(1237), + [sym_conditional_expression] = STATE(1237), + [sym_assignment_expression] = STATE(1237), + [sym_pointer_expression] = STATE(1237), + [sym_logical_expression] = STATE(1237), + [sym_bitwise_expression] = STATE(1237), + [sym_equality_expression] = STATE(1237), + [sym_relational_expression] = STATE(1237), + [sym_shift_expression] = STATE(1237), + [sym_math_expression] = STATE(1237), + [sym_cast_expression] = STATE(1237), + [sym_sizeof_expression] = STATE(1237), + [sym_subscript_expression] = STATE(1237), + [sym_call_expression] = STATE(1237), + [sym_field_expression] = STATE(1237), + [sym_compound_literal_expression] = STATE(1237), + [sym_parenthesized_expression] = STATE(1237), + [sym_char_literal] = STATE(1237), + [sym_concatenated_string] = STATE(1237), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3385), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3387), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3389), + [sym_false] = ACTIONS(3389), + [sym_null] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3389), [sym_comment] = ACTIONS(39), }, [1174] = { - [anon_sym_LPAREN] = ACTIONS(3511), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3391), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1175] = { - [anon_sym_LPAREN] = ACTIONS(3513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3393), + [sym_preproc_directive] = ACTIONS(3393), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_typedef] = ACTIONS(3393), + [anon_sym_extern] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3393), + [anon_sym_auto] = ACTIONS(3393), + [anon_sym_register] = ACTIONS(3393), + [anon_sym_inline] = ACTIONS(3393), + [anon_sym_const] = ACTIONS(3393), + [anon_sym_restrict] = ACTIONS(3393), + [anon_sym_volatile] = ACTIONS(3393), + [anon_sym__Atomic] = ACTIONS(3393), + [anon_sym_unsigned] = ACTIONS(3393), + [anon_sym_long] = ACTIONS(3393), + [anon_sym_short] = ACTIONS(3393), + [sym_primitive_type] = ACTIONS(3393), + [anon_sym_enum] = ACTIONS(3393), + [anon_sym_struct] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3393), + [anon_sym_else] = ACTIONS(3393), + [anon_sym_switch] = ACTIONS(3393), + [anon_sym_case] = ACTIONS(3393), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3393), + [anon_sym_do] = ACTIONS(3393), + [anon_sym_for] = ACTIONS(3393), + [anon_sym_return] = ACTIONS(3393), + [anon_sym_break] = ACTIONS(3393), + [anon_sym_continue] = ACTIONS(3393), + [anon_sym_goto] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_DASH_DASH] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_sizeof] = ACTIONS(3393), + [sym_number_literal] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [sym_true] = ACTIONS(3393), + [sym_false] = ACTIONS(3393), + [sym_null] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3393), [sym_comment] = ACTIONS(39), }, [1176] = { - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_COLON] = ACTIONS(3515), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), + [sym_compound_statement] = STATE(1239), + [sym_labeled_statement] = STATE(1239), + [sym_expression_statement] = STATE(1239), + [sym_if_statement] = STATE(1239), + [sym_switch_statement] = STATE(1239), + [sym_case_statement] = STATE(1239), + [sym_while_statement] = STATE(1239), + [sym_do_statement] = STATE(1239), + [sym_for_statement] = STATE(1239), + [sym_return_statement] = STATE(1239), + [sym_break_statement] = STATE(1239), + [sym_continue_statement] = STATE(1239), + [sym_goto_statement] = STATE(1239), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1612), [sym_comment] = ACTIONS(39), }, [1177] = { - [anon_sym_else] = ACTIONS(3517), - [anon_sym_while] = ACTIONS(3318), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3397), [sym_comment] = ACTIONS(39), }, [1178] = { - [sym_compound_statement] = STATE(1183), - [sym_labeled_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_switch_statement] = STATE(1183), - [sym_case_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_do_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_goto_statement] = STATE(1183), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1050), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1241), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3397), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1179] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1250), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym__expression] = STATE(1242), + [sym_conditional_expression] = STATE(1242), + [sym_assignment_expression] = STATE(1242), + [sym_pointer_expression] = STATE(1242), + [sym_logical_expression] = STATE(1242), + [sym_bitwise_expression] = STATE(1242), + [sym_equality_expression] = STATE(1242), + [sym_relational_expression] = STATE(1242), + [sym_shift_expression] = STATE(1242), + [sym_math_expression] = STATE(1242), + [sym_cast_expression] = STATE(1242), + [sym_sizeof_expression] = STATE(1242), + [sym_subscript_expression] = STATE(1242), + [sym_call_expression] = STATE(1242), + [sym_field_expression] = STATE(1242), + [sym_compound_literal_expression] = STATE(1242), + [sym_parenthesized_expression] = STATE(1242), + [sym_char_literal] = STATE(1242), + [sym_concatenated_string] = STATE(1242), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3397), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3399), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3401), + [sym_false] = ACTIONS(3401), + [sym_null] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3401), [sym_comment] = ACTIONS(39), }, [1180] = { - [sym__expression] = STATE(1251), - [sym_conditional_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1251), - [sym_pointer_expression] = STATE(1251), - [sym_logical_expression] = STATE(1251), - [sym_bitwise_expression] = STATE(1251), - [sym_equality_expression] = STATE(1251), - [sym_relational_expression] = STATE(1251), - [sym_shift_expression] = STATE(1251), - [sym_math_expression] = STATE(1251), - [sym_cast_expression] = STATE(1251), - [sym_sizeof_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_call_expression] = STATE(1251), - [sym_field_expression] = STATE(1251), - [sym_compound_literal_expression] = STATE(1251), - [sym_parenthesized_expression] = STATE(1251), - [sym_char_literal] = STATE(1251), - [sym_concatenated_string] = STATE(1251), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3521), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3523), - [sym_false] = ACTIONS(3523), - [sym_null] = ACTIONS(3523), - [sym_identifier] = ACTIONS(3523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3182), + [sym_preproc_directive] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3182), + [anon_sym_extern] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_auto] = ACTIONS(3182), + [anon_sym_register] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_restrict] = ACTIONS(3182), + [anon_sym_volatile] = ACTIONS(3182), + [anon_sym__Atomic] = ACTIONS(3182), + [anon_sym_unsigned] = ACTIONS(3182), + [anon_sym_long] = ACTIONS(3182), + [anon_sym_short] = ACTIONS(3182), + [sym_primitive_type] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_union] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_case] = ACTIONS(3182), + [anon_sym_default] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_goto] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_sizeof] = ACTIONS(3182), + [sym_number_literal] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_identifier] = ACTIONS(3182), [sym_comment] = ACTIONS(39), }, [1181] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3525), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3186), + [sym_preproc_directive] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_typedef] = ACTIONS(3186), + [anon_sym_extern] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_auto] = ACTIONS(3186), + [anon_sym_register] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_restrict] = ACTIONS(3186), + [anon_sym_volatile] = ACTIONS(3186), + [anon_sym__Atomic] = ACTIONS(3186), + [anon_sym_unsigned] = ACTIONS(3186), + [anon_sym_long] = ACTIONS(3186), + [anon_sym_short] = ACTIONS(3186), + [sym_primitive_type] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), + [anon_sym_struct] = ACTIONS(3186), + [anon_sym_union] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_goto] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_sizeof] = ACTIONS(3186), + [sym_number_literal] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_identifier] = ACTIONS(3186), [sym_comment] = ACTIONS(39), }, [1182] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3527), - [anon_sym_LPAREN] = ACTIONS(3529), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3527), - [sym_preproc_directive] = ACTIONS(3527), - [anon_sym_SEMI] = ACTIONS(3529), - [anon_sym_typedef] = ACTIONS(3527), - [anon_sym_extern] = ACTIONS(3527), - [anon_sym_LBRACE] = ACTIONS(3529), - [anon_sym_RBRACE] = ACTIONS(3529), - [anon_sym_STAR] = ACTIONS(3529), - [anon_sym_static] = ACTIONS(3527), - [anon_sym_auto] = ACTIONS(3527), - [anon_sym_register] = ACTIONS(3527), - [anon_sym_inline] = ACTIONS(3527), - [anon_sym_const] = ACTIONS(3527), - [anon_sym_restrict] = ACTIONS(3527), - [anon_sym_volatile] = ACTIONS(3527), - [anon_sym__Atomic] = ACTIONS(3527), - [anon_sym_unsigned] = ACTIONS(3527), - [anon_sym_long] = ACTIONS(3527), - [anon_sym_short] = ACTIONS(3527), - [sym_primitive_type] = ACTIONS(3527), - [anon_sym_enum] = ACTIONS(3527), - [anon_sym_struct] = ACTIONS(3527), - [anon_sym_union] = ACTIONS(3527), - [anon_sym_if] = ACTIONS(3527), - [anon_sym_else] = ACTIONS(3527), - [anon_sym_switch] = ACTIONS(3527), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3527), - [anon_sym_while] = ACTIONS(3527), - [anon_sym_do] = ACTIONS(3527), - [anon_sym_for] = ACTIONS(3527), - [anon_sym_return] = ACTIONS(3527), - [anon_sym_break] = ACTIONS(3527), - [anon_sym_continue] = ACTIONS(3527), - [anon_sym_goto] = ACTIONS(3527), - [anon_sym_AMP] = ACTIONS(3529), - [anon_sym_BANG] = ACTIONS(3529), - [anon_sym_TILDE] = ACTIONS(3529), - [anon_sym_PLUS] = ACTIONS(3527), - [anon_sym_DASH] = ACTIONS(3527), - [anon_sym_DASH_DASH] = ACTIONS(3529), - [anon_sym_PLUS_PLUS] = ACTIONS(3529), - [anon_sym_sizeof] = ACTIONS(3527), - [sym_number_literal] = ACTIONS(3529), - [anon_sym_SQUOTE] = ACTIONS(3529), - [anon_sym_DQUOTE] = ACTIONS(3529), - [sym_true] = ACTIONS(3527), - [sym_false] = ACTIONS(3527), - [sym_null] = ACTIONS(3527), - [sym_identifier] = ACTIONS(3527), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3190), + [sym_preproc_directive] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3192), + [anon_sym_typedef] = ACTIONS(3190), + [anon_sym_extern] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_LPAREN2] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3190), + [anon_sym_auto] = ACTIONS(3190), + [anon_sym_register] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_const] = ACTIONS(3190), + [anon_sym_restrict] = ACTIONS(3190), + [anon_sym_volatile] = ACTIONS(3190), + [anon_sym__Atomic] = ACTIONS(3190), + [anon_sym_unsigned] = ACTIONS(3190), + [anon_sym_long] = ACTIONS(3190), + [anon_sym_short] = ACTIONS(3190), + [sym_primitive_type] = ACTIONS(3190), + [anon_sym_enum] = ACTIONS(3190), + [anon_sym_struct] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_switch] = ACTIONS(3190), + [anon_sym_case] = ACTIONS(3190), + [anon_sym_default] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_do] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_goto] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3192), + [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_DASH_DASH] = ACTIONS(3192), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_sizeof] = ACTIONS(3190), + [sym_number_literal] = ACTIONS(3192), + [anon_sym_SQUOTE] = ACTIONS(3192), + [anon_sym_DQUOTE] = ACTIONS(3192), + [sym_true] = ACTIONS(3190), + [sym_false] = ACTIONS(3190), + [sym_null] = ACTIONS(3190), + [sym_identifier] = ACTIONS(3190), [sym_comment] = ACTIONS(39), }, [1183] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3531), - [anon_sym_LPAREN] = ACTIONS(3533), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3531), - [sym_preproc_directive] = ACTIONS(3531), - [anon_sym_SEMI] = ACTIONS(3533), - [anon_sym_typedef] = ACTIONS(3531), - [anon_sym_extern] = ACTIONS(3531), - [anon_sym_LBRACE] = ACTIONS(3533), - [anon_sym_RBRACE] = ACTIONS(3533), - [anon_sym_STAR] = ACTIONS(3533), - [anon_sym_static] = ACTIONS(3531), - [anon_sym_auto] = ACTIONS(3531), - [anon_sym_register] = ACTIONS(3531), - [anon_sym_inline] = ACTIONS(3531), - [anon_sym_const] = ACTIONS(3531), - [anon_sym_restrict] = ACTIONS(3531), - [anon_sym_volatile] = ACTIONS(3531), - [anon_sym__Atomic] = ACTIONS(3531), - [anon_sym_unsigned] = ACTIONS(3531), - [anon_sym_long] = ACTIONS(3531), - [anon_sym_short] = ACTIONS(3531), - [sym_primitive_type] = ACTIONS(3531), - [anon_sym_enum] = ACTIONS(3531), - [anon_sym_struct] = ACTIONS(3531), - [anon_sym_union] = ACTIONS(3531), - [anon_sym_if] = ACTIONS(3531), - [anon_sym_else] = ACTIONS(3531), - [anon_sym_switch] = ACTIONS(3531), - [anon_sym_case] = ACTIONS(3531), - [anon_sym_default] = ACTIONS(3531), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(3531), - [anon_sym_for] = ACTIONS(3531), - [anon_sym_return] = ACTIONS(3531), - [anon_sym_break] = ACTIONS(3531), - [anon_sym_continue] = ACTIONS(3531), - [anon_sym_goto] = ACTIONS(3531), - [anon_sym_AMP] = ACTIONS(3533), - [anon_sym_BANG] = ACTIONS(3533), - [anon_sym_TILDE] = ACTIONS(3533), - [anon_sym_PLUS] = ACTIONS(3531), - [anon_sym_DASH] = ACTIONS(3531), - [anon_sym_DASH_DASH] = ACTIONS(3533), - [anon_sym_PLUS_PLUS] = ACTIONS(3533), - [anon_sym_sizeof] = ACTIONS(3531), - [sym_number_literal] = ACTIONS(3533), - [anon_sym_SQUOTE] = ACTIONS(3533), - [anon_sym_DQUOTE] = ACTIONS(3533), - [sym_true] = ACTIONS(3531), - [sym_false] = ACTIONS(3531), - [sym_null] = ACTIONS(3531), - [sym_identifier] = ACTIONS(3531), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3194), + [sym_preproc_directive] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3196), + [anon_sym_typedef] = ACTIONS(3194), + [anon_sym_extern] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3196), + [anon_sym_LPAREN2] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_auto] = ACTIONS(3194), + [anon_sym_register] = ACTIONS(3194), + [anon_sym_inline] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_restrict] = ACTIONS(3194), + [anon_sym_volatile] = ACTIONS(3194), + [anon_sym__Atomic] = ACTIONS(3194), + [anon_sym_unsigned] = ACTIONS(3194), + [anon_sym_long] = ACTIONS(3194), + [anon_sym_short] = ACTIONS(3194), + [sym_primitive_type] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), + [anon_sym_struct] = ACTIONS(3194), + [anon_sym_union] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_case] = ACTIONS(3194), + [anon_sym_default] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_goto] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3196), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_TILDE] = ACTIONS(3196), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3196), + [anon_sym_PLUS_PLUS] = ACTIONS(3196), + [anon_sym_sizeof] = ACTIONS(3194), + [sym_number_literal] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3196), + [anon_sym_DQUOTE] = ACTIONS(3196), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_identifier] = ACTIONS(3194), [sym_comment] = ACTIONS(39), }, [1184] = { - [sym_compound_statement] = STATE(1253), - [sym_labeled_statement] = STATE(1253), - [sym_expression_statement] = STATE(1253), - [sym_if_statement] = STATE(1253), - [sym_switch_statement] = STATE(1253), - [sym_case_statement] = STATE(1253), - [sym_while_statement] = STATE(1253), - [sym_do_statement] = STATE(1253), - [sym_for_statement] = STATE(1253), - [sym_return_statement] = STATE(1253), - [sym_break_statement] = STATE(1253), - [sym_continue_statement] = STATE(1253), - [sym_goto_statement] = STATE(1253), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1741), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3198), + [sym_preproc_directive] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_typedef] = ACTIONS(3198), + [anon_sym_extern] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_LPAREN2] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_auto] = ACTIONS(3198), + [anon_sym_register] = ACTIONS(3198), + [anon_sym_inline] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_restrict] = ACTIONS(3198), + [anon_sym_volatile] = ACTIONS(3198), + [anon_sym__Atomic] = ACTIONS(3198), + [anon_sym_unsigned] = ACTIONS(3198), + [anon_sym_long] = ACTIONS(3198), + [anon_sym_short] = ACTIONS(3198), + [sym_primitive_type] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_goto] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_sizeof] = ACTIONS(3198), + [sym_number_literal] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_identifier] = ACTIONS(3198), [sym_comment] = ACTIONS(39), }, [1185] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3535), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3202), + [sym_preproc_directive] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym_typedef] = ACTIONS(3202), + [anon_sym_extern] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_auto] = ACTIONS(3202), + [anon_sym_register] = ACTIONS(3202), + [anon_sym_inline] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_restrict] = ACTIONS(3202), + [anon_sym_volatile] = ACTIONS(3202), + [anon_sym__Atomic] = ACTIONS(3202), + [anon_sym_unsigned] = ACTIONS(3202), + [anon_sym_long] = ACTIONS(3202), + [anon_sym_short] = ACTIONS(3202), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_union] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_goto] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_sizeof] = ACTIONS(3202), + [sym_number_literal] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3204), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_null] = ACTIONS(3202), + [sym_identifier] = ACTIONS(3202), [sym_comment] = ACTIONS(39), }, [1186] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1255), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3535), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2765), + [sym_preproc_directive] = ACTIONS(2765), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_typedef] = ACTIONS(2765), + [anon_sym_extern] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_LPAREN2] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_auto] = ACTIONS(2765), + [anon_sym_register] = ACTIONS(2765), + [anon_sym_inline] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_restrict] = ACTIONS(2765), + [anon_sym_volatile] = ACTIONS(2765), + [anon_sym__Atomic] = ACTIONS(2765), + [anon_sym_unsigned] = ACTIONS(2765), + [anon_sym_long] = ACTIONS(2765), + [anon_sym_short] = ACTIONS(2765), + [sym_primitive_type] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_union] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_switch] = ACTIONS(2765), + [anon_sym_case] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_goto] = ACTIONS(2765), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(2765), + [sym_number_literal] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_null] = ACTIONS(2765), + [sym_identifier] = ACTIONS(2765), [sym_comment] = ACTIONS(39), }, [1187] = { - [sym__expression] = STATE(1256), - [sym_conditional_expression] = STATE(1256), - [sym_assignment_expression] = STATE(1256), - [sym_pointer_expression] = STATE(1256), - [sym_logical_expression] = STATE(1256), - [sym_bitwise_expression] = STATE(1256), - [sym_equality_expression] = STATE(1256), - [sym_relational_expression] = STATE(1256), - [sym_shift_expression] = STATE(1256), - [sym_math_expression] = STATE(1256), - [sym_cast_expression] = STATE(1256), - [sym_sizeof_expression] = STATE(1256), - [sym_subscript_expression] = STATE(1256), - [sym_call_expression] = STATE(1256), - [sym_field_expression] = STATE(1256), - [sym_compound_literal_expression] = STATE(1256), - [sym_parenthesized_expression] = STATE(1256), - [sym_char_literal] = STATE(1256), - [sym_concatenated_string] = STATE(1256), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3535), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3537), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3539), - [sym_false] = ACTIONS(3539), - [sym_null] = ACTIONS(3539), - [sym_identifier] = ACTIONS(3539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2769), + [sym_preproc_directive] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_LPAREN2] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_auto] = ACTIONS(2769), + [anon_sym_register] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_restrict] = ACTIONS(2769), + [anon_sym_volatile] = ACTIONS(2769), + [anon_sym__Atomic] = ACTIONS(2769), + [anon_sym_unsigned] = ACTIONS(2769), + [anon_sym_long] = ACTIONS(2769), + [anon_sym_short] = ACTIONS(2769), + [sym_primitive_type] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2769), + [anon_sym_union] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_switch] = ACTIONS(2769), + [anon_sym_case] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_goto] = ACTIONS(2769), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_sizeof] = ACTIONS(2769), + [sym_number_literal] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_null] = ACTIONS(2769), + [sym_identifier] = ACTIONS(2769), [sym_comment] = ACTIONS(39), }, [1188] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3276), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym_typedef] = ACTIONS(3274), - [anon_sym_extern] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_auto] = ACTIONS(3274), - [anon_sym_register] = ACTIONS(3274), - [anon_sym_inline] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_restrict] = ACTIONS(3274), - [anon_sym_volatile] = ACTIONS(3274), - [anon_sym__Atomic] = ACTIONS(3274), - [anon_sym_unsigned] = ACTIONS(3274), - [anon_sym_long] = ACTIONS(3274), - [anon_sym_short] = ACTIONS(3274), - [sym_primitive_type] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_goto] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_sizeof] = ACTIONS(3274), - [sym_number_literal] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_null] = ACTIONS(3274), - [sym_identifier] = ACTIONS(3274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2773), + [sym_preproc_directive] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_auto] = ACTIONS(2773), + [anon_sym_register] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_restrict] = ACTIONS(2773), + [anon_sym_volatile] = ACTIONS(2773), + [anon_sym__Atomic] = ACTIONS(2773), + [anon_sym_unsigned] = ACTIONS(2773), + [anon_sym_long] = ACTIONS(2773), + [anon_sym_short] = ACTIONS(2773), + [sym_primitive_type] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_goto] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2773), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), + [sym_identifier] = ACTIONS(2773), [sym_comment] = ACTIONS(39), }, [1189] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3280), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3278), - [sym_preproc_directive] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_typedef] = ACTIONS(3278), - [anon_sym_extern] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_auto] = ACTIONS(3278), - [anon_sym_register] = ACTIONS(3278), - [anon_sym_inline] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_restrict] = ACTIONS(3278), - [anon_sym_volatile] = ACTIONS(3278), - [anon_sym__Atomic] = ACTIONS(3278), - [anon_sym_unsigned] = ACTIONS(3278), - [anon_sym_long] = ACTIONS(3278), - [anon_sym_short] = ACTIONS(3278), - [sym_primitive_type] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_union] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3278), - [anon_sym_default] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_goto] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_sizeof] = ACTIONS(3278), - [sym_number_literal] = ACTIONS(3280), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_null] = ACTIONS(3278), - [sym_identifier] = ACTIONS(3278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3403), [sym_comment] = ACTIONS(39), }, [1190] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3284), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3282), - [sym_preproc_directive] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_typedef] = ACTIONS(3282), - [anon_sym_extern] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_auto] = ACTIONS(3282), - [anon_sym_register] = ACTIONS(3282), - [anon_sym_inline] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_restrict] = ACTIONS(3282), - [anon_sym_volatile] = ACTIONS(3282), - [anon_sym__Atomic] = ACTIONS(3282), - [anon_sym_unsigned] = ACTIONS(3282), - [anon_sym_long] = ACTIONS(3282), - [anon_sym_short] = ACTIONS(3282), - [sym_primitive_type] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), - [anon_sym_struct] = ACTIONS(3282), - [anon_sym_union] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_case] = ACTIONS(3282), - [anon_sym_default] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_goto] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_sizeof] = ACTIONS(3282), - [sym_number_literal] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [sym_null] = ACTIONS(3282), - [sym_identifier] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3405), [sym_comment] = ACTIONS(39), }, [1191] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3288), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_auto] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_sizeof] = ACTIONS(3286), - [sym_number_literal] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_identifier] = ACTIONS(3286), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2852), + [sym_preproc_directive] = ACTIONS(2852), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_typedef] = ACTIONS(2852), + [anon_sym_extern] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2854), + [anon_sym_LPAREN2] = ACTIONS(2854), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_static] = ACTIONS(2852), + [anon_sym_auto] = ACTIONS(2852), + [anon_sym_register] = ACTIONS(2852), + [anon_sym_inline] = ACTIONS(2852), + [anon_sym_const] = ACTIONS(2852), + [anon_sym_restrict] = ACTIONS(2852), + [anon_sym_volatile] = ACTIONS(2852), + [anon_sym__Atomic] = ACTIONS(2852), + [anon_sym_unsigned] = ACTIONS(2852), + [anon_sym_long] = ACTIONS(2852), + [anon_sym_short] = ACTIONS(2852), + [sym_primitive_type] = ACTIONS(2852), + [anon_sym_enum] = ACTIONS(2852), + [anon_sym_struct] = ACTIONS(2852), + [anon_sym_union] = ACTIONS(2852), + [anon_sym_if] = ACTIONS(2852), + [anon_sym_switch] = ACTIONS(2852), + [anon_sym_case] = ACTIONS(2852), + [anon_sym_default] = ACTIONS(2852), + [anon_sym_while] = ACTIONS(2852), + [anon_sym_do] = ACTIONS(2852), + [anon_sym_for] = ACTIONS(2852), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_break] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2852), + [anon_sym_goto] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2854), + [anon_sym_BANG] = ACTIONS(2854), + [anon_sym_TILDE] = ACTIONS(2854), + [anon_sym_PLUS] = ACTIONS(2852), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_DASH_DASH] = ACTIONS(2854), + [anon_sym_PLUS_PLUS] = ACTIONS(2854), + [anon_sym_sizeof] = ACTIONS(2852), + [sym_number_literal] = ACTIONS(2854), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_DQUOTE] = ACTIONS(2854), + [sym_true] = ACTIONS(2852), + [sym_false] = ACTIONS(2852), + [sym_null] = ACTIONS(2852), + [sym_identifier] = ACTIONS(2852), [sym_comment] = ACTIONS(39), }, [1192] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3290), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3290), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3290), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3290), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3290), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3290), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3290), - [sym_preproc_directive] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_typedef] = ACTIONS(3290), - [anon_sym_extern] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3290), - [anon_sym_auto] = ACTIONS(3290), - [anon_sym_register] = ACTIONS(3290), - [anon_sym_inline] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_restrict] = ACTIONS(3290), - [anon_sym_volatile] = ACTIONS(3290), - [anon_sym__Atomic] = ACTIONS(3290), - [anon_sym_unsigned] = ACTIONS(3290), - [anon_sym_long] = ACTIONS(3290), - [anon_sym_short] = ACTIONS(3290), - [sym_primitive_type] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), - [anon_sym_struct] = ACTIONS(3290), - [anon_sym_union] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3290), - [anon_sym_default] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_goto] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_sizeof] = ACTIONS(3290), - [sym_number_literal] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [sym_null] = ACTIONS(3290), - [sym_identifier] = ACTIONS(3290), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2856), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2856), + [sym_preproc_directive] = ACTIONS(2856), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_typedef] = ACTIONS(2856), + [anon_sym_extern] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2858), + [anon_sym_LPAREN2] = ACTIONS(2858), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_auto] = ACTIONS(2856), + [anon_sym_register] = ACTIONS(2856), + [anon_sym_inline] = ACTIONS(2856), + [anon_sym_const] = ACTIONS(2856), + [anon_sym_restrict] = ACTIONS(2856), + [anon_sym_volatile] = ACTIONS(2856), + [anon_sym__Atomic] = ACTIONS(2856), + [anon_sym_unsigned] = ACTIONS(2856), + [anon_sym_long] = ACTIONS(2856), + [anon_sym_short] = ACTIONS(2856), + [sym_primitive_type] = ACTIONS(2856), + [anon_sym_enum] = ACTIONS(2856), + [anon_sym_struct] = ACTIONS(2856), + [anon_sym_union] = ACTIONS(2856), + [anon_sym_if] = ACTIONS(2856), + [anon_sym_switch] = ACTIONS(2856), + [anon_sym_case] = ACTIONS(2856), + [anon_sym_default] = ACTIONS(2856), + [anon_sym_while] = ACTIONS(2856), + [anon_sym_do] = ACTIONS(2856), + [anon_sym_for] = ACTIONS(2856), + [anon_sym_return] = ACTIONS(2856), + [anon_sym_break] = ACTIONS(2856), + [anon_sym_continue] = ACTIONS(2856), + [anon_sym_goto] = ACTIONS(2856), + [anon_sym_AMP] = ACTIONS(2858), + [anon_sym_BANG] = ACTIONS(2858), + [anon_sym_TILDE] = ACTIONS(2858), + [anon_sym_PLUS] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_DASH_DASH] = ACTIONS(2858), + [anon_sym_PLUS_PLUS] = ACTIONS(2858), + [anon_sym_sizeof] = ACTIONS(2856), + [sym_number_literal] = ACTIONS(2858), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_DQUOTE] = ACTIONS(2858), + [sym_true] = ACTIONS(2856), + [sym_false] = ACTIONS(2856), + [sym_null] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2856), [sym_comment] = ACTIONS(39), }, [1193] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3296), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3294), - [sym_preproc_directive] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_auto] = ACTIONS(3294), - [anon_sym_register] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_restrict] = ACTIONS(3294), - [anon_sym_volatile] = ACTIONS(3294), - [anon_sym__Atomic] = ACTIONS(3294), - [anon_sym_unsigned] = ACTIONS(3294), - [anon_sym_long] = ACTIONS(3294), - [anon_sym_short] = ACTIONS(3294), - [sym_primitive_type] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_goto] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_sizeof] = ACTIONS(3294), - [sym_number_literal] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2860), + [sym_preproc_directive] = ACTIONS(2860), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_typedef] = ACTIONS(2860), + [anon_sym_extern] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2862), + [anon_sym_LPAREN2] = ACTIONS(2862), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_static] = ACTIONS(2860), + [anon_sym_auto] = ACTIONS(2860), + [anon_sym_register] = ACTIONS(2860), + [anon_sym_inline] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2860), + [anon_sym_restrict] = ACTIONS(2860), + [anon_sym_volatile] = ACTIONS(2860), + [anon_sym__Atomic] = ACTIONS(2860), + [anon_sym_unsigned] = ACTIONS(2860), + [anon_sym_long] = ACTIONS(2860), + [anon_sym_short] = ACTIONS(2860), + [sym_primitive_type] = ACTIONS(2860), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_struct] = ACTIONS(2860), + [anon_sym_union] = ACTIONS(2860), + [anon_sym_if] = ACTIONS(2860), + [anon_sym_switch] = ACTIONS(2860), + [anon_sym_case] = ACTIONS(2860), + [anon_sym_default] = ACTIONS(2860), + [anon_sym_while] = ACTIONS(2860), + [anon_sym_do] = ACTIONS(2860), + [anon_sym_for] = ACTIONS(2860), + [anon_sym_return] = ACTIONS(2860), + [anon_sym_break] = ACTIONS(2860), + [anon_sym_continue] = ACTIONS(2860), + [anon_sym_goto] = ACTIONS(2860), + [anon_sym_AMP] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(2862), + [anon_sym_TILDE] = ACTIONS(2862), + [anon_sym_PLUS] = ACTIONS(2860), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_DASH_DASH] = ACTIONS(2862), + [anon_sym_PLUS_PLUS] = ACTIONS(2862), + [anon_sym_sizeof] = ACTIONS(2860), + [sym_number_literal] = ACTIONS(2862), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_DQUOTE] = ACTIONS(2862), + [sym_true] = ACTIONS(2860), + [sym_false] = ACTIONS(2860), + [sym_null] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2860), [sym_comment] = ACTIONS(39), }, [1194] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2827), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2829), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2827), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2827), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2827), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2827), - [sym_preproc_directive] = ACTIONS(2827), - [anon_sym_SEMI] = ACTIONS(2829), - [anon_sym_typedef] = ACTIONS(2827), - [anon_sym_extern] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2829), - [anon_sym_STAR] = ACTIONS(2829), - [anon_sym_static] = ACTIONS(2827), - [anon_sym_auto] = ACTIONS(2827), - [anon_sym_register] = ACTIONS(2827), - [anon_sym_inline] = ACTIONS(2827), - [anon_sym_const] = ACTIONS(2827), - [anon_sym_restrict] = ACTIONS(2827), - [anon_sym_volatile] = ACTIONS(2827), - [anon_sym__Atomic] = ACTIONS(2827), - [anon_sym_unsigned] = ACTIONS(2827), - [anon_sym_long] = ACTIONS(2827), - [anon_sym_short] = ACTIONS(2827), - [sym_primitive_type] = ACTIONS(2827), - [anon_sym_enum] = ACTIONS(2827), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_union] = ACTIONS(2827), - [anon_sym_if] = ACTIONS(2827), - [anon_sym_switch] = ACTIONS(2827), - [anon_sym_case] = ACTIONS(2827), - [anon_sym_default] = ACTIONS(2827), - [anon_sym_while] = ACTIONS(2827), - [anon_sym_do] = ACTIONS(2827), - [anon_sym_for] = ACTIONS(2827), - [anon_sym_return] = ACTIONS(2827), - [anon_sym_break] = ACTIONS(2827), - [anon_sym_continue] = ACTIONS(2827), - [anon_sym_goto] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2829), - [anon_sym_BANG] = ACTIONS(2829), - [anon_sym_TILDE] = ACTIONS(2829), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_DASH_DASH] = ACTIONS(2829), - [anon_sym_PLUS_PLUS] = ACTIONS(2829), - [anon_sym_sizeof] = ACTIONS(2827), - [sym_number_literal] = ACTIONS(2829), - [anon_sym_SQUOTE] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(2829), - [sym_true] = ACTIONS(2827), - [sym_false] = ACTIONS(2827), - [sym_null] = ACTIONS(2827), - [sym_identifier] = ACTIONS(2827), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3407), [sym_comment] = ACTIONS(39), }, [1195] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2833), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2831), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2831), - [sym_preproc_directive] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2833), - [anon_sym_typedef] = ACTIONS(2831), - [anon_sym_extern] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2833), - [anon_sym_STAR] = ACTIONS(2833), - [anon_sym_static] = ACTIONS(2831), - [anon_sym_auto] = ACTIONS(2831), - [anon_sym_register] = ACTIONS(2831), - [anon_sym_inline] = ACTIONS(2831), - [anon_sym_const] = ACTIONS(2831), - [anon_sym_restrict] = ACTIONS(2831), - [anon_sym_volatile] = ACTIONS(2831), - [anon_sym__Atomic] = ACTIONS(2831), - [anon_sym_unsigned] = ACTIONS(2831), - [anon_sym_long] = ACTIONS(2831), - [anon_sym_short] = ACTIONS(2831), - [sym_primitive_type] = ACTIONS(2831), - [anon_sym_enum] = ACTIONS(2831), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_union] = ACTIONS(2831), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_switch] = ACTIONS(2831), - [anon_sym_case] = ACTIONS(2831), - [anon_sym_default] = ACTIONS(2831), - [anon_sym_while] = ACTIONS(2831), - [anon_sym_do] = ACTIONS(2831), - [anon_sym_for] = ACTIONS(2831), - [anon_sym_return] = ACTIONS(2831), - [anon_sym_break] = ACTIONS(2831), - [anon_sym_continue] = ACTIONS(2831), - [anon_sym_goto] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2833), - [anon_sym_TILDE] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_DASH_DASH] = ACTIONS(2833), - [anon_sym_PLUS_PLUS] = ACTIONS(2833), - [anon_sym_sizeof] = ACTIONS(2831), - [sym_number_literal] = ACTIONS(2833), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [sym_null] = ACTIONS(2831), - [sym_identifier] = ACTIONS(2831), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3409), [sym_comment] = ACTIONS(39), }, [1196] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2835), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2837), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2835), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2835), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2835), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2835), - [sym_preproc_directive] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_typedef] = ACTIONS(2835), - [anon_sym_extern] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_STAR] = ACTIONS(2837), - [anon_sym_static] = ACTIONS(2835), - [anon_sym_auto] = ACTIONS(2835), - [anon_sym_register] = ACTIONS(2835), - [anon_sym_inline] = ACTIONS(2835), - [anon_sym_const] = ACTIONS(2835), - [anon_sym_restrict] = ACTIONS(2835), - [anon_sym_volatile] = ACTIONS(2835), - [anon_sym__Atomic] = ACTIONS(2835), - [anon_sym_unsigned] = ACTIONS(2835), - [anon_sym_long] = ACTIONS(2835), - [anon_sym_short] = ACTIONS(2835), - [sym_primitive_type] = ACTIONS(2835), - [anon_sym_enum] = ACTIONS(2835), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_union] = ACTIONS(2835), - [anon_sym_if] = ACTIONS(2835), - [anon_sym_switch] = ACTIONS(2835), - [anon_sym_case] = ACTIONS(2835), - [anon_sym_default] = ACTIONS(2835), - [anon_sym_while] = ACTIONS(2835), - [anon_sym_do] = ACTIONS(2835), - [anon_sym_for] = ACTIONS(2835), - [anon_sym_return] = ACTIONS(2835), - [anon_sym_break] = ACTIONS(2835), - [anon_sym_continue] = ACTIONS(2835), - [anon_sym_goto] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_DASH_DASH] = ACTIONS(2837), - [anon_sym_PLUS_PLUS] = ACTIONS(2837), - [anon_sym_sizeof] = ACTIONS(2835), - [sym_number_literal] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_true] = ACTIONS(2835), - [sym_false] = ACTIONS(2835), - [sym_null] = ACTIONS(2835), - [sym_identifier] = ACTIONS(2835), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2868), + [sym_preproc_directive] = ACTIONS(2868), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_typedef] = ACTIONS(2868), + [anon_sym_extern] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2870), + [anon_sym_LPAREN2] = ACTIONS(2870), + [anon_sym_STAR] = ACTIONS(2870), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_auto] = ACTIONS(2868), + [anon_sym_register] = ACTIONS(2868), + [anon_sym_inline] = ACTIONS(2868), + [anon_sym_const] = ACTIONS(2868), + [anon_sym_restrict] = ACTIONS(2868), + [anon_sym_volatile] = ACTIONS(2868), + [anon_sym__Atomic] = ACTIONS(2868), + [anon_sym_unsigned] = ACTIONS(2868), + [anon_sym_long] = ACTIONS(2868), + [anon_sym_short] = ACTIONS(2868), + [sym_primitive_type] = ACTIONS(2868), + [anon_sym_enum] = ACTIONS(2868), + [anon_sym_struct] = ACTIONS(2868), + [anon_sym_union] = ACTIONS(2868), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_switch] = ACTIONS(2868), + [anon_sym_case] = ACTIONS(2868), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_while] = ACTIONS(2868), + [anon_sym_do] = ACTIONS(2868), + [anon_sym_for] = ACTIONS(2868), + [anon_sym_return] = ACTIONS(2868), + [anon_sym_break] = ACTIONS(2868), + [anon_sym_continue] = ACTIONS(2868), + [anon_sym_goto] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2870), + [anon_sym_BANG] = ACTIONS(2870), + [anon_sym_TILDE] = ACTIONS(2870), + [anon_sym_PLUS] = ACTIONS(2868), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_DASH_DASH] = ACTIONS(2870), + [anon_sym_PLUS_PLUS] = ACTIONS(2870), + [anon_sym_sizeof] = ACTIONS(2868), + [sym_number_literal] = ACTIONS(2870), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [sym_true] = ACTIONS(2868), + [sym_false] = ACTIONS(2868), + [sym_null] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2868), [sym_comment] = ACTIONS(39), }, [1197] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2872), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2872), + [sym_preproc_directive] = ACTIONS(2872), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym_typedef] = ACTIONS(2872), + [anon_sym_extern] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2874), + [anon_sym_LPAREN2] = ACTIONS(2874), + [anon_sym_STAR] = ACTIONS(2874), + [anon_sym_static] = ACTIONS(2872), + [anon_sym_auto] = ACTIONS(2872), + [anon_sym_register] = ACTIONS(2872), + [anon_sym_inline] = ACTIONS(2872), + [anon_sym_const] = ACTIONS(2872), + [anon_sym_restrict] = ACTIONS(2872), + [anon_sym_volatile] = ACTIONS(2872), + [anon_sym__Atomic] = ACTIONS(2872), + [anon_sym_unsigned] = ACTIONS(2872), + [anon_sym_long] = ACTIONS(2872), + [anon_sym_short] = ACTIONS(2872), + [sym_primitive_type] = ACTIONS(2872), + [anon_sym_enum] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2872), + [anon_sym_union] = ACTIONS(2872), + [anon_sym_if] = ACTIONS(2872), + [anon_sym_switch] = ACTIONS(2872), + [anon_sym_case] = ACTIONS(2872), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2872), + [anon_sym_do] = ACTIONS(2872), + [anon_sym_for] = ACTIONS(2872), + [anon_sym_return] = ACTIONS(2872), + [anon_sym_break] = ACTIONS(2872), + [anon_sym_continue] = ACTIONS(2872), + [anon_sym_goto] = ACTIONS(2872), + [anon_sym_AMP] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(2874), + [anon_sym_TILDE] = ACTIONS(2874), + [anon_sym_PLUS] = ACTIONS(2872), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_DASH_DASH] = ACTIONS(2874), + [anon_sym_PLUS_PLUS] = ACTIONS(2874), + [anon_sym_sizeof] = ACTIONS(2872), + [sym_number_literal] = ACTIONS(2874), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_DQUOTE] = ACTIONS(2874), + [sym_true] = ACTIONS(2872), + [sym_false] = ACTIONS(2872), + [sym_null] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2872), [sym_comment] = ACTIONS(39), }, [1198] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2876), + [sym_preproc_directive] = ACTIONS(2876), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_typedef] = ACTIONS(2876), + [anon_sym_extern] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2878), + [anon_sym_LPAREN2] = ACTIONS(2878), + [anon_sym_STAR] = ACTIONS(2878), + [anon_sym_static] = ACTIONS(2876), + [anon_sym_auto] = ACTIONS(2876), + [anon_sym_register] = ACTIONS(2876), + [anon_sym_inline] = ACTIONS(2876), + [anon_sym_const] = ACTIONS(2876), + [anon_sym_restrict] = ACTIONS(2876), + [anon_sym_volatile] = ACTIONS(2876), + [anon_sym__Atomic] = ACTIONS(2876), + [anon_sym_unsigned] = ACTIONS(2876), + [anon_sym_long] = ACTIONS(2876), + [anon_sym_short] = ACTIONS(2876), + [sym_primitive_type] = ACTIONS(2876), + [anon_sym_enum] = ACTIONS(2876), + [anon_sym_struct] = ACTIONS(2876), + [anon_sym_union] = ACTIONS(2876), + [anon_sym_if] = ACTIONS(2876), + [anon_sym_switch] = ACTIONS(2876), + [anon_sym_case] = ACTIONS(2876), + [anon_sym_default] = ACTIONS(2876), + [anon_sym_while] = ACTIONS(2876), + [anon_sym_do] = ACTIONS(2876), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2876), + [anon_sym_continue] = ACTIONS(2876), + [anon_sym_goto] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2878), + [anon_sym_BANG] = ACTIONS(2878), + [anon_sym_TILDE] = ACTIONS(2878), + [anon_sym_PLUS] = ACTIONS(2876), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_DASH_DASH] = ACTIONS(2878), + [anon_sym_PLUS_PLUS] = ACTIONS(2878), + [anon_sym_sizeof] = ACTIONS(2876), + [sym_number_literal] = ACTIONS(2878), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [sym_true] = ACTIONS(2876), + [sym_false] = ACTIONS(2876), + [sym_null] = ACTIONS(2876), + [sym_identifier] = ACTIONS(2876), [sym_comment] = ACTIONS(39), }, [1199] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2914), - [anon_sym_LPAREN] = ACTIONS(2916), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2914), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2914), - [sym_preproc_directive] = ACTIONS(2914), - [anon_sym_SEMI] = ACTIONS(2916), - [anon_sym_typedef] = ACTIONS(2914), - [anon_sym_extern] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_STAR] = ACTIONS(2916), - [anon_sym_static] = ACTIONS(2914), - [anon_sym_auto] = ACTIONS(2914), - [anon_sym_register] = ACTIONS(2914), - [anon_sym_inline] = ACTIONS(2914), - [anon_sym_const] = ACTIONS(2914), - [anon_sym_restrict] = ACTIONS(2914), - [anon_sym_volatile] = ACTIONS(2914), - [anon_sym__Atomic] = ACTIONS(2914), - [anon_sym_unsigned] = ACTIONS(2914), - [anon_sym_long] = ACTIONS(2914), - [anon_sym_short] = ACTIONS(2914), - [sym_primitive_type] = ACTIONS(2914), - [anon_sym_enum] = ACTIONS(2914), - [anon_sym_struct] = ACTIONS(2914), - [anon_sym_union] = ACTIONS(2914), - [anon_sym_if] = ACTIONS(2914), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2914), - [anon_sym_default] = ACTIONS(2914), - [anon_sym_while] = ACTIONS(2914), - [anon_sym_do] = ACTIONS(2914), - [anon_sym_for] = ACTIONS(2914), - [anon_sym_return] = ACTIONS(2914), - [anon_sym_break] = ACTIONS(2914), - [anon_sym_continue] = ACTIONS(2914), - [anon_sym_goto] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2916), - [anon_sym_BANG] = ACTIONS(2916), - [anon_sym_TILDE] = ACTIONS(2916), - [anon_sym_PLUS] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2914), - [anon_sym_DASH_DASH] = ACTIONS(2916), - [anon_sym_PLUS_PLUS] = ACTIONS(2916), - [anon_sym_sizeof] = ACTIONS(2914), - [sym_number_literal] = ACTIONS(2916), - [anon_sym_SQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2914), - [sym_false] = ACTIONS(2914), - [sym_null] = ACTIONS(2914), - [sym_identifier] = ACTIONS(2914), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3411), [sym_comment] = ACTIONS(39), }, [1200] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2918), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2918), - [anon_sym_LPAREN] = ACTIONS(2920), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2918), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2918), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2918), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2918), - [sym_preproc_directive] = ACTIONS(2918), - [anon_sym_SEMI] = ACTIONS(2920), - [anon_sym_typedef] = ACTIONS(2918), - [anon_sym_extern] = ACTIONS(2918), - [anon_sym_LBRACE] = ACTIONS(2920), - [anon_sym_STAR] = ACTIONS(2920), - [anon_sym_static] = ACTIONS(2918), - [anon_sym_auto] = ACTIONS(2918), - [anon_sym_register] = ACTIONS(2918), - [anon_sym_inline] = ACTIONS(2918), - [anon_sym_const] = ACTIONS(2918), - [anon_sym_restrict] = ACTIONS(2918), - [anon_sym_volatile] = ACTIONS(2918), - [anon_sym__Atomic] = ACTIONS(2918), - [anon_sym_unsigned] = ACTIONS(2918), - [anon_sym_long] = ACTIONS(2918), - [anon_sym_short] = ACTIONS(2918), - [sym_primitive_type] = ACTIONS(2918), - [anon_sym_enum] = ACTIONS(2918), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_union] = ACTIONS(2918), - [anon_sym_if] = ACTIONS(2918), - [anon_sym_switch] = ACTIONS(2918), - [anon_sym_case] = ACTIONS(2918), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2918), - [anon_sym_do] = ACTIONS(2918), - [anon_sym_for] = ACTIONS(2918), - [anon_sym_return] = ACTIONS(2918), - [anon_sym_break] = ACTIONS(2918), - [anon_sym_continue] = ACTIONS(2918), - [anon_sym_goto] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2920), - [anon_sym_BANG] = ACTIONS(2920), - [anon_sym_TILDE] = ACTIONS(2920), - [anon_sym_PLUS] = ACTIONS(2918), - [anon_sym_DASH] = ACTIONS(2918), - [anon_sym_DASH_DASH] = ACTIONS(2920), - [anon_sym_PLUS_PLUS] = ACTIONS(2920), - [anon_sym_sizeof] = ACTIONS(2918), - [sym_number_literal] = ACTIONS(2920), - [anon_sym_SQUOTE] = ACTIONS(2920), - [anon_sym_DQUOTE] = ACTIONS(2920), - [sym_true] = ACTIONS(2918), - [sym_false] = ACTIONS(2918), - [sym_null] = ACTIONS(2918), - [sym_identifier] = ACTIONS(2918), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3413), [sym_comment] = ACTIONS(39), }, [1201] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2922), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2924), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2922), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2922), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2922), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2922), - [sym_preproc_directive] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2924), - [anon_sym_typedef] = ACTIONS(2922), - [anon_sym_extern] = ACTIONS(2922), - [anon_sym_LBRACE] = ACTIONS(2924), - [anon_sym_STAR] = ACTIONS(2924), - [anon_sym_static] = ACTIONS(2922), - [anon_sym_auto] = ACTIONS(2922), - [anon_sym_register] = ACTIONS(2922), - [anon_sym_inline] = ACTIONS(2922), - [anon_sym_const] = ACTIONS(2922), - [anon_sym_restrict] = ACTIONS(2922), - [anon_sym_volatile] = ACTIONS(2922), - [anon_sym__Atomic] = ACTIONS(2922), - [anon_sym_unsigned] = ACTIONS(2922), - [anon_sym_long] = ACTIONS(2922), - [anon_sym_short] = ACTIONS(2922), - [sym_primitive_type] = ACTIONS(2922), - [anon_sym_enum] = ACTIONS(2922), - [anon_sym_struct] = ACTIONS(2922), - [anon_sym_union] = ACTIONS(2922), - [anon_sym_if] = ACTIONS(2922), - [anon_sym_switch] = ACTIONS(2922), - [anon_sym_case] = ACTIONS(2922), - [anon_sym_default] = ACTIONS(2922), - [anon_sym_while] = ACTIONS(2922), - [anon_sym_do] = ACTIONS(2922), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(2922), - [anon_sym_break] = ACTIONS(2922), - [anon_sym_continue] = ACTIONS(2922), - [anon_sym_goto] = ACTIONS(2922), - [anon_sym_AMP] = ACTIONS(2924), - [anon_sym_BANG] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2924), - [anon_sym_PLUS] = ACTIONS(2922), - [anon_sym_DASH] = ACTIONS(2922), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_sizeof] = ACTIONS(2922), - [sym_number_literal] = ACTIONS(2924), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(2924), - [sym_true] = ACTIONS(2922), - [sym_false] = ACTIONS(2922), - [sym_null] = ACTIONS(2922), - [sym_identifier] = ACTIONS(2922), + [sym_compound_statement] = STATE(1249), + [sym_labeled_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_if_statement] = STATE(1249), + [sym_switch_statement] = STATE(1249), + [sym_case_statement] = STATE(1249), + [sym_while_statement] = STATE(1249), + [sym_do_statement] = STATE(1249), + [sym_for_statement] = STATE(1249), + [sym_return_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_goto_statement] = STATE(1249), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3057), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3065), [sym_comment] = ACTIONS(39), }, [1202] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3545), + [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(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3057), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3065), [sym_comment] = ACTIONS(39), }, [1203] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3547), + [sym_argument_list] = STATE(465), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_COLON] = ACTIONS(3415), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_STAR_EQ] = ACTIONS(1628), + [anon_sym_SLASH_EQ] = ACTIONS(1628), + [anon_sym_PERCENT_EQ] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LT_LT_EQ] = ACTIONS(1628), + [anon_sym_GT_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP_EQ] = ACTIONS(1628), + [anon_sym_CARET_EQ] = ACTIONS(1628), + [anon_sym_PIPE_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_PIPE_PIPE] = ACTIONS(1632), + [anon_sym_AMP_AMP] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1640), + [anon_sym_BANG_EQ] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_LT_EQ] = ACTIONS(1644), + [anon_sym_GT_EQ] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1204] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2930), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2932), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2930), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2930), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2930), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2930), - [sym_preproc_directive] = ACTIONS(2930), - [anon_sym_SEMI] = ACTIONS(2932), - [anon_sym_typedef] = ACTIONS(2930), - [anon_sym_extern] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2932), - [anon_sym_STAR] = ACTIONS(2932), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_auto] = ACTIONS(2930), - [anon_sym_register] = ACTIONS(2930), - [anon_sym_inline] = ACTIONS(2930), - [anon_sym_const] = ACTIONS(2930), - [anon_sym_restrict] = ACTIONS(2930), - [anon_sym_volatile] = ACTIONS(2930), - [anon_sym__Atomic] = ACTIONS(2930), - [anon_sym_unsigned] = ACTIONS(2930), - [anon_sym_long] = ACTIONS(2930), - [anon_sym_short] = ACTIONS(2930), - [sym_primitive_type] = ACTIONS(2930), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_union] = ACTIONS(2930), - [anon_sym_if] = ACTIONS(2930), - [anon_sym_switch] = ACTIONS(2930), - [anon_sym_case] = ACTIONS(2930), - [anon_sym_default] = ACTIONS(2930), - [anon_sym_while] = ACTIONS(2930), - [anon_sym_do] = ACTIONS(2930), - [anon_sym_for] = ACTIONS(2930), - [anon_sym_return] = ACTIONS(2930), - [anon_sym_break] = ACTIONS(2930), - [anon_sym_continue] = ACTIONS(2930), - [anon_sym_goto] = ACTIONS(2930), - [anon_sym_AMP] = ACTIONS(2932), - [anon_sym_BANG] = ACTIONS(2932), - [anon_sym_TILDE] = ACTIONS(2932), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(2932), - [anon_sym_PLUS_PLUS] = ACTIONS(2932), - [anon_sym_sizeof] = ACTIONS(2930), - [sym_number_literal] = ACTIONS(2932), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2932), - [sym_true] = ACTIONS(2930), - [sym_false] = ACTIONS(2930), - [sym_null] = ACTIONS(2930), - [sym_identifier] = ACTIONS(2930), + [sym_declaration] = STATE(1135), + [sym_type_definition] = STATE(1135), + [sym__declaration_specifiers] = STATE(1136), + [sym_compound_statement] = STATE(1135), + [sym_storage_class_specifier] = STATE(96), + [sym_type_qualifier] = STATE(96), + [sym__type_specifier] = STATE(95), + [sym_sized_type_specifier] = STATE(95), + [sym_enum_specifier] = STATE(95), + [sym_struct_specifier] = STATE(95), + [sym_union_specifier] = STATE(95), + [sym_labeled_statement] = STATE(1135), + [sym_expression_statement] = STATE(1135), + [sym_if_statement] = STATE(1135), + [sym_switch_statement] = STATE(1135), + [sym_case_statement] = STATE(1135), + [sym_while_statement] = STATE(1135), + [sym_do_statement] = STATE(1135), + [sym_for_statement] = STATE(1135), + [sym_return_statement] = STATE(1135), + [sym_break_statement] = STATE(1135), + [sym_continue_statement] = STATE(1135), + [sym_goto_statement] = STATE(1135), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [sym_macro_type_specifier] = STATE(95), + [aux_sym__declaration_specifiers_repeat1] = STATE(96), + [aux_sym_sized_type_specifier_repeat1] = STATE(97), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_typedef] = ACTIONS(380), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_long] = ACTIONS(177), + [anon_sym_short] = ACTIONS(177), + [sym_primitive_type] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3057), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3417), [sym_comment] = ACTIONS(39), }, [1205] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2934), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2934), - [anon_sym_LPAREN] = ACTIONS(2936), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2934), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2934), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2934), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2934), - [sym_preproc_directive] = ACTIONS(2934), - [anon_sym_SEMI] = ACTIONS(2936), - [anon_sym_typedef] = ACTIONS(2934), - [anon_sym_extern] = ACTIONS(2934), - [anon_sym_LBRACE] = ACTIONS(2936), - [anon_sym_STAR] = ACTIONS(2936), - [anon_sym_static] = ACTIONS(2934), - [anon_sym_auto] = ACTIONS(2934), - [anon_sym_register] = ACTIONS(2934), - [anon_sym_inline] = ACTIONS(2934), - [anon_sym_const] = ACTIONS(2934), - [anon_sym_restrict] = ACTIONS(2934), - [anon_sym_volatile] = ACTIONS(2934), - [anon_sym__Atomic] = ACTIONS(2934), - [anon_sym_unsigned] = ACTIONS(2934), - [anon_sym_long] = ACTIONS(2934), - [anon_sym_short] = ACTIONS(2934), - [sym_primitive_type] = ACTIONS(2934), - [anon_sym_enum] = ACTIONS(2934), - [anon_sym_struct] = ACTIONS(2934), - [anon_sym_union] = ACTIONS(2934), - [anon_sym_if] = ACTIONS(2934), - [anon_sym_switch] = ACTIONS(2934), - [anon_sym_case] = ACTIONS(2934), - [anon_sym_default] = ACTIONS(2934), - [anon_sym_while] = ACTIONS(2934), - [anon_sym_do] = ACTIONS(2934), - [anon_sym_for] = ACTIONS(2934), - [anon_sym_return] = ACTIONS(2934), - [anon_sym_break] = ACTIONS(2934), - [anon_sym_continue] = ACTIONS(2934), - [anon_sym_goto] = ACTIONS(2934), - [anon_sym_AMP] = ACTIONS(2936), - [anon_sym_BANG] = ACTIONS(2936), - [anon_sym_TILDE] = ACTIONS(2936), - [anon_sym_PLUS] = ACTIONS(2934), - [anon_sym_DASH] = ACTIONS(2934), - [anon_sym_DASH_DASH] = ACTIONS(2936), - [anon_sym_PLUS_PLUS] = ACTIONS(2936), - [anon_sym_sizeof] = ACTIONS(2934), - [sym_number_literal] = ACTIONS(2936), - [anon_sym_SQUOTE] = ACTIONS(2936), - [anon_sym_DQUOTE] = ACTIONS(2936), - [sym_true] = ACTIONS(2934), - [sym_false] = ACTIONS(2934), - [sym_null] = ACTIONS(2934), - [sym_identifier] = ACTIONS(2934), + [sym_compound_statement] = STATE(1137), + [sym_labeled_statement] = STATE(1137), + [sym_expression_statement] = STATE(1137), + [sym_if_statement] = STATE(1137), + [sym_switch_statement] = STATE(1137), + [sym_case_statement] = STATE(1137), + [sym_while_statement] = STATE(1137), + [sym_do_statement] = STATE(1137), + [sym_for_statement] = STATE(1137), + [sym_return_statement] = STATE(1137), + [sym_break_statement] = STATE(1137), + [sym_continue_statement] = STATE(1137), + [sym_goto_statement] = STATE(1137), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3057), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3065), [sym_comment] = ACTIONS(39), }, [1206] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2938), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [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_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_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(39), - }, - [1207] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3549), - [sym_comment] = ACTIONS(39), - }, - [1208] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3551), - [sym_comment] = ACTIONS(39), - }, - [1209] = { - [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(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3553), - [anon_sym_switch] = ACTIONS(3555), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_default] = ACTIONS(3559), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(3563), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_declaration] = STATE(1252), + [sym__declaration_specifiers] = STATE(710), + [sym_storage_class_specifier] = STATE(96), + [sym_type_qualifier] = STATE(96), + [sym__type_specifier] = STATE(95), + [sym_sized_type_specifier] = STATE(95), + [sym_enum_specifier] = STATE(95), + [sym_struct_specifier] = STATE(95), + [sym_union_specifier] = STATE(95), + [sym__expression] = STATE(1253), + [sym_conditional_expression] = STATE(1253), + [sym_assignment_expression] = STATE(1253), + [sym_pointer_expression] = STATE(1253), + [sym_logical_expression] = STATE(1253), + [sym_bitwise_expression] = STATE(1253), + [sym_equality_expression] = STATE(1253), + [sym_relational_expression] = STATE(1253), + [sym_shift_expression] = STATE(1253), + [sym_math_expression] = STATE(1253), + [sym_cast_expression] = STATE(1253), + [sym_sizeof_expression] = STATE(1253), + [sym_subscript_expression] = STATE(1253), + [sym_call_expression] = STATE(1253), + [sym_field_expression] = STATE(1253), + [sym_compound_literal_expression] = STATE(1253), + [sym_parenthesized_expression] = STATE(1253), + [sym_char_literal] = STATE(1253), + [sym_concatenated_string] = STATE(1253), + [sym_string_literal] = STATE(376), + [sym_macro_type_specifier] = STATE(95), + [aux_sym__declaration_specifiers_repeat1] = STATE(96), + [aux_sym_sized_type_specifier_repeat1] = STATE(97), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_long] = ACTIONS(177), + [anon_sym_short] = ACTIONS(177), + [sym_primitive_type] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_sizeof] = ACTIONS(859), + [sym_number_literal] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3565), + [sym_true] = ACTIONS(3423), + [sym_false] = ACTIONS(3423), + [sym_null] = ACTIONS(3423), + [sym_identifier] = ACTIONS(1670), [sym_comment] = ACTIONS(39), }, - [1210] = { - [sym_compound_statement] = STATE(1271), - [sym_labeled_statement] = STATE(1271), - [sym_expression_statement] = STATE(1271), - [sym_if_statement] = STATE(1271), - [sym_switch_statement] = STATE(1271), - [sym_case_statement] = STATE(1271), - [sym_while_statement] = STATE(1271), - [sym_do_statement] = STATE(1271), - [sym_for_statement] = STATE(1271), - [sym_return_statement] = STATE(1271), - [sym_break_statement] = STATE(1271), - [sym_continue_statement] = STATE(1271), - [sym_goto_statement] = STATE(1271), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), + [1207] = { + [sym_compound_statement] = STATE(1143), + [sym_labeled_statement] = STATE(1143), + [sym_expression_statement] = STATE(1143), + [sym_if_statement] = STATE(1143), + [sym_switch_statement] = STATE(1143), + [sym_case_statement] = STATE(1143), + [sym_while_statement] = STATE(1143), + [sym_do_statement] = STATE(1143), + [sym_for_statement] = STATE(1143), + [sym_return_statement] = STATE(1143), + [sym_break_statement] = STATE(1143), + [sym_continue_statement] = STATE(1143), + [sym_goto_statement] = STATE(1143), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3057), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3181), - [sym_comment] = ACTIONS(39), - }, - [1211] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3008), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3008), - [anon_sym_LPAREN] = ACTIONS(3010), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3008), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3008), - [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(3008), - [anon_sym_SEMI] = ACTIONS(3010), - [anon_sym_typedef] = ACTIONS(3008), - [anon_sym_extern] = ACTIONS(3008), - [anon_sym_LBRACE] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(3010), - [anon_sym_static] = ACTIONS(3008), - [anon_sym_auto] = ACTIONS(3008), - [anon_sym_register] = ACTIONS(3008), - [anon_sym_inline] = ACTIONS(3008), - [anon_sym_const] = ACTIONS(3008), - [anon_sym_restrict] = ACTIONS(3008), - [anon_sym_volatile] = ACTIONS(3008), - [anon_sym__Atomic] = ACTIONS(3008), - [anon_sym_unsigned] = ACTIONS(3008), - [anon_sym_long] = ACTIONS(3008), - [anon_sym_short] = ACTIONS(3008), - [sym_primitive_type] = ACTIONS(3008), - [anon_sym_enum] = ACTIONS(3008), - [anon_sym_struct] = ACTIONS(3008), - [anon_sym_union] = ACTIONS(3008), - [anon_sym_if] = ACTIONS(3008), - [anon_sym_else] = ACTIONS(3008), - [anon_sym_switch] = ACTIONS(3008), - [anon_sym_case] = ACTIONS(3008), - [anon_sym_default] = ACTIONS(3008), - [anon_sym_while] = ACTIONS(3008), - [anon_sym_do] = ACTIONS(3008), - [anon_sym_for] = ACTIONS(3008), - [anon_sym_return] = ACTIONS(3008), - [anon_sym_break] = ACTIONS(3008), - [anon_sym_continue] = ACTIONS(3008), - [anon_sym_goto] = ACTIONS(3008), - [anon_sym_AMP] = ACTIONS(3010), - [anon_sym_BANG] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3008), - [anon_sym_DASH] = ACTIONS(3008), - [anon_sym_DASH_DASH] = ACTIONS(3010), - [anon_sym_PLUS_PLUS] = ACTIONS(3010), - [anon_sym_sizeof] = ACTIONS(3008), - [sym_number_literal] = ACTIONS(3010), - [anon_sym_SQUOTE] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3010), - [sym_true] = ACTIONS(3008), - [sym_false] = ACTIONS(3008), - [sym_null] = ACTIONS(3008), - [sym_identifier] = ACTIONS(3008), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3065), [sym_comment] = ACTIONS(39), }, - [1212] = { - [sym_compound_statement] = STATE(1272), - [sym_labeled_statement] = STATE(1272), - [sym_expression_statement] = STATE(1272), - [sym_if_statement] = STATE(1272), - [sym_switch_statement] = STATE(1272), - [sym_case_statement] = STATE(1272), - [sym_while_statement] = STATE(1272), - [sym_do_statement] = STATE(1272), - [sym_for_statement] = STATE(1272), - [sym_return_statement] = STATE(1272), - [sym_break_statement] = STATE(1272), - [sym_continue_statement] = STATE(1272), - [sym_goto_statement] = STATE(1272), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), + [1208] = { + [sym_compound_statement] = STATE(1254), + [sym_labeled_statement] = STATE(1254), + [sym_expression_statement] = STATE(1254), + [sym_if_statement] = STATE(1254), + [sym_switch_statement] = STATE(1254), + [sym_case_statement] = STATE(1254), + [sym_while_statement] = STATE(1254), + [sym_do_statement] = STATE(1254), + [sym_for_statement] = STATE(1254), + [sym_return_statement] = STATE(1254), + [sym_break_statement] = STATE(1254), + [sym_continue_statement] = STATE(1254), + [sym_goto_statement] = STATE(1254), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3181), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3067), [sym_comment] = ACTIONS(39), }, - [1213] = { - [sym__expression] = STATE(1273), - [sym_conditional_expression] = STATE(1273), - [sym_assignment_expression] = STATE(1273), - [sym_pointer_expression] = STATE(1273), - [sym_logical_expression] = STATE(1273), - [sym_bitwise_expression] = STATE(1273), - [sym_equality_expression] = STATE(1273), - [sym_relational_expression] = STATE(1273), - [sym_shift_expression] = STATE(1273), - [sym_math_expression] = STATE(1273), - [sym_cast_expression] = STATE(1273), - [sym_sizeof_expression] = STATE(1273), - [sym_subscript_expression] = STATE(1273), - [sym_call_expression] = STATE(1273), - [sym_field_expression] = STATE(1273), - [sym_compound_literal_expression] = STATE(1273), - [sym_parenthesized_expression] = STATE(1273), - [sym_char_literal] = STATE(1273), - [sym_concatenated_string] = STATE(1273), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3567), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3569), - [sym_false] = ACTIONS(3569), - [sym_null] = ACTIONS(3569), - [sym_identifier] = ACTIONS(3569), + [1209] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2908), + [sym_preproc_directive] = ACTIONS(2908), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_typedef] = ACTIONS(2908), + [anon_sym_extern] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_auto] = ACTIONS(2908), + [anon_sym_register] = ACTIONS(2908), + [anon_sym_inline] = ACTIONS(2908), + [anon_sym_const] = ACTIONS(2908), + [anon_sym_restrict] = ACTIONS(2908), + [anon_sym_volatile] = ACTIONS(2908), + [anon_sym__Atomic] = ACTIONS(2908), + [anon_sym_unsigned] = ACTIONS(2908), + [anon_sym_long] = ACTIONS(2908), + [anon_sym_short] = ACTIONS(2908), + [sym_primitive_type] = ACTIONS(2908), + [anon_sym_enum] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_else] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2908), + [anon_sym_case] = ACTIONS(2908), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_goto] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_sizeof] = ACTIONS(2908), + [sym_number_literal] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [sym_true] = ACTIONS(2908), + [sym_false] = ACTIONS(2908), + [sym_null] = ACTIONS(2908), + [sym_identifier] = ACTIONS(2908), [sym_comment] = ACTIONS(39), }, - [1214] = { - [sym__expression] = STATE(1275), - [sym_conditional_expression] = STATE(1275), - [sym_assignment_expression] = STATE(1275), - [sym_pointer_expression] = STATE(1275), - [sym_logical_expression] = STATE(1275), - [sym_bitwise_expression] = STATE(1275), - [sym_equality_expression] = STATE(1275), - [sym_relational_expression] = STATE(1275), - [sym_shift_expression] = STATE(1275), - [sym_math_expression] = STATE(1275), - [sym_cast_expression] = STATE(1275), - [sym_sizeof_expression] = STATE(1275), - [sym_subscript_expression] = STATE(1275), - [sym_call_expression] = STATE(1275), - [sym_field_expression] = STATE(1275), - [sym_compound_literal_expression] = STATE(1275), - [sym_parenthesized_expression] = STATE(1275), - [sym_char_literal] = STATE(1275), - [sym_concatenated_string] = STATE(1275), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3571), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3573), - [anon_sym_SQUOTE] = ACTIONS(598), + [1210] = { + [sym__expression] = STATE(1255), + [sym_comma_expression] = STATE(1256), + [sym_conditional_expression] = STATE(1255), + [sym_assignment_expression] = STATE(1255), + [sym_pointer_expression] = STATE(1255), + [sym_logical_expression] = STATE(1255), + [sym_bitwise_expression] = STATE(1255), + [sym_equality_expression] = STATE(1255), + [sym_relational_expression] = STATE(1255), + [sym_shift_expression] = STATE(1255), + [sym_math_expression] = STATE(1255), + [sym_cast_expression] = STATE(1255), + [sym_sizeof_expression] = STATE(1255), + [sym_subscript_expression] = STATE(1255), + [sym_call_expression] = STATE(1255), + [sym_field_expression] = STATE(1255), + [sym_compound_literal_expression] = STATE(1255), + [sym_parenthesized_expression] = STATE(1255), + [sym_char_literal] = STATE(1255), + [sym_concatenated_string] = STATE(1255), + [sym_string_literal] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3425), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3427), + [sym_false] = ACTIONS(3427), + [sym_null] = ACTIONS(3427), + [sym_identifier] = ACTIONS(3427), + [sym_comment] = ACTIONS(39), + }, + [1211] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2936), + [sym_preproc_directive] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_typedef] = ACTIONS(2936), + [anon_sym_extern] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LPAREN2] = ACTIONS(2938), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_auto] = ACTIONS(2936), + [anon_sym_register] = ACTIONS(2936), + [anon_sym_inline] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2936), + [anon_sym_restrict] = ACTIONS(2936), + [anon_sym_volatile] = ACTIONS(2936), + [anon_sym__Atomic] = ACTIONS(2936), + [anon_sym_unsigned] = ACTIONS(2936), + [anon_sym_long] = ACTIONS(2936), + [anon_sym_short] = ACTIONS(2936), + [sym_primitive_type] = ACTIONS(2936), + [anon_sym_enum] = ACTIONS(2936), + [anon_sym_struct] = ACTIONS(2936), + [anon_sym_union] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_else] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2936), + [anon_sym_case] = ACTIONS(2936), + [anon_sym_default] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_do] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_goto] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_sizeof] = ACTIONS(2936), + [sym_number_literal] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [sym_true] = ACTIONS(2936), + [sym_false] = ACTIONS(2936), + [sym_null] = ACTIONS(2936), + [sym_identifier] = ACTIONS(2936), + [sym_comment] = ACTIONS(39), + }, + [1212] = { + [sym__expression] = STATE(1258), + [sym_conditional_expression] = STATE(1258), + [sym_assignment_expression] = STATE(1258), + [sym_pointer_expression] = STATE(1258), + [sym_logical_expression] = STATE(1258), + [sym_bitwise_expression] = STATE(1258), + [sym_equality_expression] = STATE(1258), + [sym_relational_expression] = STATE(1258), + [sym_shift_expression] = STATE(1258), + [sym_math_expression] = STATE(1258), + [sym_cast_expression] = STATE(1258), + [sym_sizeof_expression] = STATE(1258), + [sym_subscript_expression] = STATE(1258), + [sym_call_expression] = STATE(1258), + [sym_field_expression] = STATE(1258), + [sym_compound_literal_expression] = STATE(1258), + [sym_parenthesized_expression] = STATE(1258), + [sym_char_literal] = STATE(1258), + [sym_concatenated_string] = STATE(1258), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3575), - [sym_false] = ACTIONS(3575), - [sym_null] = ACTIONS(3575), - [sym_identifier] = ACTIONS(3575), + [sym_true] = ACTIONS(3433), + [sym_false] = ACTIONS(3433), + [sym_null] = ACTIONS(3433), + [sym_identifier] = ACTIONS(3433), [sym_comment] = ACTIONS(39), }, - [1215] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3577), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [1213] = { + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, - [1216] = { - [sym__expression] = STATE(1277), - [sym_conditional_expression] = STATE(1277), - [sym_assignment_expression] = STATE(1277), - [sym_pointer_expression] = STATE(1277), - [sym_logical_expression] = STATE(1277), - [sym_bitwise_expression] = STATE(1277), - [sym_equality_expression] = STATE(1277), - [sym_relational_expression] = STATE(1277), - [sym_shift_expression] = STATE(1277), - [sym_math_expression] = STATE(1277), - [sym_cast_expression] = STATE(1277), - [sym_sizeof_expression] = STATE(1277), - [sym_subscript_expression] = STATE(1277), - [sym_call_expression] = STATE(1277), - [sym_field_expression] = STATE(1277), - [sym_compound_literal_expression] = STATE(1277), - [sym_parenthesized_expression] = STATE(1277), - [sym_char_literal] = STATE(1277), - [sym_concatenated_string] = STATE(1277), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3577), + [1214] = { + [sym__expression] = STATE(1260), + [sym_conditional_expression] = STATE(1260), + [sym_assignment_expression] = STATE(1260), + [sym_pointer_expression] = STATE(1260), + [sym_logical_expression] = STATE(1260), + [sym_bitwise_expression] = STATE(1260), + [sym_equality_expression] = STATE(1260), + [sym_relational_expression] = STATE(1260), + [sym_shift_expression] = STATE(1260), + [sym_math_expression] = STATE(1260), + [sym_cast_expression] = STATE(1260), + [sym_sizeof_expression] = STATE(1260), + [sym_subscript_expression] = STATE(1260), + [sym_call_expression] = STATE(1260), + [sym_field_expression] = STATE(1260), + [sym_compound_literal_expression] = STATE(1260), + [sym_parenthesized_expression] = STATE(1260), + [sym_char_literal] = STATE(1260), + [sym_concatenated_string] = STATE(1260), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -48013,825 +48791,968 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3579), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(3437), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3581), - [sym_false] = ACTIONS(3581), - [sym_null] = ACTIONS(3581), - [sym_identifier] = ACTIONS(3581), + [sym_true] = ACTIONS(3439), + [sym_false] = ACTIONS(3439), + [sym_null] = ACTIONS(3439), + [sym_identifier] = ACTIONS(3439), + [sym_comment] = ACTIONS(39), + }, + [1215] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(3441), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [sym_null] = ACTIONS(2408), + [sym_identifier] = ACTIONS(2408), + [sym_comment] = ACTIONS(39), + }, + [1216] = { + [sym_declaration] = STATE(1154), + [sym_type_definition] = STATE(1154), + [sym__declaration_specifiers] = STATE(1046), + [sym_compound_statement] = STATE(1154), + [sym_storage_class_specifier] = STATE(96), + [sym_type_qualifier] = STATE(96), + [sym__type_specifier] = STATE(95), + [sym_sized_type_specifier] = STATE(95), + [sym_enum_specifier] = STATE(95), + [sym_struct_specifier] = STATE(95), + [sym_union_specifier] = STATE(95), + [sym_labeled_statement] = STATE(1154), + [sym_expression_statement] = STATE(1154), + [sym_if_statement] = STATE(1154), + [sym_switch_statement] = STATE(1154), + [sym_case_statement] = STATE(1154), + [sym_while_statement] = STATE(1154), + [sym_do_statement] = STATE(1154), + [sym_for_statement] = STATE(1154), + [sym_return_statement] = STATE(1154), + [sym_break_statement] = STATE(1154), + [sym_continue_statement] = STATE(1154), + [sym_goto_statement] = STATE(1154), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [sym_macro_type_specifier] = STATE(95), + [aux_sym__declaration_specifiers_repeat1] = STATE(96), + [aux_sym_sized_type_specifier_repeat1] = STATE(97), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(151), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(177), + [anon_sym_long] = ACTIONS(177), + [anon_sym_short] = ACTIONS(177), + [sym_primitive_type] = ACTIONS(179), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(3339), [sym_comment] = ACTIONS(39), }, [1217] = { - [anon_sym_LPAREN] = ACTIONS(3583), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_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_COLON] = ACTIONS(3168), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_identifier] = ACTIONS(83), [sym_comment] = ACTIONS(39), }, [1218] = { - [anon_sym_LPAREN] = ACTIONS(3585), + [sym__expression] = STATE(1263), + [sym_conditional_expression] = STATE(1263), + [sym_assignment_expression] = STATE(1263), + [sym_pointer_expression] = STATE(1263), + [sym_logical_expression] = STATE(1263), + [sym_bitwise_expression] = STATE(1263), + [sym_equality_expression] = STATE(1263), + [sym_relational_expression] = STATE(1263), + [sym_shift_expression] = STATE(1263), + [sym_math_expression] = STATE(1263), + [sym_cast_expression] = STATE(1263), + [sym_sizeof_expression] = STATE(1263), + [sym_subscript_expression] = STATE(1263), + [sym_call_expression] = STATE(1263), + [sym_field_expression] = STATE(1263), + [sym_compound_literal_expression] = STATE(1263), + [sym_parenthesized_expression] = STATE(1263), + [sym_char_literal] = STATE(1263), + [sym_concatenated_string] = STATE(1263), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(3443), + [anon_sym_LPAREN2] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_sizeof] = ACTIONS(859), + [sym_number_literal] = ACTIONS(3445), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [sym_null] = ACTIONS(3447), + [sym_identifier] = ACTIONS(3447), [sym_comment] = ACTIONS(39), }, [1219] = { - [sym__expression] = STATE(1280), - [sym_conditional_expression] = STATE(1280), - [sym_assignment_expression] = STATE(1280), - [sym_pointer_expression] = STATE(1280), - [sym_logical_expression] = STATE(1280), - [sym_bitwise_expression] = STATE(1280), - [sym_equality_expression] = STATE(1280), - [sym_relational_expression] = STATE(1280), - [sym_shift_expression] = STATE(1280), - [sym_math_expression] = STATE(1280), - [sym_cast_expression] = STATE(1280), - [sym_sizeof_expression] = STATE(1280), - [sym_subscript_expression] = STATE(1280), - [sym_call_expression] = STATE(1280), - [sym_field_expression] = STATE(1280), - [sym_compound_literal_expression] = STATE(1280), - [sym_parenthesized_expression] = STATE(1280), - [sym_char_literal] = STATE(1280), - [sym_concatenated_string] = STATE(1280), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(3587), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3589), - [sym_false] = ACTIONS(3589), - [sym_null] = ACTIONS(3589), - [sym_identifier] = ACTIONS(3589), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1220] = { - [anon_sym_COLON] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3224), + [sym_preproc_directive] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_typedef] = ACTIONS(3224), + [anon_sym_extern] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_LPAREN2] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_auto] = ACTIONS(3224), + [anon_sym_register] = ACTIONS(3224), + [anon_sym_inline] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_restrict] = ACTIONS(3224), + [anon_sym_volatile] = ACTIONS(3224), + [anon_sym__Atomic] = ACTIONS(3224), + [anon_sym_unsigned] = ACTIONS(3224), + [anon_sym_long] = ACTIONS(3224), + [anon_sym_short] = ACTIONS(3224), + [sym_primitive_type] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), + [anon_sym_struct] = ACTIONS(3224), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_goto] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_sizeof] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(3226), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_identifier] = ACTIONS(3224), [sym_comment] = ACTIONS(39), }, [1221] = { - [anon_sym_LPAREN] = ACTIONS(3593), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1222] = { - [anon_sym_LPAREN] = ACTIONS(3595), + [anon_sym_RPAREN] = ACTIONS(3451), [sym_comment] = ACTIONS(39), }, [1223] = { - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_COLON] = ACTIONS(3597), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), + [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(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2747), [sym_comment] = ACTIONS(39), }, [1224] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3316), - [sym_preproc_directive] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_typedef] = ACTIONS(3316), - [anon_sym_extern] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_STAR] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_auto] = ACTIONS(3316), - [anon_sym_register] = ACTIONS(3316), - [anon_sym_inline] = ACTIONS(3316), - [anon_sym_const] = ACTIONS(3316), - [anon_sym_restrict] = ACTIONS(3316), - [anon_sym_volatile] = ACTIONS(3316), - [anon_sym__Atomic] = ACTIONS(3316), - [anon_sym_unsigned] = ACTIONS(3316), - [anon_sym_long] = ACTIONS(3316), - [anon_sym_short] = ACTIONS(3316), - [sym_primitive_type] = ACTIONS(3316), - [anon_sym_enum] = ACTIONS(3316), - [anon_sym_struct] = ACTIONS(3316), - [anon_sym_union] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3599), - [anon_sym_switch] = ACTIONS(3316), - [anon_sym_case] = ACTIONS(3316), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_break] = ACTIONS(3316), - [anon_sym_continue] = ACTIONS(3316), - [anon_sym_goto] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_sizeof] = ACTIONS(3316), - [sym_number_literal] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_null] = ACTIONS(3316), - [sym_identifier] = ACTIONS(3316), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1268), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1225] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3324), - [sym_preproc_directive] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3326), - [anon_sym_typedef] = ACTIONS(3324), - [anon_sym_extern] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_STAR] = ACTIONS(3326), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_auto] = ACTIONS(3324), - [anon_sym_register] = ACTIONS(3324), - [anon_sym_inline] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_restrict] = ACTIONS(3324), - [anon_sym_volatile] = ACTIONS(3324), - [anon_sym__Atomic] = ACTIONS(3324), - [anon_sym_unsigned] = ACTIONS(3324), - [anon_sym_long] = ACTIONS(3324), - [anon_sym_short] = ACTIONS(3324), - [sym_primitive_type] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), - [anon_sym_struct] = ACTIONS(3324), - [anon_sym_union] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_else] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_case] = ACTIONS(3324), - [anon_sym_default] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_goto] = ACTIONS(3324), - [anon_sym_AMP] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3326), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_sizeof] = ACTIONS(3324), - [sym_number_literal] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_identifier] = ACTIONS(3324), + [sym__expression] = STATE(1269), + [sym_conditional_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1269), + [sym_pointer_expression] = STATE(1269), + [sym_logical_expression] = STATE(1269), + [sym_bitwise_expression] = STATE(1269), + [sym_equality_expression] = STATE(1269), + [sym_relational_expression] = STATE(1269), + [sym_shift_expression] = STATE(1269), + [sym_math_expression] = STATE(1269), + [sym_cast_expression] = STATE(1269), + [sym_sizeof_expression] = STATE(1269), + [sym_subscript_expression] = STATE(1269), + [sym_call_expression] = STATE(1269), + [sym_field_expression] = STATE(1269), + [sym_compound_literal_expression] = STATE(1269), + [sym_parenthesized_expression] = STATE(1269), + [sym_char_literal] = STATE(1269), + [sym_concatenated_string] = STATE(1269), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3455), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3457), + [sym_false] = ACTIONS(3457), + [sym_null] = ACTIONS(3457), + [sym_identifier] = ACTIONS(3457), [sym_comment] = ACTIONS(39), }, [1226] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3336), - [sym_preproc_directive] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_typedef] = ACTIONS(3336), - [anon_sym_extern] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_STAR] = ACTIONS(3338), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_auto] = ACTIONS(3336), - [anon_sym_register] = ACTIONS(3336), - [anon_sym_inline] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_restrict] = ACTIONS(3336), - [anon_sym_volatile] = ACTIONS(3336), - [anon_sym__Atomic] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [sym_primitive_type] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_goto] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_sizeof] = ACTIONS(3336), - [sym_number_literal] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_identifier] = ACTIONS(3336), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1227] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3601), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(1175), + [sym_labeled_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_if_statement] = STATE(1175), + [sym_switch_statement] = STATE(1175), + [sym_case_statement] = STATE(1175), + [sym_while_statement] = STATE(1175), + [sym_do_statement] = STATE(1175), + [sym_for_statement] = STATE(1175), + [sym_return_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_goto_statement] = STATE(1175), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1610), [sym_comment] = ACTIONS(39), }, [1228] = { - [sym_compound_statement] = STATE(1287), - [sym_labeled_statement] = STATE(1287), - [sym_expression_statement] = STATE(1287), - [sym_if_statement] = STATE(1287), - [sym_switch_statement] = STATE(1287), - [sym_case_statement] = STATE(1287), - [sym_while_statement] = STATE(1287), - [sym_do_statement] = STATE(1287), - [sym_for_statement] = STATE(1287), - [sym_return_statement] = STATE(1287), - [sym_break_statement] = STATE(1287), - [sym_continue_statement] = STATE(1287), - [sym_goto_statement] = STATE(1287), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(2825), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1272), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1229] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1289), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3603), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym__expression] = STATE(1273), + [sym_conditional_expression] = STATE(1273), + [sym_assignment_expression] = STATE(1273), + [sym_pointer_expression] = STATE(1273), + [sym_logical_expression] = STATE(1273), + [sym_bitwise_expression] = STATE(1273), + [sym_equality_expression] = STATE(1273), + [sym_relational_expression] = STATE(1273), + [sym_shift_expression] = STATE(1273), + [sym_math_expression] = STATE(1273), + [sym_cast_expression] = STATE(1273), + [sym_sizeof_expression] = STATE(1273), + [sym_subscript_expression] = STATE(1273), + [sym_call_expression] = STATE(1273), + [sym_field_expression] = STATE(1273), + [sym_compound_literal_expression] = STATE(1273), + [sym_parenthesized_expression] = STATE(1273), + [sym_char_literal] = STATE(1273), + [sym_concatenated_string] = STATE(1273), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3461), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3463), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3465), + [sym_false] = ACTIONS(3465), + [sym_null] = ACTIONS(3465), + [sym_identifier] = ACTIONS(3465), [sym_comment] = ACTIONS(39), }, [1230] = { - [sym__expression] = STATE(1290), - [sym_conditional_expression] = STATE(1290), - [sym_assignment_expression] = STATE(1290), - [sym_pointer_expression] = STATE(1290), - [sym_logical_expression] = STATE(1290), - [sym_bitwise_expression] = STATE(1290), - [sym_equality_expression] = STATE(1290), - [sym_relational_expression] = STATE(1290), - [sym_shift_expression] = STATE(1290), - [sym_math_expression] = STATE(1290), - [sym_cast_expression] = STATE(1290), - [sym_sizeof_expression] = STATE(1290), - [sym_subscript_expression] = STATE(1290), - [sym_call_expression] = STATE(1290), - [sym_field_expression] = STATE(1290), - [sym_compound_literal_expression] = STATE(1290), - [sym_parenthesized_expression] = STATE(1290), - [sym_char_literal] = STATE(1290), - [sym_concatenated_string] = STATE(1290), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3603), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3605), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3607), - [sym_false] = ACTIONS(3607), - [sym_null] = ACTIONS(3607), - [sym_identifier] = ACTIONS(3607), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1231] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3609), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(1067), + [sym_labeled_statement] = STATE(1067), + [sym_expression_statement] = STATE(1067), + [sym_if_statement] = STATE(1067), + [sym_switch_statement] = STATE(1067), + [sym_case_statement] = STATE(1067), + [sym_while_statement] = STATE(1067), + [sym_do_statement] = STATE(1067), + [sym_for_statement] = STATE(1067), + [sym_return_statement] = STATE(1067), + [sym_break_statement] = STATE(1067), + [sym_continue_statement] = STATE(1067), + [sym_goto_statement] = STATE(1067), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(2484), [sym_comment] = ACTIONS(39), }, [1232] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3611), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym__expression] = STATE(1276), + [sym_conditional_expression] = STATE(1276), + [sym_assignment_expression] = STATE(1276), + [sym_pointer_expression] = STATE(1276), + [sym_logical_expression] = STATE(1276), + [sym_bitwise_expression] = STATE(1276), + [sym_equality_expression] = STATE(1276), + [sym_relational_expression] = STATE(1276), + [sym_shift_expression] = STATE(1276), + [sym_math_expression] = STATE(1276), + [sym_cast_expression] = STATE(1276), + [sym_sizeof_expression] = STATE(1276), + [sym_subscript_expression] = STATE(1276), + [sym_call_expression] = STATE(1276), + [sym_field_expression] = STATE(1276), + [sym_compound_literal_expression] = STATE(1276), + [sym_parenthesized_expression] = STATE(1276), + [sym_char_literal] = STATE(1276), + [sym_concatenated_string] = STATE(1276), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3469), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3471), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3473), + [sym_false] = ACTIONS(3473), + [sym_null] = ACTIONS(3473), + [sym_identifier] = ACTIONS(3473), [sym_comment] = ACTIONS(39), }, [1233] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3613), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1234] = { - [sym_declaration] = STATE(947), - [sym_type_definition] = STATE(947), - [sym__declaration_specifiers] = STATE(716), - [sym_compound_statement] = STATE(947), - [sym_storage_class_specifier] = STATE(96), - [sym_type_qualifier] = STATE(96), - [sym__type_specifier] = STATE(95), - [sym_sized_type_specifier] = STATE(95), - [sym_enum_specifier] = STATE(95), - [sym_struct_specifier] = STATE(95), - [sym_union_specifier] = STATE(95), - [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(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [sym_macro_type_specifier] = STATE(95), - [aux_sym__declaration_specifiers_repeat1] = STATE(96), - [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(3485), - [sym_comment] = ACTIONS(39), - }, - [1235] = { - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3314), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), - [sym_identifier] = ACTIONS(86), - [sym_comment] = ACTIONS(39), - }, - [1236] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3615), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1237] = { - [sym__expression] = STATE(1296), - [sym_conditional_expression] = STATE(1296), - [sym_assignment_expression] = STATE(1296), - [sym_pointer_expression] = STATE(1296), - [sym_logical_expression] = STATE(1296), - [sym_bitwise_expression] = STATE(1296), - [sym_equality_expression] = STATE(1296), - [sym_relational_expression] = STATE(1296), - [sym_shift_expression] = STATE(1296), - [sym_math_expression] = STATE(1296), - [sym_cast_expression] = STATE(1296), - [sym_sizeof_expression] = STATE(1296), - [sym_subscript_expression] = STATE(1296), - [sym_call_expression] = STATE(1296), - [sym_field_expression] = STATE(1296), - [sym_compound_literal_expression] = STATE(1296), - [sym_parenthesized_expression] = STATE(1296), - [sym_char_literal] = STATE(1296), - [sym_concatenated_string] = STATE(1296), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3617), + [sym__expression] = STATE(1278), + [sym_conditional_expression] = STATE(1278), + [sym_assignment_expression] = STATE(1278), + [sym_pointer_expression] = STATE(1278), + [sym_logical_expression] = STATE(1278), + [sym_bitwise_expression] = STATE(1278), + [sym_equality_expression] = STATE(1278), + [sym_relational_expression] = STATE(1278), + [sym_shift_expression] = STATE(1278), + [sym_math_expression] = STATE(1278), + [sym_cast_expression] = STATE(1278), + [sym_sizeof_expression] = STATE(1278), + [sym_subscript_expression] = STATE(1278), + [sym_call_expression] = STATE(1278), + [sym_field_expression] = STATE(1278), + [sym_compound_literal_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_char_literal] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(847), [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), @@ -48841,416 +49762,751 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3619), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(3477), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3621), - [sym_false] = ACTIONS(3621), - [sym_null] = ACTIONS(3621), - [sym_identifier] = ACTIONS(3621), + [sym_true] = ACTIONS(3479), + [sym_false] = ACTIONS(3479), + [sym_null] = ACTIONS(3479), + [sym_identifier] = ACTIONS(3479), + [sym_comment] = ACTIONS(39), + }, + [1235] = { + [sym_compound_statement] = STATE(1239), + [sym_labeled_statement] = STATE(1239), + [sym_expression_statement] = STATE(1239), + [sym_if_statement] = STATE(1239), + [sym_switch_statement] = STATE(1239), + [sym_case_statement] = STATE(1239), + [sym_while_statement] = STATE(1239), + [sym_do_statement] = STATE(1239), + [sym_for_statement] = STATE(1239), + [sym_return_statement] = STATE(1239), + [sym_break_statement] = STATE(1239), + [sym_continue_statement] = STATE(1239), + [sym_goto_statement] = STATE(1239), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1030), + [sym_comment] = ACTIONS(39), + }, + [1236] = { + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3481), + [sym_comment] = ACTIONS(39), + }, + [1237] = { + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1280), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3481), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1238] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3623), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym__expression] = STATE(1281), + [sym_conditional_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1281), + [sym_pointer_expression] = STATE(1281), + [sym_logical_expression] = STATE(1281), + [sym_bitwise_expression] = STATE(1281), + [sym_equality_expression] = STATE(1281), + [sym_relational_expression] = STATE(1281), + [sym_shift_expression] = STATE(1281), + [sym_math_expression] = STATE(1281), + [sym_cast_expression] = STATE(1281), + [sym_sizeof_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_call_expression] = STATE(1281), + [sym_field_expression] = STATE(1281), + [sym_compound_literal_expression] = STATE(1281), + [sym_parenthesized_expression] = STATE(1281), + [sym_char_literal] = STATE(1281), + [sym_concatenated_string] = STATE(1281), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3481), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3483), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3485), + [sym_false] = ACTIONS(3485), + [sym_null] = ACTIONS(3485), + [sym_identifier] = ACTIONS(3485), [sym_comment] = ACTIONS(39), }, [1239] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3625), - [anon_sym_LPAREN] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3625), - [sym_preproc_directive] = ACTIONS(3625), - [anon_sym_SEMI] = ACTIONS(3627), - [anon_sym_typedef] = ACTIONS(3625), - [anon_sym_extern] = ACTIONS(3625), - [anon_sym_LBRACE] = ACTIONS(3627), - [anon_sym_RBRACE] = ACTIONS(3627), - [anon_sym_STAR] = ACTIONS(3627), - [anon_sym_static] = ACTIONS(3625), - [anon_sym_auto] = ACTIONS(3625), - [anon_sym_register] = ACTIONS(3625), - [anon_sym_inline] = ACTIONS(3625), - [anon_sym_const] = ACTIONS(3625), - [anon_sym_restrict] = ACTIONS(3625), - [anon_sym_volatile] = ACTIONS(3625), - [anon_sym__Atomic] = ACTIONS(3625), - [anon_sym_unsigned] = ACTIONS(3625), - [anon_sym_long] = ACTIONS(3625), - [anon_sym_short] = ACTIONS(3625), - [sym_primitive_type] = ACTIONS(3625), - [anon_sym_enum] = ACTIONS(3625), - [anon_sym_struct] = ACTIONS(3625), - [anon_sym_union] = ACTIONS(3625), - [anon_sym_if] = ACTIONS(3625), - [anon_sym_else] = ACTIONS(3625), - [anon_sym_switch] = ACTIONS(3625), - [anon_sym_case] = ACTIONS(3625), - [anon_sym_default] = ACTIONS(3625), - [anon_sym_while] = ACTIONS(3625), - [anon_sym_do] = ACTIONS(3625), - [anon_sym_for] = ACTIONS(3625), - [anon_sym_return] = ACTIONS(3625), - [anon_sym_break] = ACTIONS(3625), - [anon_sym_continue] = ACTIONS(3625), - [anon_sym_goto] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3627), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(3627), - [anon_sym_PLUS_PLUS] = ACTIONS(3627), - [anon_sym_sizeof] = ACTIONS(3625), - [sym_number_literal] = ACTIONS(3627), - [anon_sym_SQUOTE] = ACTIONS(3627), - [anon_sym_DQUOTE] = ACTIONS(3627), - [sym_true] = ACTIONS(3625), - [sym_false] = ACTIONS(3625), - [sym_null] = ACTIONS(3625), - [sym_identifier] = ACTIONS(3625), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3487), + [sym_preproc_directive] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3489), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(3487), + [anon_sym_LBRACE] = ACTIONS(3489), + [anon_sym_RBRACE] = ACTIONS(3489), + [anon_sym_LPAREN2] = ACTIONS(3489), + [anon_sym_STAR] = ACTIONS(3489), + [anon_sym_static] = ACTIONS(3487), + [anon_sym_auto] = ACTIONS(3487), + [anon_sym_register] = ACTIONS(3487), + [anon_sym_inline] = ACTIONS(3487), + [anon_sym_const] = ACTIONS(3487), + [anon_sym_restrict] = ACTIONS(3487), + [anon_sym_volatile] = ACTIONS(3487), + [anon_sym__Atomic] = ACTIONS(3487), + [anon_sym_unsigned] = ACTIONS(3487), + [anon_sym_long] = ACTIONS(3487), + [anon_sym_short] = ACTIONS(3487), + [sym_primitive_type] = ACTIONS(3487), + [anon_sym_enum] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(3487), + [anon_sym_union] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_else] = ACTIONS(3487), + [anon_sym_switch] = ACTIONS(3487), + [anon_sym_case] = ACTIONS(3487), + [anon_sym_default] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_break] = ACTIONS(3487), + [anon_sym_continue] = ACTIONS(3487), + [anon_sym_goto] = ACTIONS(3487), + [anon_sym_AMP] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3489), + [anon_sym_TILDE] = ACTIONS(3489), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_DASH_DASH] = ACTIONS(3489), + [anon_sym_PLUS_PLUS] = ACTIONS(3489), + [anon_sym_sizeof] = ACTIONS(3487), + [sym_number_literal] = ACTIONS(3489), + [anon_sym_SQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE] = ACTIONS(3489), + [sym_true] = ACTIONS(3487), + [sym_false] = ACTIONS(3487), + [sym_null] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3487), [sym_comment] = ACTIONS(39), }, [1240] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(1282), + [sym_labeled_statement] = STATE(1282), + [sym_expression_statement] = STATE(1282), + [sym_if_statement] = STATE(1282), + [sym_switch_statement] = STATE(1282), + [sym_case_statement] = STATE(1282), + [sym_while_statement] = STATE(1282), + [sym_do_statement] = STATE(1282), + [sym_for_statement] = STATE(1282), + [sym_return_statement] = STATE(1282), + [sym_break_statement] = STATE(1282), + [sym_continue_statement] = STATE(1282), + [sym_goto_statement] = STATE(1282), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1612), [sym_comment] = ACTIONS(39), }, [1241] = { - [sym__expression] = STATE(1298), - [sym_conditional_expression] = STATE(1298), - [sym_assignment_expression] = STATE(1298), - [sym_pointer_expression] = STATE(1298), - [sym_logical_expression] = STATE(1298), - [sym_bitwise_expression] = STATE(1298), - [sym_equality_expression] = STATE(1298), - [sym_relational_expression] = STATE(1298), - [sym_shift_expression] = STATE(1298), - [sym_math_expression] = STATE(1298), - [sym_cast_expression] = STATE(1298), - [sym_sizeof_expression] = STATE(1298), - [sym_subscript_expression] = STATE(1298), - [sym_call_expression] = STATE(1298), - [sym_field_expression] = STATE(1298), - [sym_compound_literal_expression] = STATE(1298), - [sym_parenthesized_expression] = STATE(1298), - [sym_char_literal] = STATE(1298), - [sym_concatenated_string] = STATE(1298), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3629), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3631), - [sym_false] = ACTIONS(3631), - [sym_null] = ACTIONS(3631), - [sym_identifier] = ACTIONS(3631), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3491), [sym_comment] = ACTIONS(39), }, [1242] = { - [sym__expression] = STATE(1299), - [sym_conditional_expression] = STATE(1299), - [sym_assignment_expression] = STATE(1299), - [sym_pointer_expression] = STATE(1299), - [sym_logical_expression] = STATE(1299), - [sym_bitwise_expression] = STATE(1299), - [sym_equality_expression] = STATE(1299), - [sym_relational_expression] = STATE(1299), - [sym_shift_expression] = STATE(1299), - [sym_math_expression] = STATE(1299), - [sym_cast_expression] = STATE(1299), - [sym_sizeof_expression] = STATE(1299), - [sym_subscript_expression] = STATE(1299), - [sym_call_expression] = STATE(1299), - [sym_field_expression] = STATE(1299), - [sym_compound_literal_expression] = STATE(1299), - [sym_parenthesized_expression] = STATE(1299), - [sym_char_literal] = STATE(1299), - [sym_concatenated_string] = STATE(1299), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3633), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3635), - [sym_false] = ACTIONS(3635), - [sym_null] = ACTIONS(3635), - [sym_identifier] = ACTIONS(3635), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1284), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3491), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1243] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(3637), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3182), + [sym_preproc_directive] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3182), + [anon_sym_extern] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_auto] = ACTIONS(3182), + [anon_sym_register] = ACTIONS(3182), + [anon_sym_inline] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_restrict] = ACTIONS(3182), + [anon_sym_volatile] = ACTIONS(3182), + [anon_sym__Atomic] = ACTIONS(3182), + [anon_sym_unsigned] = ACTIONS(3182), + [anon_sym_long] = ACTIONS(3182), + [anon_sym_short] = ACTIONS(3182), + [sym_primitive_type] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_union] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_case] = ACTIONS(3182), + [anon_sym_default] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_goto] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_sizeof] = ACTIONS(3182), + [sym_number_literal] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_identifier] = ACTIONS(3182), [sym_comment] = ACTIONS(39), }, [1244] = { - [sym_declaration] = STATE(715), - [sym_type_definition] = STATE(715), - [sym__declaration_specifiers] = STATE(716), - [sym_compound_statement] = STATE(715), - [sym_storage_class_specifier] = STATE(96), - [sym_type_qualifier] = STATE(96), - [sym__type_specifier] = STATE(95), - [sym_sized_type_specifier] = STATE(95), - [sym_enum_specifier] = STATE(95), - [sym_struct_specifier] = STATE(95), - [sym_union_specifier] = STATE(95), - [sym_labeled_statement] = STATE(715), - [sym_expression_statement] = STATE(715), - [sym_if_statement] = STATE(715), - [sym_switch_statement] = STATE(715), - [sym_case_statement] = STATE(715), - [sym_while_statement] = STATE(715), - [sym_do_statement] = STATE(715), - [sym_for_statement] = STATE(715), - [sym_return_statement] = STATE(715), - [sym_break_statement] = STATE(715), - [sym_continue_statement] = STATE(715), - [sym_goto_statement] = STATE(715), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [sym_macro_type_specifier] = STATE(95), - [aux_sym__declaration_specifiers_repeat1] = STATE(96), - [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(3639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3186), + [sym_preproc_directive] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_typedef] = ACTIONS(3186), + [anon_sym_extern] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_auto] = ACTIONS(3186), + [anon_sym_register] = ACTIONS(3186), + [anon_sym_inline] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_restrict] = ACTIONS(3186), + [anon_sym_volatile] = ACTIONS(3186), + [anon_sym__Atomic] = ACTIONS(3186), + [anon_sym_unsigned] = ACTIONS(3186), + [anon_sym_long] = ACTIONS(3186), + [anon_sym_short] = ACTIONS(3186), + [sym_primitive_type] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), + [anon_sym_struct] = ACTIONS(3186), + [anon_sym_union] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_goto] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_sizeof] = ACTIONS(3186), + [sym_number_literal] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_identifier] = ACTIONS(3186), + [sym_comment] = ACTIONS(39), + }, + [1245] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3190), + [sym_preproc_directive] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3192), + [anon_sym_typedef] = ACTIONS(3190), + [anon_sym_extern] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_LPAREN2] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3190), + [anon_sym_auto] = ACTIONS(3190), + [anon_sym_register] = ACTIONS(3190), + [anon_sym_inline] = ACTIONS(3190), + [anon_sym_const] = ACTIONS(3190), + [anon_sym_restrict] = ACTIONS(3190), + [anon_sym_volatile] = ACTIONS(3190), + [anon_sym__Atomic] = ACTIONS(3190), + [anon_sym_unsigned] = ACTIONS(3190), + [anon_sym_long] = ACTIONS(3190), + [anon_sym_short] = ACTIONS(3190), + [sym_primitive_type] = ACTIONS(3190), + [anon_sym_enum] = ACTIONS(3190), + [anon_sym_struct] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_switch] = ACTIONS(3190), + [anon_sym_case] = ACTIONS(3190), + [anon_sym_default] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_do] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_goto] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3192), + [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_DASH_DASH] = ACTIONS(3192), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_sizeof] = ACTIONS(3190), + [sym_number_literal] = ACTIONS(3192), + [anon_sym_SQUOTE] = ACTIONS(3192), + [anon_sym_DQUOTE] = ACTIONS(3192), + [sym_true] = ACTIONS(3190), + [sym_false] = ACTIONS(3190), + [sym_null] = ACTIONS(3190), + [sym_identifier] = ACTIONS(3190), + [sym_comment] = ACTIONS(39), + }, + [1246] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3194), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3194), + [sym_preproc_directive] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3196), + [anon_sym_typedef] = ACTIONS(3194), + [anon_sym_extern] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3196), + [anon_sym_LPAREN2] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3196), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_auto] = ACTIONS(3194), + [anon_sym_register] = ACTIONS(3194), + [anon_sym_inline] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_restrict] = ACTIONS(3194), + [anon_sym_volatile] = ACTIONS(3194), + [anon_sym__Atomic] = ACTIONS(3194), + [anon_sym_unsigned] = ACTIONS(3194), + [anon_sym_long] = ACTIONS(3194), + [anon_sym_short] = ACTIONS(3194), + [sym_primitive_type] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), + [anon_sym_struct] = ACTIONS(3194), + [anon_sym_union] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_case] = ACTIONS(3194), + [anon_sym_default] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_goto] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3196), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_TILDE] = ACTIONS(3196), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3196), + [anon_sym_PLUS_PLUS] = ACTIONS(3196), + [anon_sym_sizeof] = ACTIONS(3194), + [sym_number_literal] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3196), + [anon_sym_DQUOTE] = ACTIONS(3196), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_identifier] = ACTIONS(3194), + [sym_comment] = ACTIONS(39), + }, + [1247] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3198), + [sym_preproc_directive] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_typedef] = ACTIONS(3198), + [anon_sym_extern] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_LPAREN2] = ACTIONS(3200), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_auto] = ACTIONS(3198), + [anon_sym_register] = ACTIONS(3198), + [anon_sym_inline] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_restrict] = ACTIONS(3198), + [anon_sym_volatile] = ACTIONS(3198), + [anon_sym__Atomic] = ACTIONS(3198), + [anon_sym_unsigned] = ACTIONS(3198), + [anon_sym_long] = ACTIONS(3198), + [anon_sym_short] = ACTIONS(3198), + [sym_primitive_type] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_goto] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3200), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_sizeof] = ACTIONS(3198), + [sym_number_literal] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_identifier] = ACTIONS(3198), + [sym_comment] = ACTIONS(39), + }, + [1248] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3202), + [sym_preproc_directive] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym_typedef] = ACTIONS(3202), + [anon_sym_extern] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_LPAREN2] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_auto] = ACTIONS(3202), + [anon_sym_register] = ACTIONS(3202), + [anon_sym_inline] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_restrict] = ACTIONS(3202), + [anon_sym_volatile] = ACTIONS(3202), + [anon_sym__Atomic] = ACTIONS(3202), + [anon_sym_unsigned] = ACTIONS(3202), + [anon_sym_long] = ACTIONS(3202), + [anon_sym_short] = ACTIONS(3202), + [sym_primitive_type] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_union] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_goto] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_sizeof] = ACTIONS(3202), + [sym_number_literal] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3204), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_null] = ACTIONS(3202), + [sym_identifier] = ACTIONS(3202), [sym_comment] = ACTIONS(39), }, - [1245] = { - [sym__expression] = STATE(1302), - [sym_conditional_expression] = STATE(1302), - [sym_assignment_expression] = STATE(1302), - [sym_pointer_expression] = STATE(1302), - [sym_logical_expression] = STATE(1302), - [sym_bitwise_expression] = STATE(1302), - [sym_equality_expression] = STATE(1302), - [sym_relational_expression] = STATE(1302), - [sym_shift_expression] = STATE(1302), - [sym_math_expression] = STATE(1302), - [sym_cast_expression] = STATE(1302), - [sym_sizeof_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_call_expression] = STATE(1302), - [sym_field_expression] = STATE(1302), - [sym_compound_literal_expression] = STATE(1302), - [sym_parenthesized_expression] = STATE(1302), - [sym_char_literal] = STATE(1302), - [sym_concatenated_string] = STATE(1302), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3641), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3643), - [sym_false] = ACTIONS(3643), - [sym_null] = ACTIONS(3643), - [sym_identifier] = ACTIONS(3643), + [1249] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2408), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2408), + [sym_preproc_directive] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_typedef] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_LPAREN2] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_auto] = ACTIONS(2408), + [anon_sym_register] = ACTIONS(2408), + [anon_sym_inline] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_restrict] = ACTIONS(2408), + [anon_sym_volatile] = ACTIONS(2408), + [anon_sym__Atomic] = ACTIONS(2408), + [anon_sym_unsigned] = ACTIONS(2408), + [anon_sym_long] = ACTIONS(2408), + [anon_sym_short] = ACTIONS(2408), + [sym_primitive_type] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_else] = ACTIONS(3493), + [anon_sym_switch] = ACTIONS(2408), + [anon_sym_case] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_do] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_goto] = ACTIONS(2408), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_sizeof] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [sym_true] = ACTIONS(2408), + [sym_false] = ACTIONS(2408), + [sym_null] = ACTIONS(2408), + [sym_identifier] = ACTIONS(2408), [sym_comment] = ACTIONS(39), }, - [1246] = { - [sym_declaration] = STATE(1303), - [sym__declaration_specifiers] = STATE(716), + [1250] = { + [sym_declaration] = STATE(1209), + [sym_type_definition] = STATE(1209), + [sym__declaration_specifiers] = STATE(1136), + [sym_compound_statement] = STATE(1209), [sym_storage_class_specifier] = STATE(96), [sym_type_qualifier] = STATE(96), [sym__type_specifier] = STATE(95), @@ -49258,33 +50514,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(95), [sym_struct_specifier] = STATE(95), [sym_union_specifier] = STATE(95), - [sym__expression] = STATE(1304), - [sym_conditional_expression] = STATE(1304), - [sym_assignment_expression] = STATE(1304), - [sym_pointer_expression] = STATE(1304), - [sym_logical_expression] = STATE(1304), - [sym_bitwise_expression] = STATE(1304), - [sym_equality_expression] = STATE(1304), - [sym_relational_expression] = STATE(1304), - [sym_shift_expression] = STATE(1304), - [sym_math_expression] = STATE(1304), - [sym_cast_expression] = STATE(1304), - [sym_sizeof_expression] = STATE(1304), - [sym_subscript_expression] = STATE(1304), - [sym_call_expression] = STATE(1304), - [sym_field_expression] = STATE(1304), - [sym_compound_literal_expression] = STATE(1304), - [sym_parenthesized_expression] = STATE(1304), - [sym_char_literal] = STATE(1304), - [sym_concatenated_string] = STATE(1304), - [sym_string_literal] = STATE(378), + [sym_labeled_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_if_statement] = STATE(1209), + [sym_switch_statement] = STATE(1209), + [sym_case_statement] = STATE(1209), + [sym_while_statement] = STATE(1209), + [sym_do_statement] = STATE(1209), + [sym_for_statement] = STATE(1209), + [sym_return_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_goto_statement] = STATE(1209), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), [sym_macro_type_specifier] = STATE(95), [aux_sym__declaration_specifiers_repeat1] = STATE(96), [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3645), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_typedef] = ACTIONS(380), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(849), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -49300,6 +50571,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3057), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3417), + [sym_comment] = ACTIONS(39), + }, + [1251] = { + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(83), + [anon_sym_LPAREN2] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_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_COLON] = ACTIONS(3319), + [anon_sym_QMARK] = ACTIONS(1066), + [anon_sym_STAR_EQ] = ACTIONS(1066), + [anon_sym_SLASH_EQ] = ACTIONS(1066), + [anon_sym_PERCENT_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1066), + [anon_sym_DASH_EQ] = ACTIONS(1066), + [anon_sym_LT_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_GT_EQ] = ACTIONS(1066), + [anon_sym_AMP_EQ] = ACTIONS(1066), + [anon_sym_CARET_EQ] = ACTIONS(1066), + [anon_sym_PIPE_EQ] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_PIPE_PIPE] = ACTIONS(1066), + [anon_sym_AMP_AMP] = ACTIONS(1066), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym_EQ_EQ] = ACTIONS(1066), + [anon_sym_BANG_EQ] = ACTIONS(1066), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_LT_EQ] = ACTIONS(1066), + [anon_sym_GT_EQ] = ACTIONS(1066), + [anon_sym_LT_LT] = ACTIONS(1078), + [anon_sym_GT_GT] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DASH_GT] = ACTIONS(1066), + [sym_identifier] = ACTIONS(83), + [sym_comment] = ACTIONS(39), + }, + [1252] = { + [sym__expression] = STATE(1287), + [sym_conditional_expression] = STATE(1287), + [sym_assignment_expression] = STATE(1287), + [sym_pointer_expression] = STATE(1287), + [sym_logical_expression] = STATE(1287), + [sym_bitwise_expression] = STATE(1287), + [sym_equality_expression] = STATE(1287), + [sym_relational_expression] = STATE(1287), + [sym_shift_expression] = STATE(1287), + [sym_math_expression] = STATE(1287), + [sym_cast_expression] = STATE(1287), + [sym_sizeof_expression] = STATE(1287), + [sym_subscript_expression] = STATE(1287), + [sym_call_expression] = STATE(1287), + [sym_field_expression] = STATE(1287), + [sym_compound_literal_expression] = STATE(1287), + [sym_parenthesized_expression] = STATE(1287), + [sym_char_literal] = STATE(1287), + [sym_concatenated_string] = STATE(1287), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(849), [anon_sym_AMP] = ACTIONS(849), [anon_sym_BANG] = ACTIONS(851), [anon_sym_TILDE] = ACTIONS(853), @@ -49308,9700 +50683,5062 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(857), [anon_sym_PLUS_PLUS] = ACTIONS(857), [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3647), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_number_literal] = ACTIONS(3497), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3649), - [sym_false] = ACTIONS(3649), - [sym_null] = ACTIONS(3649), - [sym_identifier] = ACTIONS(1705), - [sym_comment] = ACTIONS(39), - }, - [1247] = { - [sym_compound_statement] = STATE(734), - [sym_labeled_statement] = STATE(734), - [sym_expression_statement] = STATE(734), - [sym_if_statement] = STATE(734), - [sym_switch_statement] = STATE(734), - [sym_case_statement] = STATE(734), - [sym_while_statement] = STATE(734), - [sym_do_statement] = STATE(734), - [sym_for_statement] = STATE(734), - [sym_return_statement] = STATE(734), - [sym_break_statement] = STATE(734), - [sym_continue_statement] = STATE(734), - [sym_goto_statement] = STATE(734), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(3352), - [sym_comment] = ACTIONS(39), - }, - [1248] = { - [sym_compound_statement] = STATE(1239), - [sym_labeled_statement] = STATE(1239), - [sym_expression_statement] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_switch_statement] = STATE(1239), - [sym_case_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_do_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_return_statement] = STATE(1239), - [sym_break_statement] = STATE(1239), - [sym_continue_statement] = STATE(1239), - [sym_goto_statement] = STATE(1239), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1050), - [sym_comment] = ACTIONS(39), - }, - [1249] = { - [sym_compound_statement] = STATE(1253), - [sym_labeled_statement] = STATE(1253), - [sym_expression_statement] = STATE(1253), - [sym_if_statement] = STATE(1253), - [sym_switch_statement] = STATE(1253), - [sym_case_statement] = STATE(1253), - [sym_while_statement] = STATE(1253), - [sym_do_statement] = STATE(1253), - [sym_for_statement] = STATE(1253), - [sym_return_statement] = STATE(1253), - [sym_break_statement] = STATE(1253), - [sym_continue_statement] = STATE(1253), - [sym_goto_statement] = STATE(1253), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1050), - [sym_comment] = ACTIONS(39), - }, - [1250] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3651), - [sym_comment] = ACTIONS(39), - }, - [1251] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1306), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1252] = { - [sym__expression] = STATE(1307), - [sym_conditional_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_pointer_expression] = STATE(1307), - [sym_logical_expression] = STATE(1307), - [sym_bitwise_expression] = STATE(1307), - [sym_equality_expression] = STATE(1307), - [sym_relational_expression] = STATE(1307), - [sym_shift_expression] = STATE(1307), - [sym_math_expression] = STATE(1307), - [sym_cast_expression] = STATE(1307), - [sym_sizeof_expression] = STATE(1307), - [sym_subscript_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_field_expression] = STATE(1307), - [sym_compound_literal_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_char_literal] = STATE(1307), - [sym_concatenated_string] = STATE(1307), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3653), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3655), - [sym_false] = ACTIONS(3655), - [sym_null] = ACTIONS(3655), - [sym_identifier] = ACTIONS(3655), + [sym_true] = ACTIONS(3499), + [sym_false] = ACTIONS(3499), + [sym_null] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3499), [sym_comment] = ACTIONS(39), }, [1253] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3657), - [anon_sym_LPAREN] = ACTIONS(3659), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3657), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_typedef] = ACTIONS(3657), - [anon_sym_extern] = ACTIONS(3657), - [anon_sym_LBRACE] = ACTIONS(3659), - [anon_sym_RBRACE] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_static] = ACTIONS(3657), - [anon_sym_auto] = ACTIONS(3657), - [anon_sym_register] = ACTIONS(3657), - [anon_sym_inline] = ACTIONS(3657), - [anon_sym_const] = ACTIONS(3657), - [anon_sym_restrict] = ACTIONS(3657), - [anon_sym_volatile] = ACTIONS(3657), - [anon_sym__Atomic] = ACTIONS(3657), - [anon_sym_unsigned] = ACTIONS(3657), - [anon_sym_long] = ACTIONS(3657), - [anon_sym_short] = ACTIONS(3657), - [sym_primitive_type] = ACTIONS(3657), - [anon_sym_enum] = ACTIONS(3657), - [anon_sym_struct] = ACTIONS(3657), - [anon_sym_union] = ACTIONS(3657), - [anon_sym_if] = ACTIONS(3657), - [anon_sym_else] = ACTIONS(3657), - [anon_sym_switch] = ACTIONS(3657), - [anon_sym_case] = ACTIONS(3657), - [anon_sym_default] = ACTIONS(3657), - [anon_sym_while] = ACTIONS(3657), - [anon_sym_do] = ACTIONS(3657), - [anon_sym_for] = ACTIONS(3657), - [anon_sym_return] = ACTIONS(3657), - [anon_sym_break] = ACTIONS(3657), - [anon_sym_continue] = ACTIONS(3657), - [anon_sym_goto] = ACTIONS(3657), - [anon_sym_AMP] = ACTIONS(3659), - [anon_sym_BANG] = ACTIONS(3659), - [anon_sym_TILDE] = ACTIONS(3659), - [anon_sym_PLUS] = ACTIONS(3657), - [anon_sym_DASH] = ACTIONS(3657), - [anon_sym_DASH_DASH] = ACTIONS(3659), - [anon_sym_PLUS_PLUS] = ACTIONS(3659), - [anon_sym_sizeof] = ACTIONS(3657), - [sym_number_literal] = ACTIONS(3659), - [anon_sym_SQUOTE] = ACTIONS(3659), - [anon_sym_DQUOTE] = ACTIONS(3659), - [sym_true] = ACTIONS(3657), - [sym_false] = ACTIONS(3657), - [sym_null] = ACTIONS(3657), - [sym_identifier] = ACTIONS(3657), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3501), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1254] = { - [sym_compound_statement] = STATE(1308), - [sym_labeled_statement] = STATE(1308), - [sym_expression_statement] = STATE(1308), - [sym_if_statement] = STATE(1308), - [sym_switch_statement] = STATE(1308), - [sym_case_statement] = STATE(1308), - [sym_while_statement] = STATE(1308), - [sym_do_statement] = STATE(1308), - [sym_for_statement] = STATE(1308), - [sym_return_statement] = STATE(1308), - [sym_break_statement] = STATE(1308), - [sym_continue_statement] = STATE(1308), - [sym_goto_statement] = STATE(1308), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1741), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3224), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3224), + [sym_preproc_directive] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_typedef] = ACTIONS(3224), + [anon_sym_extern] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_LPAREN2] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_auto] = ACTIONS(3224), + [anon_sym_register] = ACTIONS(3224), + [anon_sym_inline] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_restrict] = ACTIONS(3224), + [anon_sym_volatile] = ACTIONS(3224), + [anon_sym__Atomic] = ACTIONS(3224), + [anon_sym_unsigned] = ACTIONS(3224), + [anon_sym_long] = ACTIONS(3224), + [anon_sym_short] = ACTIONS(3224), + [sym_primitive_type] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), + [anon_sym_struct] = ACTIONS(3224), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_goto] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_sizeof] = ACTIONS(3224), + [sym_number_literal] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(3226), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_identifier] = ACTIONS(3224), [sym_comment] = ACTIONS(39), }, [1255] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3661), + [sym_argument_list] = STATE(465), + [anon_sym_COMMA] = ACTIONS(1556), + [anon_sym_RPAREN] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1256] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1310), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3661), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [anon_sym_RPAREN] = ACTIONS(3503), [sym_comment] = ACTIONS(39), }, [1257] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3276), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3274), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3274), - [sym_preproc_directive] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym_typedef] = ACTIONS(3274), - [anon_sym_extern] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_auto] = ACTIONS(3274), - [anon_sym_register] = ACTIONS(3274), - [anon_sym_inline] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_restrict] = ACTIONS(3274), - [anon_sym_volatile] = ACTIONS(3274), - [anon_sym__Atomic] = ACTIONS(3274), - [anon_sym_unsigned] = ACTIONS(3274), - [anon_sym_long] = ACTIONS(3274), - [anon_sym_short] = ACTIONS(3274), - [sym_primitive_type] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [anon_sym_struct] = ACTIONS(3274), - [anon_sym_union] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_goto] = ACTIONS(3274), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_sizeof] = ACTIONS(3274), - [sym_number_literal] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_null] = ACTIONS(3274), - [sym_identifier] = ACTIONS(3274), + [sym_compound_statement] = STATE(1290), + [sym_labeled_statement] = STATE(1290), + [sym_expression_statement] = STATE(1290), + [sym_if_statement] = STATE(1290), + [sym_switch_statement] = STATE(1290), + [sym_case_statement] = STATE(1290), + [sym_while_statement] = STATE(1290), + [sym_do_statement] = STATE(1290), + [sym_for_statement] = STATE(1290), + [sym_return_statement] = STATE(1290), + [sym_break_statement] = STATE(1290), + [sym_continue_statement] = STATE(1290), + [sym_goto_statement] = STATE(1290), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3067), [sym_comment] = ACTIONS(39), }, [1258] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3280), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3278), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3278), - [sym_preproc_directive] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_typedef] = ACTIONS(3278), - [anon_sym_extern] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_auto] = ACTIONS(3278), - [anon_sym_register] = ACTIONS(3278), - [anon_sym_inline] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_restrict] = ACTIONS(3278), - [anon_sym_volatile] = ACTIONS(3278), - [anon_sym__Atomic] = ACTIONS(3278), - [anon_sym_unsigned] = ACTIONS(3278), - [anon_sym_long] = ACTIONS(3278), - [anon_sym_short] = ACTIONS(3278), - [sym_primitive_type] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [anon_sym_struct] = ACTIONS(3278), - [anon_sym_union] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3278), - [anon_sym_default] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_goto] = ACTIONS(3278), - [anon_sym_AMP] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_sizeof] = ACTIONS(3278), - [sym_number_literal] = ACTIONS(3280), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3280), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_null] = ACTIONS(3278), - [sym_identifier] = ACTIONS(3278), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1292), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1259] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3284), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3282), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3282), - [sym_preproc_directive] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_typedef] = ACTIONS(3282), - [anon_sym_extern] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_STAR] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_auto] = ACTIONS(3282), - [anon_sym_register] = ACTIONS(3282), - [anon_sym_inline] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_restrict] = ACTIONS(3282), - [anon_sym_volatile] = ACTIONS(3282), - [anon_sym__Atomic] = ACTIONS(3282), - [anon_sym_unsigned] = ACTIONS(3282), - [anon_sym_long] = ACTIONS(3282), - [anon_sym_short] = ACTIONS(3282), - [sym_primitive_type] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), - [anon_sym_struct] = ACTIONS(3282), - [anon_sym_union] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_case] = ACTIONS(3282), - [anon_sym_default] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_goto] = ACTIONS(3282), - [anon_sym_AMP] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_sizeof] = ACTIONS(3282), - [sym_number_literal] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [sym_null] = ACTIONS(3282), - [sym_identifier] = ACTIONS(3282), + [sym__expression] = STATE(1293), + [sym_conditional_expression] = STATE(1293), + [sym_assignment_expression] = STATE(1293), + [sym_pointer_expression] = STATE(1293), + [sym_logical_expression] = STATE(1293), + [sym_bitwise_expression] = STATE(1293), + [sym_equality_expression] = STATE(1293), + [sym_relational_expression] = STATE(1293), + [sym_shift_expression] = STATE(1293), + [sym_math_expression] = STATE(1293), + [sym_cast_expression] = STATE(1293), + [sym_sizeof_expression] = STATE(1293), + [sym_subscript_expression] = STATE(1293), + [sym_call_expression] = STATE(1293), + [sym_field_expression] = STATE(1293), + [sym_compound_literal_expression] = STATE(1293), + [sym_parenthesized_expression] = STATE(1293), + [sym_char_literal] = STATE(1293), + [sym_concatenated_string] = STATE(1293), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3505), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3507), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3509), + [sym_false] = ACTIONS(3509), + [sym_null] = ACTIONS(3509), + [sym_identifier] = ACTIONS(3509), [sym_comment] = ACTIONS(39), }, [1260] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3288), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_auto] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_sizeof] = ACTIONS(3286), - [sym_number_literal] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_identifier] = ACTIONS(3286), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3511), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1261] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3290), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3292), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3290), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3290), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3290), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3290), - [sym_preproc_directive] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_typedef] = ACTIONS(3290), - [anon_sym_extern] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3290), - [anon_sym_auto] = ACTIONS(3290), - [anon_sym_register] = ACTIONS(3290), - [anon_sym_inline] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_restrict] = ACTIONS(3290), - [anon_sym_volatile] = ACTIONS(3290), - [anon_sym__Atomic] = ACTIONS(3290), - [anon_sym_unsigned] = ACTIONS(3290), - [anon_sym_long] = ACTIONS(3290), - [anon_sym_short] = ACTIONS(3290), - [sym_primitive_type] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), - [anon_sym_struct] = ACTIONS(3290), - [anon_sym_union] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3290), - [anon_sym_default] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_goto] = ACTIONS(3290), - [anon_sym_AMP] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_sizeof] = ACTIONS(3290), - [sym_number_literal] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [sym_null] = ACTIONS(3290), - [sym_identifier] = ACTIONS(3290), + [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(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2745), [sym_comment] = ACTIONS(39), }, [1262] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3296), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3294), - [sym_preproc_directive] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_auto] = ACTIONS(3294), - [anon_sym_register] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_restrict] = ACTIONS(3294), - [anon_sym_volatile] = ACTIONS(3294), - [anon_sym__Atomic] = ACTIONS(3294), - [anon_sym_unsigned] = ACTIONS(3294), - [anon_sym_long] = ACTIONS(3294), - [anon_sym_short] = ACTIONS(3294), - [sym_primitive_type] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_goto] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_sizeof] = ACTIONS(3294), - [sym_number_literal] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3294), + [sym__expression] = STATE(1296), + [sym_conditional_expression] = STATE(1296), + [sym_assignment_expression] = STATE(1296), + [sym_pointer_expression] = STATE(1296), + [sym_logical_expression] = STATE(1296), + [sym_bitwise_expression] = STATE(1296), + [sym_equality_expression] = STATE(1296), + [sym_relational_expression] = STATE(1296), + [sym_shift_expression] = STATE(1296), + [sym_math_expression] = STATE(1296), + [sym_cast_expression] = STATE(1296), + [sym_sizeof_expression] = STATE(1296), + [sym_subscript_expression] = STATE(1296), + [sym_call_expression] = STATE(1296), + [sym_field_expression] = STATE(1296), + [sym_compound_literal_expression] = STATE(1296), + [sym_parenthesized_expression] = STATE(1296), + [sym_char_literal] = STATE(1296), + [sym_concatenated_string] = STATE(1296), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3513), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3515), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3517), + [sym_false] = ACTIONS(3517), + [sym_null] = ACTIONS(3517), + [sym_identifier] = ACTIONS(3517), [sym_comment] = ACTIONS(39), }, [1263] = { - [anon_sym_LPAREN] = ACTIONS(3663), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3519), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1264] = { - [anon_sym_LPAREN] = ACTIONS(3665), + [sym__expression] = STATE(1298), + [sym_conditional_expression] = STATE(1298), + [sym_assignment_expression] = STATE(1298), + [sym_pointer_expression] = STATE(1298), + [sym_logical_expression] = STATE(1298), + [sym_bitwise_expression] = STATE(1298), + [sym_equality_expression] = STATE(1298), + [sym_relational_expression] = STATE(1298), + [sym_shift_expression] = STATE(1298), + [sym_math_expression] = STATE(1298), + [sym_cast_expression] = STATE(1298), + [sym_sizeof_expression] = STATE(1298), + [sym_subscript_expression] = STATE(1298), + [sym_call_expression] = STATE(1298), + [sym_field_expression] = STATE(1298), + [sym_compound_literal_expression] = STATE(1298), + [sym_parenthesized_expression] = STATE(1298), + [sym_char_literal] = STATE(1298), + [sym_concatenated_string] = STATE(1298), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(3519), + [anon_sym_LPAREN2] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_sizeof] = ACTIONS(859), + [sym_number_literal] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3523), + [sym_false] = ACTIONS(3523), + [sym_null] = ACTIONS(3523), + [sym_identifier] = ACTIONS(3523), [sym_comment] = ACTIONS(39), }, [1265] = { - [sym__expression] = STATE(1313), - [sym_conditional_expression] = STATE(1313), - [sym_assignment_expression] = STATE(1313), - [sym_pointer_expression] = STATE(1313), - [sym_logical_expression] = STATE(1313), - [sym_bitwise_expression] = STATE(1313), - [sym_equality_expression] = STATE(1313), - [sym_relational_expression] = STATE(1313), - [sym_shift_expression] = STATE(1313), - [sym_math_expression] = STATE(1313), - [sym_cast_expression] = STATE(1313), - [sym_sizeof_expression] = STATE(1313), - [sym_subscript_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_field_expression] = STATE(1313), - [sym_compound_literal_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_char_literal] = STATE(1313), - [sym_concatenated_string] = STATE(1313), - [sym_string_literal] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1018), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_TILDE] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1026), - [anon_sym_sizeof] = ACTIONS(1028), - [sym_number_literal] = ACTIONS(3667), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3669), - [sym_false] = ACTIONS(3669), - [sym_null] = ACTIONS(3669), - [sym_identifier] = ACTIONS(3669), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_SEMI] = ACTIONS(2344), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2344), + [anon_sym_LPAREN2] = ACTIONS(2344), + [anon_sym_STAR] = ACTIONS(2344), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_AMP] = ACTIONS(2344), + [anon_sym_BANG] = ACTIONS(2344), + [anon_sym_TILDE] = ACTIONS(2344), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2344), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [sym_null] = ACTIONS(2346), + [sym_identifier] = ACTIONS(2346), [sym_comment] = ACTIONS(39), }, [1266] = { - [anon_sym_COLON] = ACTIONS(3671), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3393), + [sym_preproc_directive] = ACTIONS(3393), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_typedef] = ACTIONS(3393), + [anon_sym_extern] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3393), + [anon_sym_auto] = ACTIONS(3393), + [anon_sym_register] = ACTIONS(3393), + [anon_sym_inline] = ACTIONS(3393), + [anon_sym_const] = ACTIONS(3393), + [anon_sym_restrict] = ACTIONS(3393), + [anon_sym_volatile] = ACTIONS(3393), + [anon_sym__Atomic] = ACTIONS(3393), + [anon_sym_unsigned] = ACTIONS(3393), + [anon_sym_long] = ACTIONS(3393), + [anon_sym_short] = ACTIONS(3393), + [sym_primitive_type] = ACTIONS(3393), + [anon_sym_enum] = ACTIONS(3393), + [anon_sym_struct] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3393), + [anon_sym_else] = ACTIONS(3393), + [anon_sym_switch] = ACTIONS(3393), + [anon_sym_case] = ACTIONS(3393), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3393), + [anon_sym_do] = ACTIONS(3393), + [anon_sym_for] = ACTIONS(3393), + [anon_sym_return] = ACTIONS(3393), + [anon_sym_break] = ACTIONS(3393), + [anon_sym_continue] = ACTIONS(3393), + [anon_sym_goto] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_DASH_DASH] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_sizeof] = ACTIONS(3393), + [sym_number_literal] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [sym_true] = ACTIONS(3393), + [sym_false] = ACTIONS(3393), + [sym_null] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3393), [sym_comment] = ACTIONS(39), }, [1267] = { - [anon_sym_LPAREN] = ACTIONS(3673), + [sym_compound_statement] = STATE(1299), + [sym_labeled_statement] = STATE(1299), + [sym_expression_statement] = STATE(1299), + [sym_if_statement] = STATE(1299), + [sym_switch_statement] = STATE(1299), + [sym_case_statement] = STATE(1299), + [sym_while_statement] = STATE(1299), + [sym_do_statement] = STATE(1299), + [sym_for_statement] = STATE(1299), + [sym_return_statement] = STATE(1299), + [sym_break_statement] = STATE(1299), + [sym_continue_statement] = STATE(1299), + [sym_goto_statement] = STATE(1299), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2747), [sym_comment] = ACTIONS(39), }, [1268] = { - [anon_sym_LPAREN] = ACTIONS(3675), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3525), [sym_comment] = ACTIONS(39), }, [1269] = { - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1098), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_COLON] = ACTIONS(3677), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1301), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1270] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3316), - [sym_preproc_directive] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_typedef] = ACTIONS(3316), - [anon_sym_extern] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_STAR] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_auto] = ACTIONS(3316), - [anon_sym_register] = ACTIONS(3316), - [anon_sym_inline] = ACTIONS(3316), - [anon_sym_const] = ACTIONS(3316), - [anon_sym_restrict] = ACTIONS(3316), - [anon_sym_volatile] = ACTIONS(3316), - [anon_sym__Atomic] = ACTIONS(3316), - [anon_sym_unsigned] = ACTIONS(3316), - [anon_sym_long] = ACTIONS(3316), - [anon_sym_short] = ACTIONS(3316), - [sym_primitive_type] = ACTIONS(3316), - [anon_sym_enum] = ACTIONS(3316), - [anon_sym_struct] = ACTIONS(3316), - [anon_sym_union] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3679), - [anon_sym_switch] = ACTIONS(3316), - [anon_sym_case] = ACTIONS(3316), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_break] = ACTIONS(3316), - [anon_sym_continue] = ACTIONS(3316), - [anon_sym_goto] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_sizeof] = ACTIONS(3316), - [sym_number_literal] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_null] = ACTIONS(3316), - [sym_identifier] = ACTIONS(3316), + [sym__expression] = STATE(1302), + [sym_conditional_expression] = STATE(1302), + [sym_assignment_expression] = STATE(1302), + [sym_pointer_expression] = STATE(1302), + [sym_logical_expression] = STATE(1302), + [sym_bitwise_expression] = STATE(1302), + [sym_equality_expression] = STATE(1302), + [sym_relational_expression] = STATE(1302), + [sym_shift_expression] = STATE(1302), + [sym_math_expression] = STATE(1302), + [sym_cast_expression] = STATE(1302), + [sym_sizeof_expression] = STATE(1302), + [sym_subscript_expression] = STATE(1302), + [sym_call_expression] = STATE(1302), + [sym_field_expression] = STATE(1302), + [sym_compound_literal_expression] = STATE(1302), + [sym_parenthesized_expression] = STATE(1302), + [sym_char_literal] = STATE(1302), + [sym_concatenated_string] = STATE(1302), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3527), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3529), + [sym_false] = ACTIONS(3529), + [sym_null] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3529), [sym_comment] = ACTIONS(39), }, [1271] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3326), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3324), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3324), - [sym_preproc_directive] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3326), - [anon_sym_typedef] = ACTIONS(3324), - [anon_sym_extern] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_STAR] = ACTIONS(3326), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_auto] = ACTIONS(3324), - [anon_sym_register] = ACTIONS(3324), - [anon_sym_inline] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_restrict] = ACTIONS(3324), - [anon_sym_volatile] = ACTIONS(3324), - [anon_sym__Atomic] = ACTIONS(3324), - [anon_sym_unsigned] = ACTIONS(3324), - [anon_sym_long] = ACTIONS(3324), - [anon_sym_short] = ACTIONS(3324), - [sym_primitive_type] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), - [anon_sym_struct] = ACTIONS(3324), - [anon_sym_union] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_else] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_case] = ACTIONS(3324), - [anon_sym_default] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_goto] = ACTIONS(3324), - [anon_sym_AMP] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3326), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_sizeof] = ACTIONS(3324), - [sym_number_literal] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_identifier] = ACTIONS(3324), + [sym_compound_statement] = STATE(1239), + [sym_labeled_statement] = STATE(1239), + [sym_expression_statement] = STATE(1239), + [sym_if_statement] = STATE(1239), + [sym_switch_statement] = STATE(1239), + [sym_case_statement] = STATE(1239), + [sym_while_statement] = STATE(1239), + [sym_do_statement] = STATE(1239), + [sym_for_statement] = STATE(1239), + [sym_return_statement] = STATE(1239), + [sym_break_statement] = STATE(1239), + [sym_continue_statement] = STATE(1239), + [sym_goto_statement] = STATE(1239), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1610), [sym_comment] = ACTIONS(39), }, [1272] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3336), - [sym_preproc_directive] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_typedef] = ACTIONS(3336), - [anon_sym_extern] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_STAR] = ACTIONS(3338), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_auto] = ACTIONS(3336), - [anon_sym_register] = ACTIONS(3336), - [anon_sym_inline] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_restrict] = ACTIONS(3336), - [anon_sym_volatile] = ACTIONS(3336), - [anon_sym__Atomic] = ACTIONS(3336), - [anon_sym_unsigned] = ACTIONS(3336), - [anon_sym_long] = ACTIONS(3336), - [anon_sym_short] = ACTIONS(3336), - [sym_primitive_type] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [anon_sym_struct] = ACTIONS(3336), - [anon_sym_union] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_goto] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3338), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_sizeof] = ACTIONS(3336), - [sym_number_literal] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_identifier] = ACTIONS(3336), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3531), [sym_comment] = ACTIONS(39), }, [1273] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3681), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1304), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3531), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1274] = { - [sym_compound_statement] = STATE(1320), - [sym_labeled_statement] = STATE(1320), - [sym_expression_statement] = STATE(1320), - [sym_if_statement] = STATE(1320), - [sym_switch_statement] = STATE(1320), - [sym_case_statement] = STATE(1320), - [sym_while_statement] = STATE(1320), - [sym_do_statement] = STATE(1320), - [sym_for_statement] = STATE(1320), - [sym_return_statement] = STATE(1320), - [sym_break_statement] = STATE(1320), - [sym_continue_statement] = STATE(1320), - [sym_goto_statement] = STATE(1320), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym__expression] = STATE(1305), + [sym_conditional_expression] = STATE(1305), + [sym_assignment_expression] = STATE(1305), + [sym_pointer_expression] = STATE(1305), + [sym_logical_expression] = STATE(1305), + [sym_bitwise_expression] = STATE(1305), + [sym_equality_expression] = STATE(1305), + [sym_relational_expression] = STATE(1305), + [sym_shift_expression] = STATE(1305), + [sym_math_expression] = STATE(1305), + [sym_cast_expression] = STATE(1305), + [sym_sizeof_expression] = STATE(1305), + [sym_subscript_expression] = STATE(1305), + [sym_call_expression] = STATE(1305), + [sym_field_expression] = STATE(1305), + [sym_compound_literal_expression] = STATE(1305), + [sym_parenthesized_expression] = STATE(1305), + [sym_char_literal] = STATE(1305), + [sym_concatenated_string] = STATE(1305), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3531), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3181), + [sym_true] = ACTIONS(3535), + [sym_false] = ACTIONS(3535), + [sym_null] = ACTIONS(3535), + [sym_identifier] = ACTIONS(3535), [sym_comment] = ACTIONS(39), }, [1275] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1322), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(1175), + [sym_labeled_statement] = STATE(1175), + [sym_expression_statement] = STATE(1175), + [sym_if_statement] = STATE(1175), + [sym_switch_statement] = STATE(1175), + [sym_case_statement] = STATE(1175), + [sym_while_statement] = STATE(1175), + [sym_do_statement] = STATE(1175), + [sym_for_statement] = STATE(1175), + [sym_return_statement] = STATE(1175), + [sym_break_statement] = STATE(1175), + [sym_continue_statement] = STATE(1175), + [sym_goto_statement] = STATE(1175), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(2484), [sym_comment] = ACTIONS(39), }, [1276] = { - [sym__expression] = STATE(1323), - [sym_conditional_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1323), - [sym_pointer_expression] = STATE(1323), - [sym_logical_expression] = STATE(1323), - [sym_bitwise_expression] = STATE(1323), - [sym_equality_expression] = STATE(1323), - [sym_relational_expression] = STATE(1323), - [sym_shift_expression] = STATE(1323), - [sym_math_expression] = STATE(1323), - [sym_cast_expression] = STATE(1323), - [sym_sizeof_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_field_expression] = STATE(1323), - [sym_compound_literal_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_char_literal] = STATE(1323), - [sym_concatenated_string] = STATE(1323), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3685), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3687), - [sym_false] = ACTIONS(3687), - [sym_null] = ACTIONS(3687), - [sym_identifier] = ACTIONS(3687), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1307), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3537), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1277] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym__expression] = STATE(1308), + [sym_conditional_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1308), + [sym_pointer_expression] = STATE(1308), + [sym_logical_expression] = STATE(1308), + [sym_bitwise_expression] = STATE(1308), + [sym_equality_expression] = STATE(1308), + [sym_relational_expression] = STATE(1308), + [sym_shift_expression] = STATE(1308), + [sym_math_expression] = STATE(1308), + [sym_cast_expression] = STATE(1308), + [sym_sizeof_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_call_expression] = STATE(1308), + [sym_field_expression] = STATE(1308), + [sym_compound_literal_expression] = STATE(1308), + [sym_parenthesized_expression] = STATE(1308), + [sym_char_literal] = STATE(1308), + [sym_concatenated_string] = STATE(1308), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3537), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3539), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [sym_null] = ACTIONS(3541), + [sym_identifier] = ACTIONS(3541), [sym_comment] = ACTIONS(39), }, [1278] = { - [sym__expression] = STATE(1325), - [sym_conditional_expression] = STATE(1325), - [sym_assignment_expression] = STATE(1325), - [sym_pointer_expression] = STATE(1325), - [sym_logical_expression] = STATE(1325), - [sym_bitwise_expression] = STATE(1325), - [sym_equality_expression] = STATE(1325), - [sym_relational_expression] = STATE(1325), - [sym_shift_expression] = STATE(1325), - [sym_math_expression] = STATE(1325), - [sym_cast_expression] = STATE(1325), - [sym_sizeof_expression] = STATE(1325), - [sym_subscript_expression] = STATE(1325), - [sym_call_expression] = STATE(1325), - [sym_field_expression] = STATE(1325), - [sym_compound_literal_expression] = STATE(1325), - [sym_parenthesized_expression] = STATE(1325), - [sym_char_literal] = STATE(1325), - [sym_concatenated_string] = STATE(1325), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3691), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3693), - [sym_false] = ACTIONS(3693), - [sym_null] = ACTIONS(3693), - [sym_identifier] = ACTIONS(3693), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3543), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1279] = { - [sym__expression] = STATE(1326), - [sym_conditional_expression] = STATE(1326), - [sym_assignment_expression] = STATE(1326), - [sym_pointer_expression] = STATE(1326), - [sym_logical_expression] = STATE(1326), - [sym_bitwise_expression] = STATE(1326), - [sym_equality_expression] = STATE(1326), - [sym_relational_expression] = STATE(1326), - [sym_shift_expression] = STATE(1326), - [sym_math_expression] = STATE(1326), - [sym_cast_expression] = STATE(1326), - [sym_sizeof_expression] = STATE(1326), - [sym_subscript_expression] = STATE(1326), - [sym_call_expression] = STATE(1326), - [sym_field_expression] = STATE(1326), - [sym_compound_literal_expression] = STATE(1326), - [sym_parenthesized_expression] = STATE(1326), - [sym_char_literal] = STATE(1326), - [sym_concatenated_string] = STATE(1326), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3695), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3697), - [sym_false] = ACTIONS(3697), - [sym_null] = ACTIONS(3697), - [sym_identifier] = ACTIONS(3697), + [sym_compound_statement] = STATE(1282), + [sym_labeled_statement] = STATE(1282), + [sym_expression_statement] = STATE(1282), + [sym_if_statement] = STATE(1282), + [sym_switch_statement] = STATE(1282), + [sym_case_statement] = STATE(1282), + [sym_while_statement] = STATE(1282), + [sym_do_statement] = STATE(1282), + [sym_for_statement] = STATE(1282), + [sym_return_statement] = STATE(1282), + [sym_break_statement] = STATE(1282), + [sym_continue_statement] = STATE(1282), + [sym_goto_statement] = STATE(1282), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1030), [sym_comment] = ACTIONS(39), }, [1280] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3545), [sym_comment] = ACTIONS(39), }, [1281] = { - [sym_declaration] = STATE(1045), - [sym_type_definition] = STATE(1045), - [sym__declaration_specifiers] = STATE(1046), - [sym_compound_statement] = STATE(1045), - [sym_storage_class_specifier] = STATE(96), - [sym_type_qualifier] = STATE(96), - [sym__type_specifier] = STATE(95), - [sym_sized_type_specifier] = STATE(95), - [sym_enum_specifier] = STATE(95), - [sym_struct_specifier] = STATE(95), - [sym_union_specifier] = STATE(95), - [sym_labeled_statement] = STATE(1045), - [sym_expression_statement] = STATE(1045), - [sym_if_statement] = STATE(1045), - [sym_switch_statement] = STATE(1045), - [sym_case_statement] = STATE(1045), - [sym_while_statement] = STATE(1045), - [sym_do_statement] = STATE(1045), - [sym_for_statement] = STATE(1045), - [sym_return_statement] = STATE(1045), - [sym_break_statement] = STATE(1045), - [sym_continue_statement] = STATE(1045), - [sym_goto_statement] = STATE(1045), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym_macro_type_specifier] = STATE(95), - [aux_sym__declaration_specifiers_repeat1] = STATE(96), - [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(3701), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1311), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3545), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1282] = { - [sym__expression] = STATE(1329), - [sym_conditional_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1329), - [sym_pointer_expression] = STATE(1329), - [sym_logical_expression] = STATE(1329), - [sym_bitwise_expression] = STATE(1329), - [sym_equality_expression] = STATE(1329), - [sym_relational_expression] = STATE(1329), - [sym_shift_expression] = STATE(1329), - [sym_math_expression] = STATE(1329), - [sym_cast_expression] = STATE(1329), - [sym_sizeof_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_call_expression] = STATE(1329), - [sym_field_expression] = STATE(1329), - [sym_compound_literal_expression] = STATE(1329), - [sym_parenthesized_expression] = STATE(1329), - [sym_char_literal] = STATE(1329), - [sym_concatenated_string] = STATE(1329), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3703), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3705), - [sym_false] = ACTIONS(3705), - [sym_null] = ACTIONS(3705), - [sym_identifier] = ACTIONS(3705), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3547), + [sym_preproc_directive] = ACTIONS(3547), + [anon_sym_SEMI] = ACTIONS(3549), + [anon_sym_typedef] = ACTIONS(3547), + [anon_sym_extern] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_RBRACE] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3549), + [anon_sym_STAR] = ACTIONS(3549), + [anon_sym_static] = ACTIONS(3547), + [anon_sym_auto] = ACTIONS(3547), + [anon_sym_register] = ACTIONS(3547), + [anon_sym_inline] = ACTIONS(3547), + [anon_sym_const] = ACTIONS(3547), + [anon_sym_restrict] = ACTIONS(3547), + [anon_sym_volatile] = ACTIONS(3547), + [anon_sym__Atomic] = ACTIONS(3547), + [anon_sym_unsigned] = ACTIONS(3547), + [anon_sym_long] = ACTIONS(3547), + [anon_sym_short] = ACTIONS(3547), + [sym_primitive_type] = ACTIONS(3547), + [anon_sym_enum] = ACTIONS(3547), + [anon_sym_struct] = ACTIONS(3547), + [anon_sym_union] = ACTIONS(3547), + [anon_sym_if] = ACTIONS(3547), + [anon_sym_else] = ACTIONS(3547), + [anon_sym_switch] = ACTIONS(3547), + [anon_sym_case] = ACTIONS(3547), + [anon_sym_default] = ACTIONS(3547), + [anon_sym_while] = ACTIONS(3547), + [anon_sym_do] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3547), + [anon_sym_return] = ACTIONS(3547), + [anon_sym_break] = ACTIONS(3547), + [anon_sym_continue] = ACTIONS(3547), + [anon_sym_goto] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_BANG] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3547), + [anon_sym_DASH] = ACTIONS(3547), + [anon_sym_DASH_DASH] = ACTIONS(3549), + [anon_sym_PLUS_PLUS] = ACTIONS(3549), + [anon_sym_sizeof] = ACTIONS(3547), + [sym_number_literal] = ACTIONS(3549), + [anon_sym_SQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [sym_true] = ACTIONS(3547), + [sym_false] = ACTIONS(3547), + [sym_null] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3547), [sym_comment] = ACTIONS(39), }, - [1283] = { - [sym_declaration] = STATE(1330), - [sym__declaration_specifiers] = STATE(716), - [sym_storage_class_specifier] = STATE(96), - [sym_type_qualifier] = STATE(96), - [sym__type_specifier] = STATE(95), - [sym_sized_type_specifier] = STATE(95), - [sym_enum_specifier] = STATE(95), - [sym_struct_specifier] = STATE(95), - [sym_union_specifier] = STATE(95), - [sym__expression] = STATE(1331), - [sym_conditional_expression] = STATE(1331), - [sym_assignment_expression] = STATE(1331), - [sym_pointer_expression] = STATE(1331), - [sym_logical_expression] = STATE(1331), - [sym_bitwise_expression] = STATE(1331), - [sym_equality_expression] = STATE(1331), - [sym_relational_expression] = STATE(1331), - [sym_shift_expression] = STATE(1331), - [sym_math_expression] = STATE(1331), - [sym_cast_expression] = STATE(1331), - [sym_sizeof_expression] = STATE(1331), - [sym_subscript_expression] = STATE(1331), - [sym_call_expression] = STATE(1331), - [sym_field_expression] = STATE(1331), - [sym_compound_literal_expression] = STATE(1331), - [sym_parenthesized_expression] = STATE(1331), - [sym_char_literal] = STATE(1331), - [sym_concatenated_string] = STATE(1331), - [sym_string_literal] = STATE(378), - [sym_macro_type_specifier] = STATE(95), - [aux_sym__declaration_specifiers_repeat1] = STATE(96), - [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3707), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3709), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3711), - [sym_false] = ACTIONS(3711), - [sym_null] = ACTIONS(3711), - [sym_identifier] = ACTIONS(1705), + [1283] = { + [sym_compound_statement] = STATE(1312), + [sym_labeled_statement] = STATE(1312), + [sym_expression_statement] = STATE(1312), + [sym_if_statement] = STATE(1312), + [sym_switch_statement] = STATE(1312), + [sym_case_statement] = STATE(1312), + [sym_while_statement] = STATE(1312), + [sym_do_statement] = STATE(1312), + [sym_for_statement] = STATE(1312), + [sym_return_statement] = STATE(1312), + [sym_break_statement] = STATE(1312), + [sym_continue_statement] = STATE(1312), + [sym_goto_statement] = STATE(1312), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1612), [sym_comment] = ACTIONS(39), }, [1284] = { - [sym_compound_statement] = STATE(1054), - [sym_labeled_statement] = STATE(1054), - [sym_expression_statement] = STATE(1054), - [sym_if_statement] = STATE(1054), - [sym_switch_statement] = STATE(1054), - [sym_case_statement] = STATE(1054), - [sym_while_statement] = STATE(1054), - [sym_do_statement] = STATE(1054), - [sym_for_statement] = STATE(1054), - [sym_return_statement] = STATE(1054), - [sym_break_statement] = STATE(1054), - [sym_continue_statement] = STATE(1054), - [sym_goto_statement] = STATE(1054), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(3453), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3551), [sym_comment] = ACTIONS(39), }, [1285] = { - [sym_compound_statement] = STATE(1332), - [sym_labeled_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_if_statement] = STATE(1332), - [sym_switch_statement] = STATE(1332), - [sym_case_statement] = STATE(1332), - [sym_while_statement] = STATE(1332), - [sym_do_statement] = STATE(1332), - [sym_for_statement] = STATE(1332), - [sym_return_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_goto_statement] = STATE(1332), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(2825), + [sym_compound_statement] = STATE(1254), + [sym_labeled_statement] = STATE(1254), + [sym_expression_statement] = STATE(1254), + [sym_if_statement] = STATE(1254), + [sym_switch_statement] = STATE(1254), + [sym_case_statement] = STATE(1254), + [sym_while_statement] = STATE(1254), + [sym_do_statement] = STATE(1254), + [sym_for_statement] = STATE(1254), + [sym_return_statement] = STATE(1254), + [sym_break_statement] = STATE(1254), + [sym_continue_statement] = STATE(1254), + [sym_goto_statement] = STATE(1254), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3057), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3065), [sym_comment] = ACTIONS(39), }, [1286] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3527), - [anon_sym_LPAREN] = ACTIONS(3529), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3527), - [sym_preproc_directive] = ACTIONS(3527), - [anon_sym_SEMI] = ACTIONS(3529), - [anon_sym_typedef] = ACTIONS(3527), - [anon_sym_extern] = ACTIONS(3527), - [anon_sym_LBRACE] = ACTIONS(3529), - [anon_sym_STAR] = ACTIONS(3529), - [anon_sym_static] = ACTIONS(3527), - [anon_sym_auto] = ACTIONS(3527), - [anon_sym_register] = ACTIONS(3527), - [anon_sym_inline] = ACTIONS(3527), - [anon_sym_const] = ACTIONS(3527), - [anon_sym_restrict] = ACTIONS(3527), - [anon_sym_volatile] = ACTIONS(3527), - [anon_sym__Atomic] = ACTIONS(3527), - [anon_sym_unsigned] = ACTIONS(3527), - [anon_sym_long] = ACTIONS(3527), - [anon_sym_short] = ACTIONS(3527), - [sym_primitive_type] = ACTIONS(3527), - [anon_sym_enum] = ACTIONS(3527), - [anon_sym_struct] = ACTIONS(3527), - [anon_sym_union] = ACTIONS(3527), - [anon_sym_if] = ACTIONS(3527), - [anon_sym_else] = ACTIONS(3527), - [anon_sym_switch] = ACTIONS(3527), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3527), - [anon_sym_while] = ACTIONS(3527), - [anon_sym_do] = ACTIONS(3527), - [anon_sym_for] = ACTIONS(3527), - [anon_sym_return] = ACTIONS(3527), - [anon_sym_break] = ACTIONS(3527), - [anon_sym_continue] = ACTIONS(3527), - [anon_sym_goto] = ACTIONS(3527), - [anon_sym_AMP] = ACTIONS(3529), - [anon_sym_BANG] = ACTIONS(3529), - [anon_sym_TILDE] = ACTIONS(3529), - [anon_sym_PLUS] = ACTIONS(3527), - [anon_sym_DASH] = ACTIONS(3527), - [anon_sym_DASH_DASH] = ACTIONS(3529), - [anon_sym_PLUS_PLUS] = ACTIONS(3529), - [anon_sym_sizeof] = ACTIONS(3527), - [sym_number_literal] = ACTIONS(3529), - [anon_sym_SQUOTE] = ACTIONS(3529), - [anon_sym_DQUOTE] = ACTIONS(3529), - [sym_true] = ACTIONS(3527), - [sym_false] = ACTIONS(3527), - [sym_null] = ACTIONS(3527), - [sym_identifier] = ACTIONS(3527), + [sym__expression] = STATE(1315), + [sym_conditional_expression] = STATE(1315), + [sym_assignment_expression] = STATE(1315), + [sym_pointer_expression] = STATE(1315), + [sym_logical_expression] = STATE(1315), + [sym_bitwise_expression] = STATE(1315), + [sym_equality_expression] = STATE(1315), + [sym_relational_expression] = STATE(1315), + [sym_shift_expression] = STATE(1315), + [sym_math_expression] = STATE(1315), + [sym_cast_expression] = STATE(1315), + [sym_sizeof_expression] = STATE(1315), + [sym_subscript_expression] = STATE(1315), + [sym_call_expression] = STATE(1315), + [sym_field_expression] = STATE(1315), + [sym_compound_literal_expression] = STATE(1315), + [sym_parenthesized_expression] = STATE(1315), + [sym_char_literal] = STATE(1315), + [sym_concatenated_string] = STATE(1315), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3553), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3555), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3557), + [sym_false] = ACTIONS(3557), + [sym_null] = ACTIONS(3557), + [sym_identifier] = ACTIONS(3557), [sym_comment] = ACTIONS(39), }, [1287] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3531), - [anon_sym_LPAREN] = ACTIONS(3533), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3531), - [sym_preproc_directive] = ACTIONS(3531), - [anon_sym_SEMI] = ACTIONS(3533), - [anon_sym_typedef] = ACTIONS(3531), - [anon_sym_extern] = ACTIONS(3531), - [anon_sym_LBRACE] = ACTIONS(3533), - [anon_sym_STAR] = ACTIONS(3533), - [anon_sym_static] = ACTIONS(3531), - [anon_sym_auto] = ACTIONS(3531), - [anon_sym_register] = ACTIONS(3531), - [anon_sym_inline] = ACTIONS(3531), - [anon_sym_const] = ACTIONS(3531), - [anon_sym_restrict] = ACTIONS(3531), - [anon_sym_volatile] = ACTIONS(3531), - [anon_sym__Atomic] = ACTIONS(3531), - [anon_sym_unsigned] = ACTIONS(3531), - [anon_sym_long] = ACTIONS(3531), - [anon_sym_short] = ACTIONS(3531), - [sym_primitive_type] = ACTIONS(3531), - [anon_sym_enum] = ACTIONS(3531), - [anon_sym_struct] = ACTIONS(3531), - [anon_sym_union] = ACTIONS(3531), - [anon_sym_if] = ACTIONS(3531), - [anon_sym_else] = ACTIONS(3531), - [anon_sym_switch] = ACTIONS(3531), - [anon_sym_case] = ACTIONS(3531), - [anon_sym_default] = ACTIONS(3531), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(3531), - [anon_sym_for] = ACTIONS(3531), - [anon_sym_return] = ACTIONS(3531), - [anon_sym_break] = ACTIONS(3531), - [anon_sym_continue] = ACTIONS(3531), - [anon_sym_goto] = ACTIONS(3531), - [anon_sym_AMP] = ACTIONS(3533), - [anon_sym_BANG] = ACTIONS(3533), - [anon_sym_TILDE] = ACTIONS(3533), - [anon_sym_PLUS] = ACTIONS(3531), - [anon_sym_DASH] = ACTIONS(3531), - [anon_sym_DASH_DASH] = ACTIONS(3533), - [anon_sym_PLUS_PLUS] = ACTIONS(3533), - [anon_sym_sizeof] = ACTIONS(3531), - [sym_number_literal] = ACTIONS(3533), - [anon_sym_SQUOTE] = ACTIONS(3533), - [anon_sym_DQUOTE] = ACTIONS(3533), - [sym_true] = ACTIONS(3531), - [sym_false] = ACTIONS(3531), - [sym_null] = ACTIONS(3531), - [sym_identifier] = ACTIONS(3531), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3559), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1288] = { - [sym_compound_statement] = STATE(1333), - [sym_labeled_statement] = STATE(1333), - [sym_expression_statement] = STATE(1333), - [sym_if_statement] = STATE(1333), - [sym_switch_statement] = STATE(1333), - [sym_case_statement] = STATE(1333), - [sym_while_statement] = STATE(1333), - [sym_do_statement] = STATE(1333), - [sym_for_statement] = STATE(1333), - [sym_return_statement] = STATE(1333), - [sym_break_statement] = STATE(1333), - [sym_continue_statement] = STATE(1333), - [sym_goto_statement] = STATE(1333), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(2825), + [sym__expression] = STATE(1317), + [sym_conditional_expression] = STATE(1317), + [sym_assignment_expression] = STATE(1317), + [sym_pointer_expression] = STATE(1317), + [sym_logical_expression] = STATE(1317), + [sym_bitwise_expression] = STATE(1317), + [sym_equality_expression] = STATE(1317), + [sym_relational_expression] = STATE(1317), + [sym_shift_expression] = STATE(1317), + [sym_math_expression] = STATE(1317), + [sym_cast_expression] = STATE(1317), + [sym_sizeof_expression] = STATE(1317), + [sym_subscript_expression] = STATE(1317), + [sym_call_expression] = STATE(1317), + [sym_field_expression] = STATE(1317), + [sym_compound_literal_expression] = STATE(1317), + [sym_parenthesized_expression] = STATE(1317), + [sym_char_literal] = STATE(1317), + [sym_concatenated_string] = STATE(1317), + [sym_string_literal] = STATE(376), + [anon_sym_SEMI] = ACTIONS(3559), + [anon_sym_LPAREN2] = ACTIONS(847), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_sizeof] = ACTIONS(859), + [sym_number_literal] = ACTIONS(3561), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3563), + [sym_false] = ACTIONS(3563), + [sym_null] = ACTIONS(3563), + [sym_identifier] = ACTIONS(3563), [sym_comment] = ACTIONS(39), }, [1289] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3713), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2346), + [sym_preproc_directive] = ACTIONS(2346), + [anon_sym_SEMI] = ACTIONS(2344), + [anon_sym_typedef] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_LBRACE] = ACTIONS(2344), + [anon_sym_LPAREN2] = ACTIONS(2344), + [anon_sym_STAR] = ACTIONS(2344), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_auto] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_inline] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_restrict] = ACTIONS(2346), + [anon_sym_volatile] = ACTIONS(2346), + [anon_sym__Atomic] = ACTIONS(2346), + [anon_sym_unsigned] = ACTIONS(2346), + [anon_sym_long] = ACTIONS(2346), + [anon_sym_short] = ACTIONS(2346), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_switch] = ACTIONS(2346), + [anon_sym_case] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_goto] = ACTIONS(2346), + [anon_sym_AMP] = ACTIONS(2344), + [anon_sym_BANG] = ACTIONS(2344), + [anon_sym_TILDE] = ACTIONS(2344), + [anon_sym_PLUS] = ACTIONS(2346), + [anon_sym_DASH] = ACTIONS(2346), + [anon_sym_DASH_DASH] = ACTIONS(2344), + [anon_sym_PLUS_PLUS] = ACTIONS(2344), + [anon_sym_sizeof] = ACTIONS(2346), + [sym_number_literal] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2344), + [anon_sym_DQUOTE] = ACTIONS(2344), + [sym_true] = ACTIONS(2346), + [sym_false] = ACTIONS(2346), + [sym_null] = ACTIONS(2346), + [sym_identifier] = ACTIONS(2346), [sym_comment] = ACTIONS(39), }, [1290] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1335), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3713), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3393), + [sym_preproc_directive] = ACTIONS(3393), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_typedef] = ACTIONS(3393), + [anon_sym_extern] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_LPAREN2] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3393), + [anon_sym_auto] = ACTIONS(3393), + [anon_sym_register] = ACTIONS(3393), + [anon_sym_inline] = ACTIONS(3393), + [anon_sym_const] = ACTIONS(3393), + [anon_sym_restrict] = ACTIONS(3393), + [anon_sym_volatile] = ACTIONS(3393), + [anon_sym__Atomic] = ACTIONS(3393), + [anon_sym_unsigned] = ACTIONS(3393), + [anon_sym_long] = ACTIONS(3393), + [anon_sym_short] = ACTIONS(3393), + [sym_primitive_type] = ACTIONS(3393), + [anon_sym_enum] = ACTIONS(3393), + [anon_sym_struct] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3393), + [anon_sym_else] = ACTIONS(3393), + [anon_sym_switch] = ACTIONS(3393), + [anon_sym_case] = ACTIONS(3393), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3393), + [anon_sym_do] = ACTIONS(3393), + [anon_sym_for] = ACTIONS(3393), + [anon_sym_return] = ACTIONS(3393), + [anon_sym_break] = ACTIONS(3393), + [anon_sym_continue] = ACTIONS(3393), + [anon_sym_goto] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_DASH_DASH] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_sizeof] = ACTIONS(3393), + [sym_number_literal] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [sym_true] = ACTIONS(3393), + [sym_false] = ACTIONS(3393), + [sym_null] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3393), [sym_comment] = ACTIONS(39), }, [1291] = { - [sym__expression] = STATE(1336), - [sym_conditional_expression] = STATE(1336), - [sym_assignment_expression] = STATE(1336), - [sym_pointer_expression] = STATE(1336), - [sym_logical_expression] = STATE(1336), - [sym_bitwise_expression] = STATE(1336), - [sym_equality_expression] = STATE(1336), - [sym_relational_expression] = STATE(1336), - [sym_shift_expression] = STATE(1336), - [sym_math_expression] = STATE(1336), - [sym_cast_expression] = STATE(1336), - [sym_sizeof_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_field_expression] = STATE(1336), - [sym_compound_literal_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_char_literal] = STATE(1336), - [sym_concatenated_string] = STATE(1336), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3713), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3715), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3717), - [sym_false] = ACTIONS(3717), - [sym_null] = ACTIONS(3717), - [sym_identifier] = ACTIONS(3717), + [sym_compound_statement] = STATE(1318), + [sym_labeled_statement] = STATE(1318), + [sym_expression_statement] = STATE(1318), + [sym_if_statement] = STATE(1318), + [sym_switch_statement] = STATE(1318), + [sym_case_statement] = STATE(1318), + [sym_while_statement] = STATE(1318), + [sym_do_statement] = STATE(1318), + [sym_for_statement] = STATE(1318), + [sym_return_statement] = STATE(1318), + [sym_break_statement] = STATE(1318), + [sym_continue_statement] = STATE(1318), + [sym_goto_statement] = STATE(1318), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3067), [sym_comment] = ACTIONS(39), }, [1292] = { - [sym_compound_statement] = STATE(1337), - [sym_labeled_statement] = STATE(1337), - [sym_expression_statement] = STATE(1337), - [sym_if_statement] = STATE(1337), - [sym_switch_statement] = STATE(1337), - [sym_case_statement] = STATE(1337), - [sym_while_statement] = STATE(1337), - [sym_do_statement] = STATE(1337), - [sym_for_statement] = STATE(1337), - [sym_return_statement] = STATE(1337), - [sym_break_statement] = STATE(1337), - [sym_continue_statement] = STATE(1337), - [sym_goto_statement] = STATE(1337), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(2960), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3565), [sym_comment] = ACTIONS(39), }, [1293] = { - [sym_compound_statement] = STATE(1083), - [sym_labeled_statement] = STATE(1083), - [sym_expression_statement] = STATE(1083), - [sym_if_statement] = STATE(1083), - [sym_switch_statement] = STATE(1083), - [sym_case_statement] = STATE(1083), - [sym_while_statement] = STATE(1083), - [sym_do_statement] = STATE(1083), - [sym_for_statement] = STATE(1083), - [sym_return_statement] = STATE(1083), - [sym_break_statement] = STATE(1083), - [sym_continue_statement] = STATE(1083), - [sym_goto_statement] = STATE(1083), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(2960), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1320), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3565), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1294] = { - [sym_compound_statement] = STATE(1086), - [sym_labeled_statement] = STATE(1086), - [sym_expression_statement] = STATE(1086), - [sym_if_statement] = STATE(1086), - [sym_switch_statement] = STATE(1086), - [sym_case_statement] = STATE(1086), - [sym_while_statement] = STATE(1086), - [sym_do_statement] = STATE(1086), - [sym_for_statement] = STATE(1086), - [sym_return_statement] = STATE(1086), - [sym_break_statement] = STATE(1086), - [sym_continue_statement] = STATE(1086), - [sym_goto_statement] = STATE(1086), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(2960), + [sym__expression] = STATE(1321), + [sym_conditional_expression] = STATE(1321), + [sym_assignment_expression] = STATE(1321), + [sym_pointer_expression] = STATE(1321), + [sym_logical_expression] = STATE(1321), + [sym_bitwise_expression] = STATE(1321), + [sym_equality_expression] = STATE(1321), + [sym_relational_expression] = STATE(1321), + [sym_shift_expression] = STATE(1321), + [sym_math_expression] = STATE(1321), + [sym_cast_expression] = STATE(1321), + [sym_sizeof_expression] = STATE(1321), + [sym_subscript_expression] = STATE(1321), + [sym_call_expression] = STATE(1321), + [sym_field_expression] = STATE(1321), + [sym_compound_literal_expression] = STATE(1321), + [sym_parenthesized_expression] = STATE(1321), + [sym_char_literal] = STATE(1321), + [sym_concatenated_string] = STATE(1321), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3565), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3567), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3569), + [sym_false] = ACTIONS(3569), + [sym_null] = ACTIONS(3569), + [sym_identifier] = ACTIONS(3569), [sym_comment] = ACTIONS(39), }, [1295] = { - [sym__expression] = STATE(1339), - [sym_conditional_expression] = STATE(1339), - [sym_assignment_expression] = STATE(1339), - [sym_pointer_expression] = STATE(1339), - [sym_logical_expression] = STATE(1339), - [sym_bitwise_expression] = STATE(1339), - [sym_equality_expression] = STATE(1339), - [sym_relational_expression] = STATE(1339), - [sym_shift_expression] = STATE(1339), - [sym_math_expression] = STATE(1339), - [sym_cast_expression] = STATE(1339), - [sym_sizeof_expression] = STATE(1339), - [sym_subscript_expression] = STATE(1339), - [sym_call_expression] = STATE(1339), - [sym_field_expression] = STATE(1339), - [sym_compound_literal_expression] = STATE(1339), - [sym_parenthesized_expression] = STATE(1339), - [sym_char_literal] = STATE(1339), - [sym_concatenated_string] = STATE(1339), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3721), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3723), - [sym_false] = ACTIONS(3723), - [sym_null] = ACTIONS(3723), - [sym_identifier] = ACTIONS(3723), + [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(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2745), [sym_comment] = ACTIONS(39), }, [1296] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1323), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3571), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1297] = { - [sym__expression] = STATE(1341), - [sym_conditional_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1341), - [sym_pointer_expression] = STATE(1341), - [sym_logical_expression] = STATE(1341), - [sym_bitwise_expression] = STATE(1341), - [sym_equality_expression] = STATE(1341), - [sym_relational_expression] = STATE(1341), - [sym_shift_expression] = STATE(1341), - [sym_math_expression] = STATE(1341), - [sym_cast_expression] = STATE(1341), - [sym_sizeof_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_call_expression] = STATE(1341), - [sym_field_expression] = STATE(1341), - [sym_compound_literal_expression] = STATE(1341), - [sym_parenthesized_expression] = STATE(1341), - [sym_char_literal] = STATE(1341), - [sym_concatenated_string] = STATE(1341), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3727), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym__expression] = STATE(1324), + [sym_conditional_expression] = STATE(1324), + [sym_assignment_expression] = STATE(1324), + [sym_pointer_expression] = STATE(1324), + [sym_logical_expression] = STATE(1324), + [sym_bitwise_expression] = STATE(1324), + [sym_equality_expression] = STATE(1324), + [sym_relational_expression] = STATE(1324), + [sym_shift_expression] = STATE(1324), + [sym_math_expression] = STATE(1324), + [sym_cast_expression] = STATE(1324), + [sym_sizeof_expression] = STATE(1324), + [sym_subscript_expression] = STATE(1324), + [sym_call_expression] = STATE(1324), + [sym_field_expression] = STATE(1324), + [sym_compound_literal_expression] = STATE(1324), + [sym_parenthesized_expression] = STATE(1324), + [sym_char_literal] = STATE(1324), + [sym_concatenated_string] = STATE(1324), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3571), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3573), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3729), - [sym_false] = ACTIONS(3729), - [sym_null] = ACTIONS(3729), - [sym_identifier] = ACTIONS(3729), + [sym_true] = ACTIONS(3575), + [sym_false] = ACTIONS(3575), + [sym_null] = ACTIONS(3575), + [sym_identifier] = ACTIONS(3575), [sym_comment] = ACTIONS(39), }, [1298] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3731), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3577), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1299] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3733), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3487), + [sym_preproc_directive] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3489), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(3487), + [anon_sym_LBRACE] = ACTIONS(3489), + [anon_sym_LPAREN2] = ACTIONS(3489), + [anon_sym_STAR] = ACTIONS(3489), + [anon_sym_static] = ACTIONS(3487), + [anon_sym_auto] = ACTIONS(3487), + [anon_sym_register] = ACTIONS(3487), + [anon_sym_inline] = ACTIONS(3487), + [anon_sym_const] = ACTIONS(3487), + [anon_sym_restrict] = ACTIONS(3487), + [anon_sym_volatile] = ACTIONS(3487), + [anon_sym__Atomic] = ACTIONS(3487), + [anon_sym_unsigned] = ACTIONS(3487), + [anon_sym_long] = ACTIONS(3487), + [anon_sym_short] = ACTIONS(3487), + [sym_primitive_type] = ACTIONS(3487), + [anon_sym_enum] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(3487), + [anon_sym_union] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_else] = ACTIONS(3487), + [anon_sym_switch] = ACTIONS(3487), + [anon_sym_case] = ACTIONS(3487), + [anon_sym_default] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_break] = ACTIONS(3487), + [anon_sym_continue] = ACTIONS(3487), + [anon_sym_goto] = ACTIONS(3487), + [anon_sym_AMP] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3489), + [anon_sym_TILDE] = ACTIONS(3489), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_DASH_DASH] = ACTIONS(3489), + [anon_sym_PLUS_PLUS] = ACTIONS(3489), + [anon_sym_sizeof] = ACTIONS(3487), + [sym_number_literal] = ACTIONS(3489), + [anon_sym_SQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE] = ACTIONS(3489), + [sym_true] = ACTIONS(3487), + [sym_false] = ACTIONS(3487), + [sym_null] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3487), [sym_comment] = ACTIONS(39), }, [1300] = { - [sym_declaration] = STATE(947), - [sym_type_definition] = STATE(947), - [sym__declaration_specifiers] = STATE(716), - [sym_compound_statement] = STATE(947), - [sym_storage_class_specifier] = STATE(96), - [sym_type_qualifier] = STATE(96), - [sym__type_specifier] = STATE(95), - [sym_sized_type_specifier] = STATE(95), - [sym_enum_specifier] = STATE(95), - [sym_struct_specifier] = STATE(95), - [sym_union_specifier] = STATE(95), - [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(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [sym_macro_type_specifier] = STATE(95), - [aux_sym__declaration_specifiers_repeat1] = STATE(96), - [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(3639), + [sym_compound_statement] = STATE(1326), + [sym_labeled_statement] = STATE(1326), + [sym_expression_statement] = STATE(1326), + [sym_if_statement] = STATE(1326), + [sym_switch_statement] = STATE(1326), + [sym_case_statement] = STATE(1326), + [sym_while_statement] = STATE(1326), + [sym_do_statement] = STATE(1326), + [sym_for_statement] = STATE(1326), + [sym_return_statement] = STATE(1326), + [sym_break_statement] = STATE(1326), + [sym_continue_statement] = STATE(1326), + [sym_goto_statement] = STATE(1326), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2747), [sym_comment] = ACTIONS(39), }, [1301] = { - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3515), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), - [sym_identifier] = ACTIONS(86), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3579), [sym_comment] = ACTIONS(39), }, [1302] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1328), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3579), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1303] = { - [sym__expression] = STATE(1346), - [sym_conditional_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1346), - [sym_pointer_expression] = STATE(1346), - [sym_logical_expression] = STATE(1346), - [sym_bitwise_expression] = STATE(1346), - [sym_equality_expression] = STATE(1346), - [sym_relational_expression] = STATE(1346), - [sym_shift_expression] = STATE(1346), - [sym_math_expression] = STATE(1346), - [sym_cast_expression] = STATE(1346), - [sym_sizeof_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_call_expression] = STATE(1346), - [sym_field_expression] = STATE(1346), - [sym_compound_literal_expression] = STATE(1346), - [sym_parenthesized_expression] = STATE(1346), - [sym_char_literal] = STATE(1346), - [sym_concatenated_string] = STATE(1346), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3737), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3739), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3741), - [sym_false] = ACTIONS(3741), - [sym_null] = ACTIONS(3741), - [sym_identifier] = ACTIONS(3741), + [sym_compound_statement] = STATE(1282), + [sym_labeled_statement] = STATE(1282), + [sym_expression_statement] = STATE(1282), + [sym_if_statement] = STATE(1282), + [sym_switch_statement] = STATE(1282), + [sym_case_statement] = STATE(1282), + [sym_while_statement] = STATE(1282), + [sym_do_statement] = STATE(1282), + [sym_for_statement] = STATE(1282), + [sym_return_statement] = STATE(1282), + [sym_break_statement] = STATE(1282), + [sym_continue_statement] = STATE(1282), + [sym_goto_statement] = STATE(1282), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1610), [sym_comment] = ACTIONS(39), }, [1304] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3743), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3581), [sym_comment] = ACTIONS(39), }, [1305] = { - [sym_compound_statement] = STATE(1308), - [sym_labeled_statement] = STATE(1308), - [sym_expression_statement] = STATE(1308), - [sym_if_statement] = STATE(1308), - [sym_switch_statement] = STATE(1308), - [sym_case_statement] = STATE(1308), - [sym_while_statement] = STATE(1308), - [sym_do_statement] = STATE(1308), - [sym_for_statement] = STATE(1308), - [sym_return_statement] = STATE(1308), - [sym_break_statement] = STATE(1308), - [sym_continue_statement] = STATE(1308), - [sym_goto_statement] = STATE(1308), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1050), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1330), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3581), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1306] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3745), + [sym_compound_statement] = STATE(1239), + [sym_labeled_statement] = STATE(1239), + [sym_expression_statement] = STATE(1239), + [sym_if_statement] = STATE(1239), + [sym_switch_statement] = STATE(1239), + [sym_case_statement] = STATE(1239), + [sym_while_statement] = STATE(1239), + [sym_do_statement] = STATE(1239), + [sym_for_statement] = STATE(1239), + [sym_return_statement] = STATE(1239), + [sym_break_statement] = STATE(1239), + [sym_continue_statement] = STATE(1239), + [sym_goto_statement] = STATE(1239), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(2484), [sym_comment] = ACTIONS(39), }, [1307] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1349), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3745), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3583), [sym_comment] = ACTIONS(39), }, [1308] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3747), - [anon_sym_LPAREN] = ACTIONS(3749), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3747), - [sym_preproc_directive] = ACTIONS(3747), - [anon_sym_SEMI] = ACTIONS(3749), - [anon_sym_typedef] = ACTIONS(3747), - [anon_sym_extern] = ACTIONS(3747), - [anon_sym_LBRACE] = ACTIONS(3749), - [anon_sym_RBRACE] = ACTIONS(3749), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_static] = ACTIONS(3747), - [anon_sym_auto] = ACTIONS(3747), - [anon_sym_register] = ACTIONS(3747), - [anon_sym_inline] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3747), - [anon_sym_restrict] = ACTIONS(3747), - [anon_sym_volatile] = ACTIONS(3747), - [anon_sym__Atomic] = ACTIONS(3747), - [anon_sym_unsigned] = ACTIONS(3747), - [anon_sym_long] = ACTIONS(3747), - [anon_sym_short] = ACTIONS(3747), - [sym_primitive_type] = ACTIONS(3747), - [anon_sym_enum] = ACTIONS(3747), - [anon_sym_struct] = ACTIONS(3747), - [anon_sym_union] = ACTIONS(3747), - [anon_sym_if] = ACTIONS(3747), - [anon_sym_else] = ACTIONS(3747), - [anon_sym_switch] = ACTIONS(3747), - [anon_sym_case] = ACTIONS(3747), - [anon_sym_default] = ACTIONS(3747), - [anon_sym_while] = ACTIONS(3747), - [anon_sym_do] = ACTIONS(3747), - [anon_sym_for] = ACTIONS(3747), - [anon_sym_return] = ACTIONS(3747), - [anon_sym_break] = ACTIONS(3747), - [anon_sym_continue] = ACTIONS(3747), - [anon_sym_goto] = ACTIONS(3747), - [anon_sym_AMP] = ACTIONS(3749), - [anon_sym_BANG] = ACTIONS(3749), - [anon_sym_TILDE] = ACTIONS(3749), - [anon_sym_PLUS] = ACTIONS(3747), - [anon_sym_DASH] = ACTIONS(3747), - [anon_sym_DASH_DASH] = ACTIONS(3749), - [anon_sym_PLUS_PLUS] = ACTIONS(3749), - [anon_sym_sizeof] = ACTIONS(3747), - [sym_number_literal] = ACTIONS(3749), - [anon_sym_SQUOTE] = ACTIONS(3749), - [anon_sym_DQUOTE] = ACTIONS(3749), - [sym_true] = ACTIONS(3747), - [sym_false] = ACTIONS(3747), - [sym_null] = ACTIONS(3747), - [sym_identifier] = ACTIONS(3747), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1332), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3583), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1309] = { - [sym_compound_statement] = STATE(1350), - [sym_labeled_statement] = STATE(1350), - [sym_expression_statement] = STATE(1350), - [sym_if_statement] = STATE(1350), - [sym_switch_statement] = STATE(1350), - [sym_case_statement] = STATE(1350), - [sym_while_statement] = STATE(1350), - [sym_do_statement] = STATE(1350), - [sym_for_statement] = STATE(1350), - [sym_return_statement] = STATE(1350), - [sym_break_statement] = STATE(1350), - [sym_continue_statement] = STATE(1350), - [sym_goto_statement] = STATE(1350), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1741), + [sym__expression] = STATE(1333), + [sym_conditional_expression] = STATE(1333), + [sym_assignment_expression] = STATE(1333), + [sym_pointer_expression] = STATE(1333), + [sym_logical_expression] = STATE(1333), + [sym_bitwise_expression] = STATE(1333), + [sym_equality_expression] = STATE(1333), + [sym_relational_expression] = STATE(1333), + [sym_shift_expression] = STATE(1333), + [sym_math_expression] = STATE(1333), + [sym_cast_expression] = STATE(1333), + [sym_sizeof_expression] = STATE(1333), + [sym_subscript_expression] = STATE(1333), + [sym_call_expression] = STATE(1333), + [sym_field_expression] = STATE(1333), + [sym_compound_literal_expression] = STATE(1333), + [sym_parenthesized_expression] = STATE(1333), + [sym_char_literal] = STATE(1333), + [sym_concatenated_string] = STATE(1333), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3583), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3585), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3587), + [sym_false] = ACTIONS(3587), + [sym_null] = ACTIONS(3587), + [sym_identifier] = ACTIONS(3587), [sym_comment] = ACTIONS(39), }, [1310] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3751), + [sym_compound_statement] = STATE(1312), + [sym_labeled_statement] = STATE(1312), + [sym_expression_statement] = STATE(1312), + [sym_if_statement] = STATE(1312), + [sym_switch_statement] = STATE(1312), + [sym_case_statement] = STATE(1312), + [sym_while_statement] = STATE(1312), + [sym_do_statement] = STATE(1312), + [sym_for_statement] = STATE(1312), + [sym_return_statement] = STATE(1312), + [sym_break_statement] = STATE(1312), + [sym_continue_statement] = STATE(1312), + [sym_goto_statement] = STATE(1312), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1030), [sym_comment] = ACTIONS(39), }, [1311] = { - [sym__expression] = STATE(1352), - [sym_conditional_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1352), - [sym_pointer_expression] = STATE(1352), - [sym_logical_expression] = STATE(1352), - [sym_bitwise_expression] = STATE(1352), - [sym_equality_expression] = STATE(1352), - [sym_relational_expression] = STATE(1352), - [sym_shift_expression] = STATE(1352), - [sym_math_expression] = STATE(1352), - [sym_cast_expression] = STATE(1352), - [sym_sizeof_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_call_expression] = STATE(1352), - [sym_field_expression] = STATE(1352), - [sym_compound_literal_expression] = STATE(1352), - [sym_parenthesized_expression] = STATE(1352), - [sym_char_literal] = STATE(1352), - [sym_concatenated_string] = STATE(1352), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3753), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3755), - [sym_false] = ACTIONS(3755), - [sym_null] = ACTIONS(3755), - [sym_identifier] = ACTIONS(3755), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3589), [sym_comment] = ACTIONS(39), }, [1312] = { - [sym__expression] = STATE(1353), - [sym_conditional_expression] = STATE(1353), - [sym_assignment_expression] = STATE(1353), - [sym_pointer_expression] = STATE(1353), - [sym_logical_expression] = STATE(1353), - [sym_bitwise_expression] = STATE(1353), - [sym_equality_expression] = STATE(1353), - [sym_relational_expression] = STATE(1353), - [sym_shift_expression] = STATE(1353), - [sym_math_expression] = STATE(1353), - [sym_cast_expression] = STATE(1353), - [sym_sizeof_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_call_expression] = STATE(1353), - [sym_field_expression] = STATE(1353), - [sym_compound_literal_expression] = STATE(1353), - [sym_parenthesized_expression] = STATE(1353), - [sym_char_literal] = STATE(1353), - [sym_concatenated_string] = STATE(1353), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3759), - [sym_false] = ACTIONS(3759), - [sym_null] = ACTIONS(3759), - [sym_identifier] = ACTIONS(3759), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3591), + [sym_preproc_directive] = ACTIONS(3591), + [anon_sym_SEMI] = ACTIONS(3593), + [anon_sym_typedef] = ACTIONS(3591), + [anon_sym_extern] = ACTIONS(3591), + [anon_sym_LBRACE] = ACTIONS(3593), + [anon_sym_RBRACE] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3593), + [anon_sym_STAR] = ACTIONS(3593), + [anon_sym_static] = ACTIONS(3591), + [anon_sym_auto] = ACTIONS(3591), + [anon_sym_register] = ACTIONS(3591), + [anon_sym_inline] = ACTIONS(3591), + [anon_sym_const] = ACTIONS(3591), + [anon_sym_restrict] = ACTIONS(3591), + [anon_sym_volatile] = ACTIONS(3591), + [anon_sym__Atomic] = ACTIONS(3591), + [anon_sym_unsigned] = ACTIONS(3591), + [anon_sym_long] = ACTIONS(3591), + [anon_sym_short] = ACTIONS(3591), + [sym_primitive_type] = ACTIONS(3591), + [anon_sym_enum] = ACTIONS(3591), + [anon_sym_struct] = ACTIONS(3591), + [anon_sym_union] = ACTIONS(3591), + [anon_sym_if] = ACTIONS(3591), + [anon_sym_else] = ACTIONS(3591), + [anon_sym_switch] = ACTIONS(3591), + [anon_sym_case] = ACTIONS(3591), + [anon_sym_default] = ACTIONS(3591), + [anon_sym_while] = ACTIONS(3591), + [anon_sym_do] = ACTIONS(3591), + [anon_sym_for] = ACTIONS(3591), + [anon_sym_return] = ACTIONS(3591), + [anon_sym_break] = ACTIONS(3591), + [anon_sym_continue] = ACTIONS(3591), + [anon_sym_goto] = ACTIONS(3591), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(3593), + [anon_sym_PLUS] = ACTIONS(3591), + [anon_sym_DASH] = ACTIONS(3591), + [anon_sym_DASH_DASH] = ACTIONS(3593), + [anon_sym_PLUS_PLUS] = ACTIONS(3593), + [anon_sym_sizeof] = ACTIONS(3591), + [sym_number_literal] = ACTIONS(3593), + [anon_sym_SQUOTE] = ACTIONS(3593), + [anon_sym_DQUOTE] = ACTIONS(3593), + [sym_true] = ACTIONS(3591), + [sym_false] = ACTIONS(3591), + [sym_null] = ACTIONS(3591), + [sym_identifier] = ACTIONS(3591), [sym_comment] = ACTIONS(39), }, [1313] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(3761), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_STAR_EQ] = ACTIONS(1653), - [anon_sym_SLASH_EQ] = ACTIONS(1653), - [anon_sym_PERCENT_EQ] = ACTIONS(1653), - [anon_sym_PLUS_EQ] = ACTIONS(1653), - [anon_sym_DASH_EQ] = ACTIONS(1653), - [anon_sym_LT_LT_EQ] = ACTIONS(1653), - [anon_sym_GT_GT_EQ] = ACTIONS(1653), - [anon_sym_AMP_EQ] = ACTIONS(1653), - [anon_sym_CARET_EQ] = ACTIONS(1653), - [anon_sym_PIPE_EQ] = ACTIONS(1653), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1665), - [anon_sym_BANG_EQ] = ACTIONS(1665), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_EQ] = ACTIONS(1669), - [anon_sym_LT_LT] = ACTIONS(1671), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_SLASH] = ACTIONS(1645), - [anon_sym_PERCENT] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(1335), + [sym_labeled_statement] = STATE(1335), + [sym_expression_statement] = STATE(1335), + [sym_if_statement] = STATE(1335), + [sym_switch_statement] = STATE(1335), + [sym_case_statement] = STATE(1335), + [sym_while_statement] = STATE(1335), + [sym_do_statement] = STATE(1335), + [sym_for_statement] = STATE(1335), + [sym_return_statement] = STATE(1335), + [sym_break_statement] = STATE(1335), + [sym_continue_statement] = STATE(1335), + [sym_goto_statement] = STATE(1335), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_case] = ACTIONS(562), + [anon_sym_default] = ACTIONS(564), + [anon_sym_while] = ACTIONS(566), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(570), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1612), [sym_comment] = ACTIONS(39), }, [1314] = { - [sym_declaration] = STATE(1139), - [sym_type_definition] = STATE(1139), - [sym__declaration_specifiers] = STATE(1140), - [sym_compound_statement] = STATE(1139), - [sym_storage_class_specifier] = STATE(96), - [sym_type_qualifier] = STATE(96), - [sym__type_specifier] = STATE(95), - [sym_sized_type_specifier] = STATE(95), - [sym_enum_specifier] = STATE(95), - [sym_struct_specifier] = STATE(95), - [sym_union_specifier] = STATE(95), - [sym_labeled_statement] = STATE(1139), - [sym_expression_statement] = STATE(1139), - [sym_if_statement] = STATE(1139), - [sym_switch_statement] = STATE(1139), - [sym_case_statement] = STATE(1139), - [sym_while_statement] = STATE(1139), - [sym_do_statement] = STATE(1139), - [sym_for_statement] = STATE(1139), - [sym_return_statement] = STATE(1139), - [sym_break_statement] = STATE(1139), - [sym_continue_statement] = STATE(1139), - [sym_goto_statement] = STATE(1139), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [sym_macro_type_specifier] = STATE(95), - [aux_sym__declaration_specifiers_repeat1] = STATE(96), - [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_typedef] = ACTIONS(380), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(3553), - [anon_sym_switch] = ACTIONS(3555), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_default] = ACTIONS(3559), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(3563), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_compound_statement] = STATE(1290), + [sym_labeled_statement] = STATE(1290), + [sym_expression_statement] = STATE(1290), + [sym_if_statement] = STATE(1290), + [sym_switch_statement] = STATE(1290), + [sym_case_statement] = STATE(1290), + [sym_while_statement] = STATE(1290), + [sym_do_statement] = STATE(1290), + [sym_for_statement] = STATE(1290), + [sym_return_statement] = STATE(1290), + [sym_break_statement] = STATE(1290), + [sym_continue_statement] = STATE(1290), + [sym_goto_statement] = STATE(1290), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3057), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3763), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3065), [sym_comment] = ACTIONS(39), }, [1315] = { - [sym__expression] = STATE(1356), - [sym_conditional_expression] = STATE(1356), - [sym_assignment_expression] = STATE(1356), - [sym_pointer_expression] = STATE(1356), - [sym_logical_expression] = STATE(1356), - [sym_bitwise_expression] = STATE(1356), - [sym_equality_expression] = STATE(1356), - [sym_relational_expression] = STATE(1356), - [sym_shift_expression] = STATE(1356), - [sym_math_expression] = STATE(1356), - [sym_cast_expression] = STATE(1356), - [sym_sizeof_expression] = STATE(1356), - [sym_subscript_expression] = STATE(1356), - [sym_call_expression] = STATE(1356), - [sym_field_expression] = STATE(1356), - [sym_compound_literal_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_char_literal] = STATE(1356), - [sym_concatenated_string] = STATE(1356), - [sym_string_literal] = STATE(695), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1627), - [anon_sym_PLUS_PLUS] = ACTIONS(1627), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(3765), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3767), - [sym_false] = ACTIONS(3767), - [sym_null] = ACTIONS(3767), - [sym_identifier] = ACTIONS(3767), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1337), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3595), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1316] = { - [sym_declaration] = STATE(1357), - [sym__declaration_specifiers] = STATE(716), - [sym_storage_class_specifier] = STATE(96), - [sym_type_qualifier] = STATE(96), - [sym__type_specifier] = STATE(95), - [sym_sized_type_specifier] = STATE(95), - [sym_enum_specifier] = STATE(95), - [sym_struct_specifier] = STATE(95), - [sym_union_specifier] = STATE(95), - [sym__expression] = STATE(1358), - [sym_conditional_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1358), - [sym_pointer_expression] = STATE(1358), - [sym_logical_expression] = STATE(1358), - [sym_bitwise_expression] = STATE(1358), - [sym_equality_expression] = STATE(1358), - [sym_relational_expression] = STATE(1358), - [sym_shift_expression] = STATE(1358), - [sym_math_expression] = STATE(1358), - [sym_cast_expression] = STATE(1358), - [sym_sizeof_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_call_expression] = STATE(1358), - [sym_field_expression] = STATE(1358), - [sym_compound_literal_expression] = STATE(1358), - [sym_parenthesized_expression] = STATE(1358), - [sym_char_literal] = STATE(1358), - [sym_concatenated_string] = STATE(1358), - [sym_string_literal] = STATE(378), - [sym_macro_type_specifier] = STATE(95), - [aux_sym__declaration_specifiers_repeat1] = STATE(96), - [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3769), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3771), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_identifier] = ACTIONS(1705), + [sym__expression] = STATE(1338), + [sym_conditional_expression] = STATE(1338), + [sym_assignment_expression] = STATE(1338), + [sym_pointer_expression] = STATE(1338), + [sym_logical_expression] = STATE(1338), + [sym_bitwise_expression] = STATE(1338), + [sym_equality_expression] = STATE(1338), + [sym_relational_expression] = STATE(1338), + [sym_shift_expression] = STATE(1338), + [sym_math_expression] = STATE(1338), + [sym_cast_expression] = STATE(1338), + [sym_sizeof_expression] = STATE(1338), + [sym_subscript_expression] = STATE(1338), + [sym_call_expression] = STATE(1338), + [sym_field_expression] = STATE(1338), + [sym_compound_literal_expression] = STATE(1338), + [sym_parenthesized_expression] = STATE(1338), + [sym_char_literal] = STATE(1338), + [sym_concatenated_string] = STATE(1338), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3595), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3599), + [sym_false] = ACTIONS(3599), + [sym_null] = ACTIONS(3599), + [sym_identifier] = ACTIONS(3599), [sym_comment] = ACTIONS(39), }, [1317] = { - [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(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3553), - [anon_sym_switch] = ACTIONS(3555), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_default] = ACTIONS(3559), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(3563), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3565), + [sym_argument_list] = STATE(465), + [anon_sym_SEMI] = ACTIONS(3601), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_PERCENT_EQ] = ACTIONS(1442), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_LT_LT_EQ] = ACTIONS(1442), + [anon_sym_GT_GT_EQ] = ACTIONS(1442), + [anon_sym_AMP_EQ] = ACTIONS(1442), + [anon_sym_CARET_EQ] = ACTIONS(1442), + [anon_sym_PIPE_EQ] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_EQ_EQ] = ACTIONS(1454), + [anon_sym_BANG_EQ] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_LT_LT] = ACTIONS(1460), + [anon_sym_GT_GT] = ACTIONS(1460), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1318] = { - [sym_compound_statement] = STATE(1359), - [sym_labeled_statement] = STATE(1359), - [sym_expression_statement] = STATE(1359), - [sym_if_statement] = STATE(1359), - [sym_switch_statement] = STATE(1359), - [sym_case_statement] = STATE(1359), - [sym_while_statement] = STATE(1359), - [sym_do_statement] = STATE(1359), - [sym_for_statement] = STATE(1359), - [sym_return_statement] = STATE(1359), - [sym_break_statement] = STATE(1359), - [sym_continue_statement] = STATE(1359), - [sym_goto_statement] = STATE(1359), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3181), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3487), + [sym_preproc_directive] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3489), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(3487), + [anon_sym_LBRACE] = ACTIONS(3489), + [anon_sym_LPAREN2] = ACTIONS(3489), + [anon_sym_STAR] = ACTIONS(3489), + [anon_sym_static] = ACTIONS(3487), + [anon_sym_auto] = ACTIONS(3487), + [anon_sym_register] = ACTIONS(3487), + [anon_sym_inline] = ACTIONS(3487), + [anon_sym_const] = ACTIONS(3487), + [anon_sym_restrict] = ACTIONS(3487), + [anon_sym_volatile] = ACTIONS(3487), + [anon_sym__Atomic] = ACTIONS(3487), + [anon_sym_unsigned] = ACTIONS(3487), + [anon_sym_long] = ACTIONS(3487), + [anon_sym_short] = ACTIONS(3487), + [sym_primitive_type] = ACTIONS(3487), + [anon_sym_enum] = ACTIONS(3487), + [anon_sym_struct] = ACTIONS(3487), + [anon_sym_union] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_else] = ACTIONS(3487), + [anon_sym_switch] = ACTIONS(3487), + [anon_sym_case] = ACTIONS(3487), + [anon_sym_default] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_do] = ACTIONS(3487), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_break] = ACTIONS(3487), + [anon_sym_continue] = ACTIONS(3487), + [anon_sym_goto] = ACTIONS(3487), + [anon_sym_AMP] = ACTIONS(3489), + [anon_sym_BANG] = ACTIONS(3489), + [anon_sym_TILDE] = ACTIONS(3489), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_DASH_DASH] = ACTIONS(3489), + [anon_sym_PLUS_PLUS] = ACTIONS(3489), + [anon_sym_sizeof] = ACTIONS(3487), + [sym_number_literal] = ACTIONS(3489), + [anon_sym_SQUOTE] = ACTIONS(3489), + [anon_sym_DQUOTE] = ACTIONS(3489), + [sym_true] = ACTIONS(3487), + [sym_false] = ACTIONS(3487), + [sym_null] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3487), [sym_comment] = ACTIONS(39), }, [1319] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3527), - [anon_sym_LPAREN] = ACTIONS(3529), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3527), - [sym_preproc_directive] = ACTIONS(3527), - [anon_sym_SEMI] = ACTIONS(3529), - [anon_sym_typedef] = ACTIONS(3527), - [anon_sym_extern] = ACTIONS(3527), - [anon_sym_LBRACE] = ACTIONS(3529), - [anon_sym_STAR] = ACTIONS(3529), - [anon_sym_static] = ACTIONS(3527), - [anon_sym_auto] = ACTIONS(3527), - [anon_sym_register] = ACTIONS(3527), - [anon_sym_inline] = ACTIONS(3527), - [anon_sym_const] = ACTIONS(3527), - [anon_sym_restrict] = ACTIONS(3527), - [anon_sym_volatile] = ACTIONS(3527), - [anon_sym__Atomic] = ACTIONS(3527), - [anon_sym_unsigned] = ACTIONS(3527), - [anon_sym_long] = ACTIONS(3527), - [anon_sym_short] = ACTIONS(3527), - [sym_primitive_type] = ACTIONS(3527), - [anon_sym_enum] = ACTIONS(3527), - [anon_sym_struct] = ACTIONS(3527), - [anon_sym_union] = ACTIONS(3527), - [anon_sym_if] = ACTIONS(3527), - [anon_sym_else] = ACTIONS(3527), - [anon_sym_switch] = ACTIONS(3527), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3527), - [anon_sym_while] = ACTIONS(3527), - [anon_sym_do] = ACTIONS(3527), - [anon_sym_for] = ACTIONS(3527), - [anon_sym_return] = ACTIONS(3527), - [anon_sym_break] = ACTIONS(3527), - [anon_sym_continue] = ACTIONS(3527), - [anon_sym_goto] = ACTIONS(3527), - [anon_sym_AMP] = ACTIONS(3529), - [anon_sym_BANG] = ACTIONS(3529), - [anon_sym_TILDE] = ACTIONS(3529), - [anon_sym_PLUS] = ACTIONS(3527), - [anon_sym_DASH] = ACTIONS(3527), - [anon_sym_DASH_DASH] = ACTIONS(3529), - [anon_sym_PLUS_PLUS] = ACTIONS(3529), - [anon_sym_sizeof] = ACTIONS(3527), - [sym_number_literal] = ACTIONS(3529), - [anon_sym_SQUOTE] = ACTIONS(3529), - [anon_sym_DQUOTE] = ACTIONS(3529), - [sym_true] = ACTIONS(3527), - [sym_false] = ACTIONS(3527), - [sym_null] = ACTIONS(3527), - [sym_identifier] = ACTIONS(3527), + [sym_compound_statement] = STATE(1340), + [sym_labeled_statement] = STATE(1340), + [sym_expression_statement] = STATE(1340), + [sym_if_statement] = STATE(1340), + [sym_switch_statement] = STATE(1340), + [sym_case_statement] = STATE(1340), + [sym_while_statement] = STATE(1340), + [sym_do_statement] = STATE(1340), + [sym_for_statement] = STATE(1340), + [sym_return_statement] = STATE(1340), + [sym_break_statement] = STATE(1340), + [sym_continue_statement] = STATE(1340), + [sym_goto_statement] = STATE(1340), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3067), [sym_comment] = ACTIONS(39), }, [1320] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3531), - [anon_sym_LPAREN] = ACTIONS(3533), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3531), - [sym_preproc_directive] = ACTIONS(3531), - [anon_sym_SEMI] = ACTIONS(3533), - [anon_sym_typedef] = ACTIONS(3531), - [anon_sym_extern] = ACTIONS(3531), - [anon_sym_LBRACE] = ACTIONS(3533), - [anon_sym_STAR] = ACTIONS(3533), - [anon_sym_static] = ACTIONS(3531), - [anon_sym_auto] = ACTIONS(3531), - [anon_sym_register] = ACTIONS(3531), - [anon_sym_inline] = ACTIONS(3531), - [anon_sym_const] = ACTIONS(3531), - [anon_sym_restrict] = ACTIONS(3531), - [anon_sym_volatile] = ACTIONS(3531), - [anon_sym__Atomic] = ACTIONS(3531), - [anon_sym_unsigned] = ACTIONS(3531), - [anon_sym_long] = ACTIONS(3531), - [anon_sym_short] = ACTIONS(3531), - [sym_primitive_type] = ACTIONS(3531), - [anon_sym_enum] = ACTIONS(3531), - [anon_sym_struct] = ACTIONS(3531), - [anon_sym_union] = ACTIONS(3531), - [anon_sym_if] = ACTIONS(3531), - [anon_sym_else] = ACTIONS(3531), - [anon_sym_switch] = ACTIONS(3531), - [anon_sym_case] = ACTIONS(3531), - [anon_sym_default] = ACTIONS(3531), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(3531), - [anon_sym_for] = ACTIONS(3531), - [anon_sym_return] = ACTIONS(3531), - [anon_sym_break] = ACTIONS(3531), - [anon_sym_continue] = ACTIONS(3531), - [anon_sym_goto] = ACTIONS(3531), - [anon_sym_AMP] = ACTIONS(3533), - [anon_sym_BANG] = ACTIONS(3533), - [anon_sym_TILDE] = ACTIONS(3533), - [anon_sym_PLUS] = ACTIONS(3531), - [anon_sym_DASH] = ACTIONS(3531), - [anon_sym_DASH_DASH] = ACTIONS(3533), - [anon_sym_PLUS_PLUS] = ACTIONS(3533), - [anon_sym_sizeof] = ACTIONS(3531), - [sym_number_literal] = ACTIONS(3533), - [anon_sym_SQUOTE] = ACTIONS(3533), - [anon_sym_DQUOTE] = ACTIONS(3533), - [sym_true] = ACTIONS(3531), - [sym_false] = ACTIONS(3531), - [sym_null] = ACTIONS(3531), - [sym_identifier] = ACTIONS(3531), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3603), [sym_comment] = ACTIONS(39), }, [1321] = { - [sym_compound_statement] = STATE(1360), - [sym_labeled_statement] = STATE(1360), - [sym_expression_statement] = STATE(1360), - [sym_if_statement] = STATE(1360), - [sym_switch_statement] = STATE(1360), - [sym_case_statement] = STATE(1360), - [sym_while_statement] = STATE(1360), - [sym_do_statement] = STATE(1360), - [sym_for_statement] = STATE(1360), - [sym_return_statement] = STATE(1360), - [sym_break_statement] = STATE(1360), - [sym_continue_statement] = STATE(1360), - [sym_goto_statement] = STATE(1360), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3181), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1342), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3603), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1322] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3775), - [sym_comment] = ACTIONS(39), - }, - [1323] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1362), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3775), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1324] = { - [sym__expression] = STATE(1363), - [sym_conditional_expression] = STATE(1363), - [sym_assignment_expression] = STATE(1363), - [sym_pointer_expression] = STATE(1363), - [sym_logical_expression] = STATE(1363), - [sym_bitwise_expression] = STATE(1363), - [sym_equality_expression] = STATE(1363), - [sym_relational_expression] = STATE(1363), - [sym_shift_expression] = STATE(1363), - [sym_math_expression] = STATE(1363), - [sym_cast_expression] = STATE(1363), - [sym_sizeof_expression] = STATE(1363), - [sym_subscript_expression] = STATE(1363), - [sym_call_expression] = STATE(1363), - [sym_field_expression] = STATE(1363), - [sym_compound_literal_expression] = STATE(1363), - [sym_parenthesized_expression] = STATE(1363), - [sym_char_literal] = STATE(1363), - [sym_concatenated_string] = STATE(1363), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3775), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3777), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3779), - [sym_false] = ACTIONS(3779), - [sym_null] = ACTIONS(3779), - [sym_identifier] = ACTIONS(3779), - [sym_comment] = ACTIONS(39), - }, - [1325] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3781), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1326] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3783), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(1299), + [sym_labeled_statement] = STATE(1299), + [sym_expression_statement] = STATE(1299), + [sym_if_statement] = STATE(1299), + [sym_switch_statement] = STATE(1299), + [sym_case_statement] = STATE(1299), + [sym_while_statement] = STATE(1299), + [sym_do_statement] = STATE(1299), + [sym_for_statement] = STATE(1299), + [sym_return_statement] = STATE(1299), + [sym_break_statement] = STATE(1299), + [sym_continue_statement] = STATE(1299), + [sym_goto_statement] = STATE(1299), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2745), [sym_comment] = ACTIONS(39), - }, - [1327] = { - [sym_declaration] = STATE(1153), - [sym_type_definition] = STATE(1153), - [sym__declaration_specifiers] = STATE(1046), - [sym_compound_statement] = STATE(1153), - [sym_storage_class_specifier] = STATE(96), - [sym_type_qualifier] = STATE(96), - [sym__type_specifier] = STATE(95), - [sym_sized_type_specifier] = STATE(95), - [sym_enum_specifier] = STATE(95), - [sym_struct_specifier] = STATE(95), - [sym_union_specifier] = STATE(95), - [sym_labeled_statement] = STATE(1153), - [sym_expression_statement] = STATE(1153), - [sym_if_statement] = STATE(1153), - [sym_switch_statement] = STATE(1153), - [sym_case_statement] = STATE(1153), - [sym_while_statement] = STATE(1153), - [sym_do_statement] = STATE(1153), - [sym_for_statement] = STATE(1153), - [sym_return_statement] = STATE(1153), - [sym_break_statement] = STATE(1153), - [sym_continue_statement] = STATE(1153), - [sym_goto_statement] = STATE(1153), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [sym_macro_type_specifier] = STATE(95), - [aux_sym__declaration_specifiers_repeat1] = STATE(96), - [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_typedef] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(3701), + }, + [1323] = { + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3605), + [sym_comment] = ACTIONS(39), + }, + [1324] = { + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1344), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3605), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), + [sym_comment] = ACTIONS(39), + }, + [1325] = { + [sym__expression] = STATE(1345), + [sym_conditional_expression] = STATE(1345), + [sym_assignment_expression] = STATE(1345), + [sym_pointer_expression] = STATE(1345), + [sym_logical_expression] = STATE(1345), + [sym_bitwise_expression] = STATE(1345), + [sym_equality_expression] = STATE(1345), + [sym_relational_expression] = STATE(1345), + [sym_shift_expression] = STATE(1345), + [sym_math_expression] = STATE(1345), + [sym_cast_expression] = STATE(1345), + [sym_sizeof_expression] = STATE(1345), + [sym_subscript_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_field_expression] = STATE(1345), + [sym_compound_literal_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_char_literal] = STATE(1345), + [sym_concatenated_string] = STATE(1345), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3605), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3607), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3609), + [sym_false] = ACTIONS(3609), + [sym_null] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3609), + [sym_comment] = ACTIONS(39), + }, + [1326] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3547), + [sym_preproc_directive] = ACTIONS(3547), + [anon_sym_SEMI] = ACTIONS(3549), + [anon_sym_typedef] = ACTIONS(3547), + [anon_sym_extern] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3549), + [anon_sym_STAR] = ACTIONS(3549), + [anon_sym_static] = ACTIONS(3547), + [anon_sym_auto] = ACTIONS(3547), + [anon_sym_register] = ACTIONS(3547), + [anon_sym_inline] = ACTIONS(3547), + [anon_sym_const] = ACTIONS(3547), + [anon_sym_restrict] = ACTIONS(3547), + [anon_sym_volatile] = ACTIONS(3547), + [anon_sym__Atomic] = ACTIONS(3547), + [anon_sym_unsigned] = ACTIONS(3547), + [anon_sym_long] = ACTIONS(3547), + [anon_sym_short] = ACTIONS(3547), + [sym_primitive_type] = ACTIONS(3547), + [anon_sym_enum] = ACTIONS(3547), + [anon_sym_struct] = ACTIONS(3547), + [anon_sym_union] = ACTIONS(3547), + [anon_sym_if] = ACTIONS(3547), + [anon_sym_else] = ACTIONS(3547), + [anon_sym_switch] = ACTIONS(3547), + [anon_sym_case] = ACTIONS(3547), + [anon_sym_default] = ACTIONS(3547), + [anon_sym_while] = ACTIONS(3547), + [anon_sym_do] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3547), + [anon_sym_return] = ACTIONS(3547), + [anon_sym_break] = ACTIONS(3547), + [anon_sym_continue] = ACTIONS(3547), + [anon_sym_goto] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_BANG] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3547), + [anon_sym_DASH] = ACTIONS(3547), + [anon_sym_DASH_DASH] = ACTIONS(3549), + [anon_sym_PLUS_PLUS] = ACTIONS(3549), + [anon_sym_sizeof] = ACTIONS(3547), + [sym_number_literal] = ACTIONS(3549), + [anon_sym_SQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [sym_true] = ACTIONS(3547), + [sym_false] = ACTIONS(3547), + [sym_null] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3547), + [sym_comment] = ACTIONS(39), + }, + [1327] = { + [sym_compound_statement] = STATE(1346), + [sym_labeled_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_if_statement] = STATE(1346), + [sym_switch_statement] = STATE(1346), + [sym_case_statement] = STATE(1346), + [sym_while_statement] = STATE(1346), + [sym_do_statement] = STATE(1346), + [sym_for_statement] = STATE(1346), + [sym_return_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_goto_statement] = STATE(1346), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2747), [sym_comment] = ACTIONS(39), }, [1328] = { - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3597), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), - [sym_identifier] = ACTIONS(86), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3611), [sym_comment] = ACTIONS(39), }, [1329] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3785), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(1312), + [sym_labeled_statement] = STATE(1312), + [sym_expression_statement] = STATE(1312), + [sym_if_statement] = STATE(1312), + [sym_switch_statement] = STATE(1312), + [sym_case_statement] = STATE(1312), + [sym_while_statement] = STATE(1312), + [sym_do_statement] = STATE(1312), + [sym_for_statement] = STATE(1312), + [sym_return_statement] = STATE(1312), + [sym_break_statement] = STATE(1312), + [sym_continue_statement] = STATE(1312), + [sym_goto_statement] = STATE(1312), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1610), [sym_comment] = ACTIONS(39), }, [1330] = { - [sym__expression] = STATE(1368), - [sym_conditional_expression] = STATE(1368), - [sym_assignment_expression] = STATE(1368), - [sym_pointer_expression] = STATE(1368), - [sym_logical_expression] = STATE(1368), - [sym_bitwise_expression] = STATE(1368), - [sym_equality_expression] = STATE(1368), - [sym_relational_expression] = STATE(1368), - [sym_shift_expression] = STATE(1368), - [sym_math_expression] = STATE(1368), - [sym_cast_expression] = STATE(1368), - [sym_sizeof_expression] = STATE(1368), - [sym_subscript_expression] = STATE(1368), - [sym_call_expression] = STATE(1368), - [sym_field_expression] = STATE(1368), - [sym_compound_literal_expression] = STATE(1368), - [sym_parenthesized_expression] = STATE(1368), - [sym_char_literal] = STATE(1368), - [sym_concatenated_string] = STATE(1368), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3787), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3789), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3791), - [sym_false] = ACTIONS(3791), - [sym_null] = ACTIONS(3791), - [sym_identifier] = ACTIONS(3791), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3613), [sym_comment] = ACTIONS(39), }, [1331] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3793), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(1282), + [sym_labeled_statement] = STATE(1282), + [sym_expression_statement] = STATE(1282), + [sym_if_statement] = STATE(1282), + [sym_switch_statement] = STATE(1282), + [sym_case_statement] = STATE(1282), + [sym_while_statement] = STATE(1282), + [sym_do_statement] = STATE(1282), + [sym_for_statement] = STATE(1282), + [sym_return_statement] = STATE(1282), + [sym_break_statement] = STATE(1282), + [sym_continue_statement] = STATE(1282), + [sym_goto_statement] = STATE(1282), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(2484), [sym_comment] = ACTIONS(39), }, [1332] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3625), - [anon_sym_LPAREN] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3625), - [sym_preproc_directive] = ACTIONS(3625), - [anon_sym_SEMI] = ACTIONS(3627), - [anon_sym_typedef] = ACTIONS(3625), - [anon_sym_extern] = ACTIONS(3625), - [anon_sym_LBRACE] = ACTIONS(3627), - [anon_sym_STAR] = ACTIONS(3627), - [anon_sym_static] = ACTIONS(3625), - [anon_sym_auto] = ACTIONS(3625), - [anon_sym_register] = ACTIONS(3625), - [anon_sym_inline] = ACTIONS(3625), - [anon_sym_const] = ACTIONS(3625), - [anon_sym_restrict] = ACTIONS(3625), - [anon_sym_volatile] = ACTIONS(3625), - [anon_sym__Atomic] = ACTIONS(3625), - [anon_sym_unsigned] = ACTIONS(3625), - [anon_sym_long] = ACTIONS(3625), - [anon_sym_short] = ACTIONS(3625), - [sym_primitive_type] = ACTIONS(3625), - [anon_sym_enum] = ACTIONS(3625), - [anon_sym_struct] = ACTIONS(3625), - [anon_sym_union] = ACTIONS(3625), - [anon_sym_if] = ACTIONS(3625), - [anon_sym_else] = ACTIONS(3625), - [anon_sym_switch] = ACTIONS(3625), - [anon_sym_case] = ACTIONS(3625), - [anon_sym_default] = ACTIONS(3625), - [anon_sym_while] = ACTIONS(3625), - [anon_sym_do] = ACTIONS(3625), - [anon_sym_for] = ACTIONS(3625), - [anon_sym_return] = ACTIONS(3625), - [anon_sym_break] = ACTIONS(3625), - [anon_sym_continue] = ACTIONS(3625), - [anon_sym_goto] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3627), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(3627), - [anon_sym_PLUS_PLUS] = ACTIONS(3627), - [anon_sym_sizeof] = ACTIONS(3625), - [sym_number_literal] = ACTIONS(3627), - [anon_sym_SQUOTE] = ACTIONS(3627), - [anon_sym_DQUOTE] = ACTIONS(3627), - [sym_true] = ACTIONS(3625), - [sym_false] = ACTIONS(3625), - [sym_null] = ACTIONS(3625), - [sym_identifier] = ACTIONS(3625), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3615), [sym_comment] = ACTIONS(39), }, [1333] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3657), - [anon_sym_LPAREN] = ACTIONS(3659), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3657), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_typedef] = ACTIONS(3657), - [anon_sym_extern] = ACTIONS(3657), - [anon_sym_LBRACE] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_static] = ACTIONS(3657), - [anon_sym_auto] = ACTIONS(3657), - [anon_sym_register] = ACTIONS(3657), - [anon_sym_inline] = ACTIONS(3657), - [anon_sym_const] = ACTIONS(3657), - [anon_sym_restrict] = ACTIONS(3657), - [anon_sym_volatile] = ACTIONS(3657), - [anon_sym__Atomic] = ACTIONS(3657), - [anon_sym_unsigned] = ACTIONS(3657), - [anon_sym_long] = ACTIONS(3657), - [anon_sym_short] = ACTIONS(3657), - [sym_primitive_type] = ACTIONS(3657), - [anon_sym_enum] = ACTIONS(3657), - [anon_sym_struct] = ACTIONS(3657), - [anon_sym_union] = ACTIONS(3657), - [anon_sym_if] = ACTIONS(3657), - [anon_sym_else] = ACTIONS(3657), - [anon_sym_switch] = ACTIONS(3657), - [anon_sym_case] = ACTIONS(3657), - [anon_sym_default] = ACTIONS(3657), - [anon_sym_while] = ACTIONS(3657), - [anon_sym_do] = ACTIONS(3657), - [anon_sym_for] = ACTIONS(3657), - [anon_sym_return] = ACTIONS(3657), - [anon_sym_break] = ACTIONS(3657), - [anon_sym_continue] = ACTIONS(3657), - [anon_sym_goto] = ACTIONS(3657), - [anon_sym_AMP] = ACTIONS(3659), - [anon_sym_BANG] = ACTIONS(3659), - [anon_sym_TILDE] = ACTIONS(3659), - [anon_sym_PLUS] = ACTIONS(3657), - [anon_sym_DASH] = ACTIONS(3657), - [anon_sym_DASH_DASH] = ACTIONS(3659), - [anon_sym_PLUS_PLUS] = ACTIONS(3659), - [anon_sym_sizeof] = ACTIONS(3657), - [sym_number_literal] = ACTIONS(3659), - [anon_sym_SQUOTE] = ACTIONS(3659), - [anon_sym_DQUOTE] = ACTIONS(3659), - [sym_true] = ACTIONS(3657), - [sym_false] = ACTIONS(3657), - [sym_null] = ACTIONS(3657), - [sym_identifier] = ACTIONS(3657), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1350), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3615), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1334] = { - [sym_compound_statement] = STATE(1370), - [sym_labeled_statement] = STATE(1370), - [sym_expression_statement] = STATE(1370), - [sym_if_statement] = STATE(1370), - [sym_switch_statement] = STATE(1370), - [sym_case_statement] = STATE(1370), - [sym_while_statement] = STATE(1370), - [sym_do_statement] = STATE(1370), - [sym_for_statement] = STATE(1370), - [sym_return_statement] = STATE(1370), - [sym_break_statement] = STATE(1370), - [sym_continue_statement] = STATE(1370), - [sym_goto_statement] = STATE(1370), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(2825), + [sym_compound_statement] = STATE(1335), + [sym_labeled_statement] = STATE(1335), + [sym_expression_statement] = STATE(1335), + [sym_if_statement] = STATE(1335), + [sym_switch_statement] = STATE(1335), + [sym_case_statement] = STATE(1335), + [sym_while_statement] = STATE(1335), + [sym_do_statement] = STATE(1335), + [sym_for_statement] = STATE(1335), + [sym_return_statement] = STATE(1335), + [sym_break_statement] = STATE(1335), + [sym_continue_statement] = STATE(1335), + [sym_goto_statement] = STATE(1335), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1022), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1030), [sym_comment] = ACTIONS(39), }, [1335] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3795), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3617), + [sym_preproc_directive] = ACTIONS(3617), + [anon_sym_SEMI] = ACTIONS(3619), + [anon_sym_typedef] = ACTIONS(3617), + [anon_sym_extern] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_RBRACE] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_STAR] = ACTIONS(3619), + [anon_sym_static] = ACTIONS(3617), + [anon_sym_auto] = ACTIONS(3617), + [anon_sym_register] = ACTIONS(3617), + [anon_sym_inline] = ACTIONS(3617), + [anon_sym_const] = ACTIONS(3617), + [anon_sym_restrict] = ACTIONS(3617), + [anon_sym_volatile] = ACTIONS(3617), + [anon_sym__Atomic] = ACTIONS(3617), + [anon_sym_unsigned] = ACTIONS(3617), + [anon_sym_long] = ACTIONS(3617), + [anon_sym_short] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(3617), + [anon_sym_enum] = ACTIONS(3617), + [anon_sym_struct] = ACTIONS(3617), + [anon_sym_union] = ACTIONS(3617), + [anon_sym_if] = ACTIONS(3617), + [anon_sym_else] = ACTIONS(3617), + [anon_sym_switch] = ACTIONS(3617), + [anon_sym_case] = ACTIONS(3617), + [anon_sym_default] = ACTIONS(3617), + [anon_sym_while] = ACTIONS(3617), + [anon_sym_do] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3617), + [anon_sym_return] = ACTIONS(3617), + [anon_sym_break] = ACTIONS(3617), + [anon_sym_continue] = ACTIONS(3617), + [anon_sym_goto] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3619), + [anon_sym_PLUS_PLUS] = ACTIONS(3619), + [anon_sym_sizeof] = ACTIONS(3617), + [sym_number_literal] = ACTIONS(3619), + [anon_sym_SQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [sym_true] = ACTIONS(3617), + [sym_false] = ACTIONS(3617), + [sym_null] = ACTIONS(3617), + [sym_identifier] = ACTIONS(3617), [sym_comment] = ACTIONS(39), }, [1336] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1372), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(1318), + [sym_labeled_statement] = STATE(1318), + [sym_expression_statement] = STATE(1318), + [sym_if_statement] = STATE(1318), + [sym_switch_statement] = STATE(1318), + [sym_case_statement] = STATE(1318), + [sym_while_statement] = STATE(1318), + [sym_do_statement] = STATE(1318), + [sym_for_statement] = STATE(1318), + [sym_return_statement] = STATE(1318), + [sym_break_statement] = STATE(1318), + [sym_continue_statement] = STATE(1318), + [sym_goto_statement] = STATE(1318), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3057), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3065), [sym_comment] = ACTIONS(39), }, [1337] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3316), - [sym_preproc_directive] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_typedef] = ACTIONS(3316), - [anon_sym_extern] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_STAR] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_auto] = ACTIONS(3316), - [anon_sym_register] = ACTIONS(3316), - [anon_sym_inline] = ACTIONS(3316), - [anon_sym_const] = ACTIONS(3316), - [anon_sym_restrict] = ACTIONS(3316), - [anon_sym_volatile] = ACTIONS(3316), - [anon_sym__Atomic] = ACTIONS(3316), - [anon_sym_unsigned] = ACTIONS(3316), - [anon_sym_long] = ACTIONS(3316), - [anon_sym_short] = ACTIONS(3316), - [sym_primitive_type] = ACTIONS(3316), - [anon_sym_enum] = ACTIONS(3316), - [anon_sym_struct] = ACTIONS(3316), - [anon_sym_union] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3797), - [anon_sym_switch] = ACTIONS(3316), - [anon_sym_case] = ACTIONS(3316), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_break] = ACTIONS(3316), - [anon_sym_continue] = ACTIONS(3316), - [anon_sym_goto] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_sizeof] = ACTIONS(3316), - [sym_number_literal] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_null] = ACTIONS(3316), - [sym_identifier] = ACTIONS(3316), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3621), [sym_comment] = ACTIONS(39), }, [1338] = { - [sym_compound_statement] = STATE(1183), - [sym_labeled_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_switch_statement] = STATE(1183), - [sym_case_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_do_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_goto_statement] = STATE(1183), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(2960), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1352), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1339] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1375), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3799), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym__expression] = STATE(1353), + [sym_conditional_expression] = STATE(1353), + [sym_assignment_expression] = STATE(1353), + [sym_pointer_expression] = STATE(1353), + [sym_logical_expression] = STATE(1353), + [sym_bitwise_expression] = STATE(1353), + [sym_equality_expression] = STATE(1353), + [sym_relational_expression] = STATE(1353), + [sym_shift_expression] = STATE(1353), + [sym_math_expression] = STATE(1353), + [sym_cast_expression] = STATE(1353), + [sym_sizeof_expression] = STATE(1353), + [sym_subscript_expression] = STATE(1353), + [sym_call_expression] = STATE(1353), + [sym_field_expression] = STATE(1353), + [sym_compound_literal_expression] = STATE(1353), + [sym_parenthesized_expression] = STATE(1353), + [sym_char_literal] = STATE(1353), + [sym_concatenated_string] = STATE(1353), + [sym_string_literal] = STATE(409), + [anon_sym_RPAREN] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_sizeof] = ACTIONS(982), + [sym_number_literal] = ACTIONS(3623), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(3625), + [sym_false] = ACTIONS(3625), + [sym_null] = ACTIONS(3625), + [sym_identifier] = ACTIONS(3625), [sym_comment] = ACTIONS(39), }, [1340] = { - [sym__expression] = STATE(1376), - [sym_conditional_expression] = STATE(1376), - [sym_assignment_expression] = STATE(1376), - [sym_pointer_expression] = STATE(1376), - [sym_logical_expression] = STATE(1376), - [sym_bitwise_expression] = STATE(1376), - [sym_equality_expression] = STATE(1376), - [sym_relational_expression] = STATE(1376), - [sym_shift_expression] = STATE(1376), - [sym_math_expression] = STATE(1376), - [sym_cast_expression] = STATE(1376), - [sym_sizeof_expression] = STATE(1376), - [sym_subscript_expression] = STATE(1376), - [sym_call_expression] = STATE(1376), - [sym_field_expression] = STATE(1376), - [sym_compound_literal_expression] = STATE(1376), - [sym_parenthesized_expression] = STATE(1376), - [sym_char_literal] = STATE(1376), - [sym_concatenated_string] = STATE(1376), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3799), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3801), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3803), - [sym_false] = ACTIONS(3803), - [sym_null] = ACTIONS(3803), - [sym_identifier] = ACTIONS(3803), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3547), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3547), + [sym_preproc_directive] = ACTIONS(3547), + [anon_sym_SEMI] = ACTIONS(3549), + [anon_sym_typedef] = ACTIONS(3547), + [anon_sym_extern] = ACTIONS(3547), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_LPAREN2] = ACTIONS(3549), + [anon_sym_STAR] = ACTIONS(3549), + [anon_sym_static] = ACTIONS(3547), + [anon_sym_auto] = ACTIONS(3547), + [anon_sym_register] = ACTIONS(3547), + [anon_sym_inline] = ACTIONS(3547), + [anon_sym_const] = ACTIONS(3547), + [anon_sym_restrict] = ACTIONS(3547), + [anon_sym_volatile] = ACTIONS(3547), + [anon_sym__Atomic] = ACTIONS(3547), + [anon_sym_unsigned] = ACTIONS(3547), + [anon_sym_long] = ACTIONS(3547), + [anon_sym_short] = ACTIONS(3547), + [sym_primitive_type] = ACTIONS(3547), + [anon_sym_enum] = ACTIONS(3547), + [anon_sym_struct] = ACTIONS(3547), + [anon_sym_union] = ACTIONS(3547), + [anon_sym_if] = ACTIONS(3547), + [anon_sym_else] = ACTIONS(3547), + [anon_sym_switch] = ACTIONS(3547), + [anon_sym_case] = ACTIONS(3547), + [anon_sym_default] = ACTIONS(3547), + [anon_sym_while] = ACTIONS(3547), + [anon_sym_do] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3547), + [anon_sym_return] = ACTIONS(3547), + [anon_sym_break] = ACTIONS(3547), + [anon_sym_continue] = ACTIONS(3547), + [anon_sym_goto] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_BANG] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3547), + [anon_sym_DASH] = ACTIONS(3547), + [anon_sym_DASH_DASH] = ACTIONS(3549), + [anon_sym_PLUS_PLUS] = ACTIONS(3549), + [anon_sym_sizeof] = ACTIONS(3547), + [sym_number_literal] = ACTIONS(3549), + [anon_sym_SQUOTE] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [sym_true] = ACTIONS(3547), + [sym_false] = ACTIONS(3547), + [sym_null] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3547), [sym_comment] = ACTIONS(39), }, [1341] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3805), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(1354), + [sym_labeled_statement] = STATE(1354), + [sym_expression_statement] = STATE(1354), + [sym_if_statement] = STATE(1354), + [sym_switch_statement] = STATE(1354), + [sym_case_statement] = STATE(1354), + [sym_while_statement] = STATE(1354), + [sym_do_statement] = STATE(1354), + [sym_for_statement] = STATE(1354), + [sym_return_statement] = STATE(1354), + [sym_break_statement] = STATE(1354), + [sym_continue_statement] = STATE(1354), + [sym_goto_statement] = STATE(1354), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3067), [sym_comment] = ACTIONS(39), }, [1342] = { - [sym_compound_statement] = STATE(1378), - [sym_labeled_statement] = STATE(1378), - [sym_expression_statement] = STATE(1378), - [sym_if_statement] = STATE(1378), - [sym_switch_statement] = STATE(1378), - [sym_case_statement] = STATE(1378), - [sym_while_statement] = STATE(1378), - [sym_do_statement] = STATE(1378), - [sym_for_statement] = STATE(1378), - [sym_return_statement] = STATE(1378), - [sym_break_statement] = STATE(1378), - [sym_continue_statement] = STATE(1378), - [sym_goto_statement] = STATE(1378), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(3352), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3627), [sym_comment] = ACTIONS(39), }, [1343] = { - [sym_compound_statement] = STATE(1083), - [sym_labeled_statement] = STATE(1083), - [sym_expression_statement] = STATE(1083), - [sym_if_statement] = STATE(1083), - [sym_switch_statement] = STATE(1083), - [sym_case_statement] = STATE(1083), - [sym_while_statement] = STATE(1083), - [sym_do_statement] = STATE(1083), - [sym_for_statement] = STATE(1083), - [sym_return_statement] = STATE(1083), - [sym_break_statement] = STATE(1083), - [sym_continue_statement] = STATE(1083), - [sym_goto_statement] = STATE(1083), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(3352), + [sym_compound_statement] = STATE(1326), + [sym_labeled_statement] = STATE(1326), + [sym_expression_statement] = STATE(1326), + [sym_if_statement] = STATE(1326), + [sym_switch_statement] = STATE(1326), + [sym_case_statement] = STATE(1326), + [sym_while_statement] = STATE(1326), + [sym_do_statement] = STATE(1326), + [sym_for_statement] = STATE(1326), + [sym_return_statement] = STATE(1326), + [sym_break_statement] = STATE(1326), + [sym_continue_statement] = STATE(1326), + [sym_goto_statement] = STATE(1326), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2745), [sym_comment] = ACTIONS(39), }, [1344] = { - [sym_compound_statement] = STATE(1086), - [sym_labeled_statement] = STATE(1086), - [sym_expression_statement] = STATE(1086), - [sym_if_statement] = STATE(1086), - [sym_switch_statement] = STATE(1086), - [sym_case_statement] = STATE(1086), - [sym_while_statement] = STATE(1086), - [sym_do_statement] = STATE(1086), - [sym_for_statement] = STATE(1086), - [sym_return_statement] = STATE(1086), - [sym_break_statement] = STATE(1086), - [sym_continue_statement] = STATE(1086), - [sym_goto_statement] = STATE(1086), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(3352), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3629), [sym_comment] = ACTIONS(39), }, [1345] = { - [sym__expression] = STATE(1380), - [sym_conditional_expression] = STATE(1380), - [sym_assignment_expression] = STATE(1380), - [sym_pointer_expression] = STATE(1380), - [sym_logical_expression] = STATE(1380), - [sym_bitwise_expression] = STATE(1380), - [sym_equality_expression] = STATE(1380), - [sym_relational_expression] = STATE(1380), - [sym_shift_expression] = STATE(1380), - [sym_math_expression] = STATE(1380), - [sym_cast_expression] = STATE(1380), - [sym_sizeof_expression] = STATE(1380), - [sym_subscript_expression] = STATE(1380), - [sym_call_expression] = STATE(1380), - [sym_field_expression] = STATE(1380), - [sym_compound_literal_expression] = STATE(1380), - [sym_parenthesized_expression] = STATE(1380), - [sym_char_literal] = STATE(1380), - [sym_concatenated_string] = STATE(1380), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3807), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3809), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3811), - [sym_false] = ACTIONS(3811), - [sym_null] = ACTIONS(3811), - [sym_identifier] = ACTIONS(3811), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1357), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3629), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1346] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3813), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3591), + [sym_preproc_directive] = ACTIONS(3591), + [anon_sym_SEMI] = ACTIONS(3593), + [anon_sym_typedef] = ACTIONS(3591), + [anon_sym_extern] = ACTIONS(3591), + [anon_sym_LBRACE] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3593), + [anon_sym_STAR] = ACTIONS(3593), + [anon_sym_static] = ACTIONS(3591), + [anon_sym_auto] = ACTIONS(3591), + [anon_sym_register] = ACTIONS(3591), + [anon_sym_inline] = ACTIONS(3591), + [anon_sym_const] = ACTIONS(3591), + [anon_sym_restrict] = ACTIONS(3591), + [anon_sym_volatile] = ACTIONS(3591), + [anon_sym__Atomic] = ACTIONS(3591), + [anon_sym_unsigned] = ACTIONS(3591), + [anon_sym_long] = ACTIONS(3591), + [anon_sym_short] = ACTIONS(3591), + [sym_primitive_type] = ACTIONS(3591), + [anon_sym_enum] = ACTIONS(3591), + [anon_sym_struct] = ACTIONS(3591), + [anon_sym_union] = ACTIONS(3591), + [anon_sym_if] = ACTIONS(3591), + [anon_sym_else] = ACTIONS(3591), + [anon_sym_switch] = ACTIONS(3591), + [anon_sym_case] = ACTIONS(3591), + [anon_sym_default] = ACTIONS(3591), + [anon_sym_while] = ACTIONS(3591), + [anon_sym_do] = ACTIONS(3591), + [anon_sym_for] = ACTIONS(3591), + [anon_sym_return] = ACTIONS(3591), + [anon_sym_break] = ACTIONS(3591), + [anon_sym_continue] = ACTIONS(3591), + [anon_sym_goto] = ACTIONS(3591), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(3593), + [anon_sym_PLUS] = ACTIONS(3591), + [anon_sym_DASH] = ACTIONS(3591), + [anon_sym_DASH_DASH] = ACTIONS(3593), + [anon_sym_PLUS_PLUS] = ACTIONS(3593), + [anon_sym_sizeof] = ACTIONS(3591), + [sym_number_literal] = ACTIONS(3593), + [anon_sym_SQUOTE] = ACTIONS(3593), + [anon_sym_DQUOTE] = ACTIONS(3593), + [sym_true] = ACTIONS(3591), + [sym_false] = ACTIONS(3591), + [sym_null] = ACTIONS(3591), + [sym_identifier] = ACTIONS(3591), [sym_comment] = ACTIONS(39), }, [1347] = { - [sym__expression] = STATE(1382), - [sym_conditional_expression] = STATE(1382), - [sym_assignment_expression] = STATE(1382), - [sym_pointer_expression] = STATE(1382), - [sym_logical_expression] = STATE(1382), - [sym_bitwise_expression] = STATE(1382), - [sym_equality_expression] = STATE(1382), - [sym_relational_expression] = STATE(1382), - [sym_shift_expression] = STATE(1382), - [sym_math_expression] = STATE(1382), - [sym_cast_expression] = STATE(1382), - [sym_sizeof_expression] = STATE(1382), - [sym_subscript_expression] = STATE(1382), - [sym_call_expression] = STATE(1382), - [sym_field_expression] = STATE(1382), - [sym_compound_literal_expression] = STATE(1382), - [sym_parenthesized_expression] = STATE(1382), - [sym_char_literal] = STATE(1382), - [sym_concatenated_string] = STATE(1382), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3813), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3815), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3817), - [sym_false] = ACTIONS(3817), - [sym_null] = ACTIONS(3817), - [sym_identifier] = ACTIONS(3817), + [sym_compound_statement] = STATE(1358), + [sym_labeled_statement] = STATE(1358), + [sym_expression_statement] = STATE(1358), + [sym_if_statement] = STATE(1358), + [sym_switch_statement] = STATE(1358), + [sym_case_statement] = STATE(1358), + [sym_while_statement] = STATE(1358), + [sym_do_statement] = STATE(1358), + [sym_for_statement] = STATE(1358), + [sym_return_statement] = STATE(1358), + [sym_break_statement] = STATE(1358), + [sym_continue_statement] = STATE(1358), + [sym_goto_statement] = STATE(1358), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1520), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2747), [sym_comment] = ACTIONS(39), }, [1348] = { - [sym_compound_statement] = STATE(1350), - [sym_labeled_statement] = STATE(1350), - [sym_expression_statement] = STATE(1350), - [sym_if_statement] = STATE(1350), - [sym_switch_statement] = STATE(1350), - [sym_case_statement] = STATE(1350), - [sym_while_statement] = STATE(1350), - [sym_do_statement] = STATE(1350), - [sym_for_statement] = STATE(1350), - [sym_return_statement] = STATE(1350), - [sym_break_statement] = STATE(1350), - [sym_continue_statement] = STATE(1350), - [sym_goto_statement] = STATE(1350), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1050), + [sym_compound_statement] = STATE(1335), + [sym_labeled_statement] = STATE(1335), + [sym_expression_statement] = STATE(1335), + [sym_if_statement] = STATE(1335), + [sym_switch_statement] = STATE(1335), + [sym_case_statement] = STATE(1335), + [sym_while_statement] = STATE(1335), + [sym_do_statement] = STATE(1335), + [sym_for_statement] = STATE(1335), + [sym_return_statement] = STATE(1335), + [sym_break_statement] = STATE(1335), + [sym_continue_statement] = STATE(1335), + [sym_goto_statement] = STATE(1335), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_switch] = ACTIONS(1600), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_do] = ACTIONS(568), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(1610), [sym_comment] = ACTIONS(39), }, [1349] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3819), + [sym_compound_statement] = STATE(1312), + [sym_labeled_statement] = STATE(1312), + [sym_expression_statement] = STATE(1312), + [sym_if_statement] = STATE(1312), + [sym_switch_statement] = STATE(1312), + [sym_case_statement] = STATE(1312), + [sym_while_statement] = STATE(1312), + [sym_do_statement] = STATE(1312), + [sym_for_statement] = STATE(1312), + [sym_return_statement] = STATE(1312), + [sym_break_statement] = STATE(1312), + [sym_continue_statement] = STATE(1312), + [sym_goto_statement] = STATE(1312), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(2484), [sym_comment] = ACTIONS(39), }, [1350] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3821), - [anon_sym_LPAREN] = ACTIONS(3823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3821), - [sym_preproc_directive] = ACTIONS(3821), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_typedef] = ACTIONS(3821), - [anon_sym_extern] = ACTIONS(3821), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_static] = ACTIONS(3821), - [anon_sym_auto] = ACTIONS(3821), - [anon_sym_register] = ACTIONS(3821), - [anon_sym_inline] = ACTIONS(3821), - [anon_sym_const] = ACTIONS(3821), - [anon_sym_restrict] = ACTIONS(3821), - [anon_sym_volatile] = ACTIONS(3821), - [anon_sym__Atomic] = ACTIONS(3821), - [anon_sym_unsigned] = ACTIONS(3821), - [anon_sym_long] = ACTIONS(3821), - [anon_sym_short] = ACTIONS(3821), - [sym_primitive_type] = ACTIONS(3821), - [anon_sym_enum] = ACTIONS(3821), - [anon_sym_struct] = ACTIONS(3821), - [anon_sym_union] = ACTIONS(3821), - [anon_sym_if] = ACTIONS(3821), - [anon_sym_else] = ACTIONS(3821), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_case] = ACTIONS(3821), - [anon_sym_default] = ACTIONS(3821), - [anon_sym_while] = ACTIONS(3821), - [anon_sym_do] = ACTIONS(3821), - [anon_sym_for] = ACTIONS(3821), - [anon_sym_return] = ACTIONS(3821), - [anon_sym_break] = ACTIONS(3821), - [anon_sym_continue] = ACTIONS(3821), - [anon_sym_goto] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_TILDE] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_sizeof] = ACTIONS(3821), - [sym_number_literal] = ACTIONS(3823), - [anon_sym_SQUOTE] = ACTIONS(3823), - [anon_sym_DQUOTE] = ACTIONS(3823), - [sym_true] = ACTIONS(3821), - [sym_false] = ACTIONS(3821), - [sym_null] = ACTIONS(3821), - [sym_identifier] = ACTIONS(3821), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3631), [sym_comment] = ACTIONS(39), }, [1351] = { - [sym_compound_statement] = STATE(1384), - [sym_labeled_statement] = STATE(1384), - [sym_expression_statement] = STATE(1384), - [sym_if_statement] = STATE(1384), - [sym_switch_statement] = STATE(1384), - [sym_case_statement] = STATE(1384), - [sym_while_statement] = STATE(1384), - [sym_do_statement] = STATE(1384), - [sym_for_statement] = STATE(1384), - [sym_return_statement] = STATE(1384), - [sym_break_statement] = STATE(1384), - [sym_continue_statement] = STATE(1384), - [sym_goto_statement] = STATE(1384), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(566), - [anon_sym_case] = ACTIONS(568), - [anon_sym_default] = ACTIONS(570), - [anon_sym_while] = ACTIONS(572), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(576), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1741), + [sym_compound_statement] = STATE(1340), + [sym_labeled_statement] = STATE(1340), + [sym_expression_statement] = STATE(1340), + [sym_if_statement] = STATE(1340), + [sym_switch_statement] = STATE(1340), + [sym_case_statement] = STATE(1340), + [sym_while_statement] = STATE(1340), + [sym_do_statement] = STATE(1340), + [sym_for_statement] = STATE(1340), + [sym_return_statement] = STATE(1340), + [sym_break_statement] = STATE(1340), + [sym_continue_statement] = STATE(1340), + [sym_goto_statement] = STATE(1340), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3057), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3065), [sym_comment] = ACTIONS(39), }, [1352] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3633), [sym_comment] = ACTIONS(39), }, [1353] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3827), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_argument_list] = STATE(465), + [aux_sym_for_statement_repeat1] = STATE(1361), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(1096), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_EQ] = ACTIONS(1562), + [anon_sym_QMARK] = ACTIONS(1564), + [anon_sym_STAR_EQ] = ACTIONS(1566), + [anon_sym_SLASH_EQ] = ACTIONS(1566), + [anon_sym_PERCENT_EQ] = ACTIONS(1566), + [anon_sym_PLUS_EQ] = ACTIONS(1566), + [anon_sym_DASH_EQ] = ACTIONS(1566), + [anon_sym_LT_LT_EQ] = ACTIONS(1566), + [anon_sym_GT_GT_EQ] = ACTIONS(1566), + [anon_sym_AMP_EQ] = ACTIONS(1566), + [anon_sym_CARET_EQ] = ACTIONS(1566), + [anon_sym_PIPE_EQ] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_PIPE_PIPE] = ACTIONS(1570), + [anon_sym_AMP_AMP] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_CARET] = ACTIONS(1576), + [anon_sym_EQ_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_LT_EQ] = ACTIONS(1582), + [anon_sym_GT_EQ] = ACTIONS(1582), + [anon_sym_LT_LT] = ACTIONS(1584), + [anon_sym_GT_GT] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1560), + [anon_sym_PERCENT] = ACTIONS(1560), + [anon_sym_DASH_DASH] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1128), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DASH_GT] = ACTIONS(1130), [sym_comment] = ACTIONS(39), }, [1354] = { - [sym_declaration] = STATE(1211), - [sym_type_definition] = STATE(1211), - [sym__declaration_specifiers] = STATE(1140), - [sym_compound_statement] = STATE(1211), - [sym_storage_class_specifier] = STATE(96), - [sym_type_qualifier] = STATE(96), - [sym__type_specifier] = STATE(95), - [sym_sized_type_specifier] = STATE(95), - [sym_enum_specifier] = STATE(95), - [sym_struct_specifier] = STATE(95), - [sym_union_specifier] = STATE(95), - [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(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [sym_macro_type_specifier] = STATE(95), - [aux_sym__declaration_specifiers_repeat1] = STATE(96), - [aux_sym_sized_type_specifier_repeat1] = STATE(97), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_typedef] = ACTIONS(380), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(177), - [anon_sym_long] = ACTIONS(177), - [anon_sym_short] = ACTIONS(177), - [sym_primitive_type] = ACTIONS(179), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(3553), - [anon_sym_switch] = ACTIONS(3555), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_default] = ACTIONS(3559), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(3563), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3763), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3591), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3591), + [sym_preproc_directive] = ACTIONS(3591), + [anon_sym_SEMI] = ACTIONS(3593), + [anon_sym_typedef] = ACTIONS(3591), + [anon_sym_extern] = ACTIONS(3591), + [anon_sym_LBRACE] = ACTIONS(3593), + [anon_sym_LPAREN2] = ACTIONS(3593), + [anon_sym_STAR] = ACTIONS(3593), + [anon_sym_static] = ACTIONS(3591), + [anon_sym_auto] = ACTIONS(3591), + [anon_sym_register] = ACTIONS(3591), + [anon_sym_inline] = ACTIONS(3591), + [anon_sym_const] = ACTIONS(3591), + [anon_sym_restrict] = ACTIONS(3591), + [anon_sym_volatile] = ACTIONS(3591), + [anon_sym__Atomic] = ACTIONS(3591), + [anon_sym_unsigned] = ACTIONS(3591), + [anon_sym_long] = ACTIONS(3591), + [anon_sym_short] = ACTIONS(3591), + [sym_primitive_type] = ACTIONS(3591), + [anon_sym_enum] = ACTIONS(3591), + [anon_sym_struct] = ACTIONS(3591), + [anon_sym_union] = ACTIONS(3591), + [anon_sym_if] = ACTIONS(3591), + [anon_sym_else] = ACTIONS(3591), + [anon_sym_switch] = ACTIONS(3591), + [anon_sym_case] = ACTIONS(3591), + [anon_sym_default] = ACTIONS(3591), + [anon_sym_while] = ACTIONS(3591), + [anon_sym_do] = ACTIONS(3591), + [anon_sym_for] = ACTIONS(3591), + [anon_sym_return] = ACTIONS(3591), + [anon_sym_break] = ACTIONS(3591), + [anon_sym_continue] = ACTIONS(3591), + [anon_sym_goto] = ACTIONS(3591), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(3593), + [anon_sym_PLUS] = ACTIONS(3591), + [anon_sym_DASH] = ACTIONS(3591), + [anon_sym_DASH_DASH] = ACTIONS(3593), + [anon_sym_PLUS_PLUS] = ACTIONS(3593), + [anon_sym_sizeof] = ACTIONS(3591), + [sym_number_literal] = ACTIONS(3593), + [anon_sym_SQUOTE] = ACTIONS(3593), + [anon_sym_DQUOTE] = ACTIONS(3593), + [sym_true] = ACTIONS(3591), + [sym_false] = ACTIONS(3591), + [sym_null] = ACTIONS(3591), + [sym_identifier] = ACTIONS(3591), [sym_comment] = ACTIONS(39), }, [1355] = { - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1095), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_EQ] = ACTIONS(1098), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3677), - [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(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_CARET] = ACTIONS(1098), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_PLUS] = ACTIONS(1098), - [anon_sym_DASH] = ACTIONS(1098), - [anon_sym_SLASH] = ACTIONS(1098), - [anon_sym_PERCENT] = ACTIONS(1098), - [anon_sym_DASH_DASH] = ACTIONS(1090), - [anon_sym_PLUS_PLUS] = ACTIONS(1090), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_DASH_GT] = ACTIONS(1090), - [sym_identifier] = ACTIONS(86), + [sym_compound_statement] = STATE(1362), + [sym_labeled_statement] = STATE(1362), + [sym_expression_statement] = STATE(1362), + [sym_if_statement] = STATE(1362), + [sym_switch_statement] = STATE(1362), + [sym_case_statement] = STATE(1362), + [sym_while_statement] = STATE(1362), + [sym_do_statement] = STATE(1362), + [sym_for_statement] = STATE(1362), + [sym_return_statement] = STATE(1362), + [sym_break_statement] = STATE(1362), + [sym_continue_statement] = STATE(1362), + [sym_goto_statement] = STATE(1362), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_switch] = ACTIONS(2258), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3067), [sym_comment] = ACTIONS(39), }, [1356] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_RPAREN] = ACTIONS(3829), - [anon_sym_STAR] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(2452), - [anon_sym_QMARK] = ACTIONS(2454), - [anon_sym_STAR_EQ] = ACTIONS(2456), - [anon_sym_SLASH_EQ] = ACTIONS(2456), - [anon_sym_PERCENT_EQ] = ACTIONS(2456), - [anon_sym_PLUS_EQ] = ACTIONS(2456), - [anon_sym_DASH_EQ] = ACTIONS(2456), - [anon_sym_LT_LT_EQ] = ACTIONS(2456), - [anon_sym_GT_GT_EQ] = ACTIONS(2456), - [anon_sym_AMP_EQ] = ACTIONS(2456), - [anon_sym_CARET_EQ] = ACTIONS(2456), - [anon_sym_PIPE_EQ] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2462), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_CARET] = ACTIONS(2466), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(2472), - [anon_sym_GT_EQ] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2476), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(1346), + [sym_labeled_statement] = STATE(1346), + [sym_expression_statement] = STATE(1346), + [sym_if_statement] = STATE(1346), + [sym_switch_statement] = STATE(1346), + [sym_case_statement] = STATE(1346), + [sym_while_statement] = STATE(1346), + [sym_do_statement] = STATE(1346), + [sym_for_statement] = STATE(1346), + [sym_return_statement] = STATE(1346), + [sym_break_statement] = STATE(1346), + [sym_continue_statement] = STATE(1346), + [sym_goto_statement] = STATE(1346), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2745), [sym_comment] = ACTIONS(39), }, [1357] = { - [sym__expression] = STATE(1389), - [sym_conditional_expression] = STATE(1389), - [sym_assignment_expression] = STATE(1389), - [sym_pointer_expression] = STATE(1389), - [sym_logical_expression] = STATE(1389), - [sym_bitwise_expression] = STATE(1389), - [sym_equality_expression] = STATE(1389), - [sym_relational_expression] = STATE(1389), - [sym_shift_expression] = STATE(1389), - [sym_math_expression] = STATE(1389), - [sym_cast_expression] = STATE(1389), - [sym_sizeof_expression] = STATE(1389), - [sym_subscript_expression] = STATE(1389), - [sym_call_expression] = STATE(1389), - [sym_field_expression] = STATE(1389), - [sym_compound_literal_expression] = STATE(1389), - [sym_parenthesized_expression] = STATE(1389), - [sym_char_literal] = STATE(1389), - [sym_concatenated_string] = STATE(1389), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3831), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3833), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3835), - [sym_false] = ACTIONS(3835), - [sym_null] = ACTIONS(3835), - [sym_identifier] = ACTIONS(3835), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3635), [sym_comment] = ACTIONS(39), }, [1358] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3837), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3617), + [sym_preproc_directive] = ACTIONS(3617), + [anon_sym_SEMI] = ACTIONS(3619), + [anon_sym_typedef] = ACTIONS(3617), + [anon_sym_extern] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_STAR] = ACTIONS(3619), + [anon_sym_static] = ACTIONS(3617), + [anon_sym_auto] = ACTIONS(3617), + [anon_sym_register] = ACTIONS(3617), + [anon_sym_inline] = ACTIONS(3617), + [anon_sym_const] = ACTIONS(3617), + [anon_sym_restrict] = ACTIONS(3617), + [anon_sym_volatile] = ACTIONS(3617), + [anon_sym__Atomic] = ACTIONS(3617), + [anon_sym_unsigned] = ACTIONS(3617), + [anon_sym_long] = ACTIONS(3617), + [anon_sym_short] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(3617), + [anon_sym_enum] = ACTIONS(3617), + [anon_sym_struct] = ACTIONS(3617), + [anon_sym_union] = ACTIONS(3617), + [anon_sym_if] = ACTIONS(3617), + [anon_sym_else] = ACTIONS(3617), + [anon_sym_switch] = ACTIONS(3617), + [anon_sym_case] = ACTIONS(3617), + [anon_sym_default] = ACTIONS(3617), + [anon_sym_while] = ACTIONS(3617), + [anon_sym_do] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3617), + [anon_sym_return] = ACTIONS(3617), + [anon_sym_break] = ACTIONS(3617), + [anon_sym_continue] = ACTIONS(3617), + [anon_sym_goto] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3619), + [anon_sym_PLUS_PLUS] = ACTIONS(3619), + [anon_sym_sizeof] = ACTIONS(3617), + [sym_number_literal] = ACTIONS(3619), + [anon_sym_SQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [sym_true] = ACTIONS(3617), + [sym_false] = ACTIONS(3617), + [sym_null] = ACTIONS(3617), + [sym_identifier] = ACTIONS(3617), [sym_comment] = ACTIONS(39), }, [1359] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3625), - [anon_sym_LPAREN] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3625), - [sym_preproc_directive] = ACTIONS(3625), - [anon_sym_SEMI] = ACTIONS(3627), - [anon_sym_typedef] = ACTIONS(3625), - [anon_sym_extern] = ACTIONS(3625), - [anon_sym_LBRACE] = ACTIONS(3627), - [anon_sym_STAR] = ACTIONS(3627), - [anon_sym_static] = ACTIONS(3625), - [anon_sym_auto] = ACTIONS(3625), - [anon_sym_register] = ACTIONS(3625), - [anon_sym_inline] = ACTIONS(3625), - [anon_sym_const] = ACTIONS(3625), - [anon_sym_restrict] = ACTIONS(3625), - [anon_sym_volatile] = ACTIONS(3625), - [anon_sym__Atomic] = ACTIONS(3625), - [anon_sym_unsigned] = ACTIONS(3625), - [anon_sym_long] = ACTIONS(3625), - [anon_sym_short] = ACTIONS(3625), - [sym_primitive_type] = ACTIONS(3625), - [anon_sym_enum] = ACTIONS(3625), - [anon_sym_struct] = ACTIONS(3625), - [anon_sym_union] = ACTIONS(3625), - [anon_sym_if] = ACTIONS(3625), - [anon_sym_else] = ACTIONS(3625), - [anon_sym_switch] = ACTIONS(3625), - [anon_sym_case] = ACTIONS(3625), - [anon_sym_default] = ACTIONS(3625), - [anon_sym_while] = ACTIONS(3625), - [anon_sym_do] = ACTIONS(3625), - [anon_sym_for] = ACTIONS(3625), - [anon_sym_return] = ACTIONS(3625), - [anon_sym_break] = ACTIONS(3625), - [anon_sym_continue] = ACTIONS(3625), - [anon_sym_goto] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3627), - [anon_sym_BANG] = ACTIONS(3627), - [anon_sym_TILDE] = ACTIONS(3627), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_DASH_DASH] = ACTIONS(3627), - [anon_sym_PLUS_PLUS] = ACTIONS(3627), - [anon_sym_sizeof] = ACTIONS(3625), - [sym_number_literal] = ACTIONS(3627), - [anon_sym_SQUOTE] = ACTIONS(3627), - [anon_sym_DQUOTE] = ACTIONS(3627), - [sym_true] = ACTIONS(3625), - [sym_false] = ACTIONS(3625), - [sym_null] = ACTIONS(3625), - [sym_identifier] = ACTIONS(3625), + [sym_compound_statement] = STATE(1335), + [sym_labeled_statement] = STATE(1335), + [sym_expression_statement] = STATE(1335), + [sym_if_statement] = STATE(1335), + [sym_switch_statement] = STATE(1335), + [sym_case_statement] = STATE(1335), + [sym_while_statement] = STATE(1335), + [sym_do_statement] = STATE(1335), + [sym_for_statement] = STATE(1335), + [sym_return_statement] = STATE(1335), + [sym_break_statement] = STATE(1335), + [sym_continue_statement] = STATE(1335), + [sym_goto_statement] = STATE(1335), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_char_literal] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LBRACE] = ACTIONS(241), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(1026), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(572), + [anon_sym_break] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_goto] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(594), + [sym_false] = ACTIONS(594), + [sym_null] = ACTIONS(594), + [sym_identifier] = ACTIONS(2484), [sym_comment] = ACTIONS(39), }, [1360] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3657), - [anon_sym_LPAREN] = ACTIONS(3659), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3657), - [sym_preproc_directive] = ACTIONS(3657), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_typedef] = ACTIONS(3657), - [anon_sym_extern] = ACTIONS(3657), - [anon_sym_LBRACE] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(3659), - [anon_sym_static] = ACTIONS(3657), - [anon_sym_auto] = ACTIONS(3657), - [anon_sym_register] = ACTIONS(3657), - [anon_sym_inline] = ACTIONS(3657), - [anon_sym_const] = ACTIONS(3657), - [anon_sym_restrict] = ACTIONS(3657), - [anon_sym_volatile] = ACTIONS(3657), - [anon_sym__Atomic] = ACTIONS(3657), - [anon_sym_unsigned] = ACTIONS(3657), - [anon_sym_long] = ACTIONS(3657), - [anon_sym_short] = ACTIONS(3657), - [sym_primitive_type] = ACTIONS(3657), - [anon_sym_enum] = ACTIONS(3657), - [anon_sym_struct] = ACTIONS(3657), - [anon_sym_union] = ACTIONS(3657), - [anon_sym_if] = ACTIONS(3657), - [anon_sym_else] = ACTIONS(3657), - [anon_sym_switch] = ACTIONS(3657), - [anon_sym_case] = ACTIONS(3657), - [anon_sym_default] = ACTIONS(3657), - [anon_sym_while] = ACTIONS(3657), - [anon_sym_do] = ACTIONS(3657), - [anon_sym_for] = ACTIONS(3657), - [anon_sym_return] = ACTIONS(3657), - [anon_sym_break] = ACTIONS(3657), - [anon_sym_continue] = ACTIONS(3657), - [anon_sym_goto] = ACTIONS(3657), - [anon_sym_AMP] = ACTIONS(3659), - [anon_sym_BANG] = ACTIONS(3659), - [anon_sym_TILDE] = ACTIONS(3659), - [anon_sym_PLUS] = ACTIONS(3657), - [anon_sym_DASH] = ACTIONS(3657), - [anon_sym_DASH_DASH] = ACTIONS(3659), - [anon_sym_PLUS_PLUS] = ACTIONS(3659), - [anon_sym_sizeof] = ACTIONS(3657), - [sym_number_literal] = ACTIONS(3659), - [anon_sym_SQUOTE] = ACTIONS(3659), - [anon_sym_DQUOTE] = ACTIONS(3659), - [sym_true] = ACTIONS(3657), - [sym_false] = ACTIONS(3657), - [sym_null] = ACTIONS(3657), - [sym_identifier] = ACTIONS(3657), + [sym_compound_statement] = STATE(1354), + [sym_labeled_statement] = STATE(1354), + [sym_expression_statement] = STATE(1354), + [sym_if_statement] = STATE(1354), + [sym_switch_statement] = STATE(1354), + [sym_case_statement] = STATE(1354), + [sym_while_statement] = STATE(1354), + [sym_do_statement] = STATE(1354), + [sym_for_statement] = STATE(1354), + [sym_return_statement] = STATE(1354), + [sym_break_statement] = STATE(1354), + [sym_continue_statement] = STATE(1354), + [sym_goto_statement] = STATE(1354), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3057), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3065), [sym_comment] = ACTIONS(39), }, [1361] = { - [sym_compound_statement] = STATE(1391), - [sym_labeled_statement] = STATE(1391), - [sym_expression_statement] = STATE(1391), - [sym_if_statement] = STATE(1391), - [sym_switch_statement] = STATE(1391), - [sym_case_statement] = STATE(1391), - [sym_while_statement] = STATE(1391), - [sym_do_statement] = STATE(1391), - [sym_for_statement] = STATE(1391), - [sym_return_statement] = STATE(1391), - [sym_break_statement] = STATE(1391), - [sym_continue_statement] = STATE(1391), - [sym_goto_statement] = STATE(1391), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3181), + [aux_sym_for_statement_repeat1] = STATE(1088), + [anon_sym_COMMA] = ACTIONS(2530), + [anon_sym_RPAREN] = ACTIONS(3637), [sym_comment] = ACTIONS(39), }, [1362] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3839), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3617), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3617), + [sym_preproc_directive] = ACTIONS(3617), + [anon_sym_SEMI] = ACTIONS(3619), + [anon_sym_typedef] = ACTIONS(3617), + [anon_sym_extern] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_STAR] = ACTIONS(3619), + [anon_sym_static] = ACTIONS(3617), + [anon_sym_auto] = ACTIONS(3617), + [anon_sym_register] = ACTIONS(3617), + [anon_sym_inline] = ACTIONS(3617), + [anon_sym_const] = ACTIONS(3617), + [anon_sym_restrict] = ACTIONS(3617), + [anon_sym_volatile] = ACTIONS(3617), + [anon_sym__Atomic] = ACTIONS(3617), + [anon_sym_unsigned] = ACTIONS(3617), + [anon_sym_long] = ACTIONS(3617), + [anon_sym_short] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(3617), + [anon_sym_enum] = ACTIONS(3617), + [anon_sym_struct] = ACTIONS(3617), + [anon_sym_union] = ACTIONS(3617), + [anon_sym_if] = ACTIONS(3617), + [anon_sym_else] = ACTIONS(3617), + [anon_sym_switch] = ACTIONS(3617), + [anon_sym_case] = ACTIONS(3617), + [anon_sym_default] = ACTIONS(3617), + [anon_sym_while] = ACTIONS(3617), + [anon_sym_do] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3617), + [anon_sym_return] = ACTIONS(3617), + [anon_sym_break] = ACTIONS(3617), + [anon_sym_continue] = ACTIONS(3617), + [anon_sym_goto] = ACTIONS(3617), + [anon_sym_AMP] = ACTIONS(3619), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3619), + [anon_sym_PLUS_PLUS] = ACTIONS(3619), + [anon_sym_sizeof] = ACTIONS(3617), + [sym_number_literal] = ACTIONS(3619), + [anon_sym_SQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [sym_true] = ACTIONS(3617), + [sym_false] = ACTIONS(3617), + [sym_null] = ACTIONS(3617), + [sym_identifier] = ACTIONS(3617), [sym_comment] = ACTIONS(39), }, [1363] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1393), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3839), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), + [sym_compound_statement] = STATE(1358), + [sym_labeled_statement] = STATE(1358), + [sym_expression_statement] = STATE(1358), + [sym_if_statement] = STATE(1358), + [sym_switch_statement] = STATE(1358), + [sym_case_statement] = STATE(1358), + [sym_while_statement] = STATE(1358), + [sym_do_statement] = STATE(1358), + [sym_for_statement] = STATE(1358), + [sym_return_statement] = STATE(1358), + [sym_break_statement] = STATE(1358), + [sym_continue_statement] = STATE(1358), + [sym_goto_statement] = STATE(1358), + [sym__expression] = STATE(649), + [sym_comma_expression] = STATE(650), + [sym_conditional_expression] = STATE(649), + [sym_assignment_expression] = STATE(649), + [sym_pointer_expression] = STATE(649), + [sym_logical_expression] = STATE(649), + [sym_bitwise_expression] = STATE(649), + [sym_equality_expression] = STATE(649), + [sym_relational_expression] = STATE(649), + [sym_shift_expression] = STATE(649), + [sym_math_expression] = STATE(649), + [sym_cast_expression] = STATE(649), + [sym_sizeof_expression] = STATE(649), + [sym_subscript_expression] = STATE(649), + [sym_call_expression] = STATE(649), + [sym_field_expression] = STATE(649), + [sym_compound_literal_expression] = STATE(649), + [sym_parenthesized_expression] = STATE(649), + [sym_char_literal] = STATE(649), + [sym_concatenated_string] = STATE(649), + [sym_string_literal] = STATE(253), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(2743), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_goto] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE] = ACTIONS(41), + [sym_true] = ACTIONS(1542), + [sym_false] = ACTIONS(1542), + [sym_null] = ACTIONS(1542), + [sym_identifier] = ACTIONS(2745), [sym_comment] = ACTIONS(39), }, [1364] = { - [sym_compound_statement] = STATE(1394), - [sym_labeled_statement] = STATE(1394), - [sym_expression_statement] = STATE(1394), - [sym_if_statement] = STATE(1394), - [sym_switch_statement] = STATE(1394), - [sym_case_statement] = STATE(1394), - [sym_while_statement] = STATE(1394), - [sym_do_statement] = STATE(1394), - [sym_for_statement] = STATE(1394), - [sym_return_statement] = STATE(1394), - [sym_break_statement] = STATE(1394), - [sym_continue_statement] = STATE(1394), - [sym_goto_statement] = STATE(1394), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(3453), - [sym_comment] = ACTIONS(39), - }, - [1365] = { - [sym_compound_statement] = STATE(1225), - [sym_labeled_statement] = STATE(1225), - [sym_expression_statement] = STATE(1225), - [sym_if_statement] = STATE(1225), - [sym_switch_statement] = STATE(1225), - [sym_case_statement] = STATE(1225), - [sym_while_statement] = STATE(1225), - [sym_do_statement] = STATE(1225), - [sym_for_statement] = STATE(1225), - [sym_return_statement] = STATE(1225), - [sym_break_statement] = STATE(1225), - [sym_continue_statement] = STATE(1225), - [sym_goto_statement] = STATE(1225), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(3453), - [sym_comment] = ACTIONS(39), - }, - [1366] = { - [sym_compound_statement] = STATE(1226), - [sym_labeled_statement] = STATE(1226), - [sym_expression_statement] = STATE(1226), - [sym_if_statement] = STATE(1226), - [sym_switch_statement] = STATE(1226), - [sym_case_statement] = STATE(1226), - [sym_while_statement] = STATE(1226), - [sym_do_statement] = STATE(1226), - [sym_for_statement] = STATE(1226), - [sym_return_statement] = STATE(1226), - [sym_break_statement] = STATE(1226), - [sym_continue_statement] = STATE(1226), - [sym_goto_statement] = STATE(1226), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(3453), - [sym_comment] = ACTIONS(39), - }, - [1367] = { - [sym__expression] = STATE(1396), - [sym_conditional_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1396), - [sym_pointer_expression] = STATE(1396), - [sym_logical_expression] = STATE(1396), - [sym_bitwise_expression] = STATE(1396), - [sym_equality_expression] = STATE(1396), - [sym_relational_expression] = STATE(1396), - [sym_shift_expression] = STATE(1396), - [sym_math_expression] = STATE(1396), - [sym_cast_expression] = STATE(1396), - [sym_sizeof_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_call_expression] = STATE(1396), - [sym_field_expression] = STATE(1396), - [sym_compound_literal_expression] = STATE(1396), - [sym_parenthesized_expression] = STATE(1396), - [sym_char_literal] = STATE(1396), - [sym_concatenated_string] = STATE(1396), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3841), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3843), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3845), - [sym_false] = ACTIONS(3845), - [sym_null] = ACTIONS(3845), - [sym_identifier] = ACTIONS(3845), - [sym_comment] = ACTIONS(39), - }, - [1368] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1369] = { - [sym__expression] = STATE(1398), - [sym_conditional_expression] = STATE(1398), - [sym_assignment_expression] = STATE(1398), - [sym_pointer_expression] = STATE(1398), - [sym_logical_expression] = STATE(1398), - [sym_bitwise_expression] = STATE(1398), - [sym_equality_expression] = STATE(1398), - [sym_relational_expression] = STATE(1398), - [sym_shift_expression] = STATE(1398), - [sym_math_expression] = STATE(1398), - [sym_cast_expression] = STATE(1398), - [sym_sizeof_expression] = STATE(1398), - [sym_subscript_expression] = STATE(1398), - [sym_call_expression] = STATE(1398), - [sym_field_expression] = STATE(1398), - [sym_compound_literal_expression] = STATE(1398), - [sym_parenthesized_expression] = STATE(1398), - [sym_char_literal] = STATE(1398), - [sym_concatenated_string] = STATE(1398), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3849), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3851), - [sym_false] = ACTIONS(3851), - [sym_null] = ACTIONS(3851), - [sym_identifier] = ACTIONS(3851), - [sym_comment] = ACTIONS(39), - }, - [1370] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3747), - [anon_sym_LPAREN] = ACTIONS(3749), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3747), - [sym_preproc_directive] = ACTIONS(3747), - [anon_sym_SEMI] = ACTIONS(3749), - [anon_sym_typedef] = ACTIONS(3747), - [anon_sym_extern] = ACTIONS(3747), - [anon_sym_LBRACE] = ACTIONS(3749), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_static] = ACTIONS(3747), - [anon_sym_auto] = ACTIONS(3747), - [anon_sym_register] = ACTIONS(3747), - [anon_sym_inline] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3747), - [anon_sym_restrict] = ACTIONS(3747), - [anon_sym_volatile] = ACTIONS(3747), - [anon_sym__Atomic] = ACTIONS(3747), - [anon_sym_unsigned] = ACTIONS(3747), - [anon_sym_long] = ACTIONS(3747), - [anon_sym_short] = ACTIONS(3747), - [sym_primitive_type] = ACTIONS(3747), - [anon_sym_enum] = ACTIONS(3747), - [anon_sym_struct] = ACTIONS(3747), - [anon_sym_union] = ACTIONS(3747), - [anon_sym_if] = ACTIONS(3747), - [anon_sym_else] = ACTIONS(3747), - [anon_sym_switch] = ACTIONS(3747), - [anon_sym_case] = ACTIONS(3747), - [anon_sym_default] = ACTIONS(3747), - [anon_sym_while] = ACTIONS(3747), - [anon_sym_do] = ACTIONS(3747), - [anon_sym_for] = ACTIONS(3747), - [anon_sym_return] = ACTIONS(3747), - [anon_sym_break] = ACTIONS(3747), - [anon_sym_continue] = ACTIONS(3747), - [anon_sym_goto] = ACTIONS(3747), - [anon_sym_AMP] = ACTIONS(3749), - [anon_sym_BANG] = ACTIONS(3749), - [anon_sym_TILDE] = ACTIONS(3749), - [anon_sym_PLUS] = ACTIONS(3747), - [anon_sym_DASH] = ACTIONS(3747), - [anon_sym_DASH_DASH] = ACTIONS(3749), - [anon_sym_PLUS_PLUS] = ACTIONS(3749), - [anon_sym_sizeof] = ACTIONS(3747), - [sym_number_literal] = ACTIONS(3749), - [anon_sym_SQUOTE] = ACTIONS(3749), - [anon_sym_DQUOTE] = ACTIONS(3749), - [sym_true] = ACTIONS(3747), - [sym_false] = ACTIONS(3747), - [sym_null] = ACTIONS(3747), - [sym_identifier] = ACTIONS(3747), - [sym_comment] = ACTIONS(39), - }, - [1371] = { - [sym_compound_statement] = STATE(1399), - [sym_labeled_statement] = STATE(1399), - [sym_expression_statement] = STATE(1399), - [sym_if_statement] = STATE(1399), - [sym_switch_statement] = STATE(1399), - [sym_case_statement] = STATE(1399), - [sym_while_statement] = STATE(1399), - [sym_do_statement] = STATE(1399), - [sym_for_statement] = STATE(1399), - [sym_return_statement] = STATE(1399), - [sym_break_statement] = STATE(1399), - [sym_continue_statement] = STATE(1399), - [sym_goto_statement] = STATE(1399), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(2825), - [sym_comment] = ACTIONS(39), - }, - [1372] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3853), - [sym_comment] = ACTIONS(39), - }, - [1373] = { - [sym_compound_statement] = STATE(1239), - [sym_labeled_statement] = STATE(1239), - [sym_expression_statement] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_switch_statement] = STATE(1239), - [sym_case_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_do_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_return_statement] = STATE(1239), - [sym_break_statement] = STATE(1239), - [sym_continue_statement] = STATE(1239), - [sym_goto_statement] = STATE(1239), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(2960), - [sym_comment] = ACTIONS(39), - }, - [1374] = { - [sym_compound_statement] = STATE(1253), - [sym_labeled_statement] = STATE(1253), - [sym_expression_statement] = STATE(1253), - [sym_if_statement] = STATE(1253), - [sym_switch_statement] = STATE(1253), - [sym_case_statement] = STATE(1253), - [sym_while_statement] = STATE(1253), - [sym_do_statement] = STATE(1253), - [sym_for_statement] = STATE(1253), - [sym_return_statement] = STATE(1253), - [sym_break_statement] = STATE(1253), - [sym_continue_statement] = STATE(1253), - [sym_goto_statement] = STATE(1253), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(2960), - [sym_comment] = ACTIONS(39), - }, - [1375] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3855), - [sym_comment] = ACTIONS(39), - }, - [1376] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1402), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1377] = { - [sym__expression] = STATE(1403), - [sym_conditional_expression] = STATE(1403), - [sym_assignment_expression] = STATE(1403), - [sym_pointer_expression] = STATE(1403), - [sym_logical_expression] = STATE(1403), - [sym_bitwise_expression] = STATE(1403), - [sym_equality_expression] = STATE(1403), - [sym_relational_expression] = STATE(1403), - [sym_shift_expression] = STATE(1403), - [sym_math_expression] = STATE(1403), - [sym_cast_expression] = STATE(1403), - [sym_sizeof_expression] = STATE(1403), - [sym_subscript_expression] = STATE(1403), - [sym_call_expression] = STATE(1403), - [sym_field_expression] = STATE(1403), - [sym_compound_literal_expression] = STATE(1403), - [sym_parenthesized_expression] = STATE(1403), - [sym_char_literal] = STATE(1403), - [sym_concatenated_string] = STATE(1403), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3857), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3859), - [sym_false] = ACTIONS(3859), - [sym_null] = ACTIONS(3859), - [sym_identifier] = ACTIONS(3859), - [sym_comment] = ACTIONS(39), - }, - [1378] = { - [anon_sym_else] = ACTIONS(3861), - [anon_sym_while] = ACTIONS(3318), - [sym_comment] = ACTIONS(39), - }, - [1379] = { - [sym_compound_statement] = STATE(1183), - [sym_labeled_statement] = STATE(1183), - [sym_expression_statement] = STATE(1183), - [sym_if_statement] = STATE(1183), - [sym_switch_statement] = STATE(1183), - [sym_case_statement] = STATE(1183), - [sym_while_statement] = STATE(1183), - [sym_do_statement] = STATE(1183), - [sym_for_statement] = STATE(1183), - [sym_return_statement] = STATE(1183), - [sym_break_statement] = STATE(1183), - [sym_continue_statement] = STATE(1183), - [sym_goto_statement] = STATE(1183), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(3352), - [sym_comment] = ACTIONS(39), - }, - [1380] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1406), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3863), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1381] = { - [sym__expression] = STATE(1407), - [sym_conditional_expression] = STATE(1407), - [sym_assignment_expression] = STATE(1407), - [sym_pointer_expression] = STATE(1407), - [sym_logical_expression] = STATE(1407), - [sym_bitwise_expression] = STATE(1407), - [sym_equality_expression] = STATE(1407), - [sym_relational_expression] = STATE(1407), - [sym_shift_expression] = STATE(1407), - [sym_math_expression] = STATE(1407), - [sym_cast_expression] = STATE(1407), - [sym_sizeof_expression] = STATE(1407), - [sym_subscript_expression] = STATE(1407), - [sym_call_expression] = STATE(1407), - [sym_field_expression] = STATE(1407), - [sym_compound_literal_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_char_literal] = STATE(1407), - [sym_concatenated_string] = STATE(1407), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3863), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3865), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3867), - [sym_false] = ACTIONS(3867), - [sym_null] = ACTIONS(3867), - [sym_identifier] = ACTIONS(3867), - [sym_comment] = ACTIONS(39), - }, - [1382] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1383] = { - [sym_compound_statement] = STATE(1384), - [sym_labeled_statement] = STATE(1384), - [sym_expression_statement] = STATE(1384), - [sym_if_statement] = STATE(1384), - [sym_switch_statement] = STATE(1384), - [sym_case_statement] = STATE(1384), - [sym_while_statement] = STATE(1384), - [sym_do_statement] = STATE(1384), - [sym_for_statement] = STATE(1384), - [sym_return_statement] = STATE(1384), - [sym_break_statement] = STATE(1384), - [sym_continue_statement] = STATE(1384), - [sym_goto_statement] = STATE(1384), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_switch] = ACTIONS(1040), - [anon_sym_case] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(1050), - [sym_comment] = ACTIONS(39), - }, - [1384] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3871), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3871), - [anon_sym_LPAREN] = ACTIONS(3873), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3871), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3871), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3871), - [sym_preproc_directive] = ACTIONS(3871), - [anon_sym_SEMI] = ACTIONS(3873), - [anon_sym_typedef] = ACTIONS(3871), - [anon_sym_extern] = ACTIONS(3871), - [anon_sym_LBRACE] = ACTIONS(3873), - [anon_sym_RBRACE] = ACTIONS(3873), - [anon_sym_STAR] = ACTIONS(3873), - [anon_sym_static] = ACTIONS(3871), - [anon_sym_auto] = ACTIONS(3871), - [anon_sym_register] = ACTIONS(3871), - [anon_sym_inline] = ACTIONS(3871), - [anon_sym_const] = ACTIONS(3871), - [anon_sym_restrict] = ACTIONS(3871), - [anon_sym_volatile] = ACTIONS(3871), - [anon_sym__Atomic] = ACTIONS(3871), - [anon_sym_unsigned] = ACTIONS(3871), - [anon_sym_long] = ACTIONS(3871), - [anon_sym_short] = ACTIONS(3871), - [sym_primitive_type] = ACTIONS(3871), - [anon_sym_enum] = ACTIONS(3871), - [anon_sym_struct] = ACTIONS(3871), - [anon_sym_union] = ACTIONS(3871), - [anon_sym_if] = ACTIONS(3871), - [anon_sym_else] = ACTIONS(3871), - [anon_sym_switch] = ACTIONS(3871), - [anon_sym_case] = ACTIONS(3871), - [anon_sym_default] = ACTIONS(3871), - [anon_sym_while] = ACTIONS(3871), - [anon_sym_do] = ACTIONS(3871), - [anon_sym_for] = ACTIONS(3871), - [anon_sym_return] = ACTIONS(3871), - [anon_sym_break] = ACTIONS(3871), - [anon_sym_continue] = ACTIONS(3871), - [anon_sym_goto] = ACTIONS(3871), - [anon_sym_AMP] = ACTIONS(3873), - [anon_sym_BANG] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(3873), - [anon_sym_PLUS] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3871), - [anon_sym_DASH_DASH] = ACTIONS(3873), - [anon_sym_PLUS_PLUS] = ACTIONS(3873), - [anon_sym_sizeof] = ACTIONS(3871), - [sym_number_literal] = ACTIONS(3873), - [anon_sym_SQUOTE] = ACTIONS(3873), - [anon_sym_DQUOTE] = ACTIONS(3873), - [sym_true] = ACTIONS(3871), - [sym_false] = ACTIONS(3871), - [sym_null] = ACTIONS(3871), - [sym_identifier] = ACTIONS(3871), - [sym_comment] = ACTIONS(39), - }, - [1385] = { - [sym_compound_statement] = STATE(1409), - [sym_labeled_statement] = STATE(1409), - [sym_expression_statement] = STATE(1409), - [sym_if_statement] = STATE(1409), - [sym_switch_statement] = STATE(1409), - [sym_case_statement] = STATE(1409), - [sym_while_statement] = STATE(1409), - [sym_do_statement] = STATE(1409), - [sym_for_statement] = STATE(1409), - [sym_return_statement] = STATE(1409), - [sym_break_statement] = STATE(1409), - [sym_continue_statement] = STATE(1409), - [sym_goto_statement] = STATE(1409), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3553), - [anon_sym_switch] = ACTIONS(3555), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_default] = ACTIONS(3559), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(3563), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3565), - [sym_comment] = ACTIONS(39), - }, - [1386] = { - [sym_compound_statement] = STATE(1271), - [sym_labeled_statement] = STATE(1271), - [sym_expression_statement] = STATE(1271), - [sym_if_statement] = STATE(1271), - [sym_switch_statement] = STATE(1271), - [sym_case_statement] = STATE(1271), - [sym_while_statement] = STATE(1271), - [sym_do_statement] = STATE(1271), - [sym_for_statement] = STATE(1271), - [sym_return_statement] = STATE(1271), - [sym_break_statement] = STATE(1271), - [sym_continue_statement] = STATE(1271), - [sym_goto_statement] = STATE(1271), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3553), - [anon_sym_switch] = ACTIONS(3555), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_default] = ACTIONS(3559), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(3563), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3565), - [sym_comment] = ACTIONS(39), - }, - [1387] = { - [sym_compound_statement] = STATE(1272), - [sym_labeled_statement] = STATE(1272), - [sym_expression_statement] = STATE(1272), - [sym_if_statement] = STATE(1272), - [sym_switch_statement] = STATE(1272), - [sym_case_statement] = STATE(1272), - [sym_while_statement] = STATE(1272), - [sym_do_statement] = STATE(1272), - [sym_for_statement] = STATE(1272), - [sym_return_statement] = STATE(1272), - [sym_break_statement] = STATE(1272), - [sym_continue_statement] = STATE(1272), - [sym_goto_statement] = STATE(1272), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3553), - [anon_sym_switch] = ACTIONS(3555), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_default] = ACTIONS(3559), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(3563), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3565), - [sym_comment] = ACTIONS(39), - }, - [1388] = { - [sym__expression] = STATE(1411), - [sym_conditional_expression] = STATE(1411), - [sym_assignment_expression] = STATE(1411), - [sym_pointer_expression] = STATE(1411), - [sym_logical_expression] = STATE(1411), - [sym_bitwise_expression] = STATE(1411), - [sym_equality_expression] = STATE(1411), - [sym_relational_expression] = STATE(1411), - [sym_shift_expression] = STATE(1411), - [sym_math_expression] = STATE(1411), - [sym_cast_expression] = STATE(1411), - [sym_sizeof_expression] = STATE(1411), - [sym_subscript_expression] = STATE(1411), - [sym_call_expression] = STATE(1411), - [sym_field_expression] = STATE(1411), - [sym_compound_literal_expression] = STATE(1411), - [sym_parenthesized_expression] = STATE(1411), - [sym_char_literal] = STATE(1411), - [sym_concatenated_string] = STATE(1411), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3875), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3877), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3879), - [sym_false] = ACTIONS(3879), - [sym_null] = ACTIONS(3879), - [sym_identifier] = ACTIONS(3879), - [sym_comment] = ACTIONS(39), - }, - [1389] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3881), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1390] = { - [sym__expression] = STATE(1413), - [sym_conditional_expression] = STATE(1413), - [sym_assignment_expression] = STATE(1413), - [sym_pointer_expression] = STATE(1413), - [sym_logical_expression] = STATE(1413), - [sym_bitwise_expression] = STATE(1413), - [sym_equality_expression] = STATE(1413), - [sym_relational_expression] = STATE(1413), - [sym_shift_expression] = STATE(1413), - [sym_math_expression] = STATE(1413), - [sym_cast_expression] = STATE(1413), - [sym_sizeof_expression] = STATE(1413), - [sym_subscript_expression] = STATE(1413), - [sym_call_expression] = STATE(1413), - [sym_field_expression] = STATE(1413), - [sym_compound_literal_expression] = STATE(1413), - [sym_parenthesized_expression] = STATE(1413), - [sym_char_literal] = STATE(1413), - [sym_concatenated_string] = STATE(1413), - [sym_string_literal] = STATE(378), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(3881), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(851), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_sizeof] = ACTIONS(859), - [sym_number_literal] = ACTIONS(3883), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3885), - [sym_false] = ACTIONS(3885), - [sym_null] = ACTIONS(3885), - [sym_identifier] = ACTIONS(3885), - [sym_comment] = ACTIONS(39), - }, - [1391] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3747), - [anon_sym_LPAREN] = ACTIONS(3749), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3747), - [sym_preproc_directive] = ACTIONS(3747), - [anon_sym_SEMI] = ACTIONS(3749), - [anon_sym_typedef] = ACTIONS(3747), - [anon_sym_extern] = ACTIONS(3747), - [anon_sym_LBRACE] = ACTIONS(3749), - [anon_sym_STAR] = ACTIONS(3749), - [anon_sym_static] = ACTIONS(3747), - [anon_sym_auto] = ACTIONS(3747), - [anon_sym_register] = ACTIONS(3747), - [anon_sym_inline] = ACTIONS(3747), - [anon_sym_const] = ACTIONS(3747), - [anon_sym_restrict] = ACTIONS(3747), - [anon_sym_volatile] = ACTIONS(3747), - [anon_sym__Atomic] = ACTIONS(3747), - [anon_sym_unsigned] = ACTIONS(3747), - [anon_sym_long] = ACTIONS(3747), - [anon_sym_short] = ACTIONS(3747), - [sym_primitive_type] = ACTIONS(3747), - [anon_sym_enum] = ACTIONS(3747), - [anon_sym_struct] = ACTIONS(3747), - [anon_sym_union] = ACTIONS(3747), - [anon_sym_if] = ACTIONS(3747), - [anon_sym_else] = ACTIONS(3747), - [anon_sym_switch] = ACTIONS(3747), - [anon_sym_case] = ACTIONS(3747), - [anon_sym_default] = ACTIONS(3747), - [anon_sym_while] = ACTIONS(3747), - [anon_sym_do] = ACTIONS(3747), - [anon_sym_for] = ACTIONS(3747), - [anon_sym_return] = ACTIONS(3747), - [anon_sym_break] = ACTIONS(3747), - [anon_sym_continue] = ACTIONS(3747), - [anon_sym_goto] = ACTIONS(3747), - [anon_sym_AMP] = ACTIONS(3749), - [anon_sym_BANG] = ACTIONS(3749), - [anon_sym_TILDE] = ACTIONS(3749), - [anon_sym_PLUS] = ACTIONS(3747), - [anon_sym_DASH] = ACTIONS(3747), - [anon_sym_DASH_DASH] = ACTIONS(3749), - [anon_sym_PLUS_PLUS] = ACTIONS(3749), - [anon_sym_sizeof] = ACTIONS(3747), - [sym_number_literal] = ACTIONS(3749), - [anon_sym_SQUOTE] = ACTIONS(3749), - [anon_sym_DQUOTE] = ACTIONS(3749), - [sym_true] = ACTIONS(3747), - [sym_false] = ACTIONS(3747), - [sym_null] = ACTIONS(3747), - [sym_identifier] = ACTIONS(3747), - [sym_comment] = ACTIONS(39), - }, - [1392] = { - [sym_compound_statement] = STATE(1414), - [sym_labeled_statement] = STATE(1414), - [sym_expression_statement] = STATE(1414), - [sym_if_statement] = STATE(1414), - [sym_switch_statement] = STATE(1414), - [sym_case_statement] = STATE(1414), - [sym_while_statement] = STATE(1414), - [sym_do_statement] = STATE(1414), - [sym_for_statement] = STATE(1414), - [sym_return_statement] = STATE(1414), - [sym_break_statement] = STATE(1414), - [sym_continue_statement] = STATE(1414), - [sym_goto_statement] = STATE(1414), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3181), - [sym_comment] = ACTIONS(39), - }, - [1393] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3887), - [sym_comment] = ACTIONS(39), - }, - [1394] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3316), - [sym_preproc_directive] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_typedef] = ACTIONS(3316), - [anon_sym_extern] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_STAR] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_auto] = ACTIONS(3316), - [anon_sym_register] = ACTIONS(3316), - [anon_sym_inline] = ACTIONS(3316), - [anon_sym_const] = ACTIONS(3316), - [anon_sym_restrict] = ACTIONS(3316), - [anon_sym_volatile] = ACTIONS(3316), - [anon_sym__Atomic] = ACTIONS(3316), - [anon_sym_unsigned] = ACTIONS(3316), - [anon_sym_long] = ACTIONS(3316), - [anon_sym_short] = ACTIONS(3316), - [sym_primitive_type] = ACTIONS(3316), - [anon_sym_enum] = ACTIONS(3316), - [anon_sym_struct] = ACTIONS(3316), - [anon_sym_union] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3889), - [anon_sym_switch] = ACTIONS(3316), - [anon_sym_case] = ACTIONS(3316), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_break] = ACTIONS(3316), - [anon_sym_continue] = ACTIONS(3316), - [anon_sym_goto] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_sizeof] = ACTIONS(3316), - [sym_number_literal] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_null] = ACTIONS(3316), - [sym_identifier] = ACTIONS(3316), - [sym_comment] = ACTIONS(39), - }, - [1395] = { - [sym_compound_statement] = STATE(1287), - [sym_labeled_statement] = STATE(1287), - [sym_expression_statement] = STATE(1287), - [sym_if_statement] = STATE(1287), - [sym_switch_statement] = STATE(1287), - [sym_case_statement] = STATE(1287), - [sym_while_statement] = STATE(1287), - [sym_do_statement] = STATE(1287), - [sym_for_statement] = STATE(1287), - [sym_return_statement] = STATE(1287), - [sym_break_statement] = STATE(1287), - [sym_continue_statement] = STATE(1287), - [sym_goto_statement] = STATE(1287), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(3453), - [sym_comment] = ACTIONS(39), - }, - [1396] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1418), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3891), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1397] = { - [sym__expression] = STATE(1419), - [sym_conditional_expression] = STATE(1419), - [sym_assignment_expression] = STATE(1419), - [sym_pointer_expression] = STATE(1419), - [sym_logical_expression] = STATE(1419), - [sym_bitwise_expression] = STATE(1419), - [sym_equality_expression] = STATE(1419), - [sym_relational_expression] = STATE(1419), - [sym_shift_expression] = STATE(1419), - [sym_math_expression] = STATE(1419), - [sym_cast_expression] = STATE(1419), - [sym_sizeof_expression] = STATE(1419), - [sym_subscript_expression] = STATE(1419), - [sym_call_expression] = STATE(1419), - [sym_field_expression] = STATE(1419), - [sym_compound_literal_expression] = STATE(1419), - [sym_parenthesized_expression] = STATE(1419), - [sym_char_literal] = STATE(1419), - [sym_concatenated_string] = STATE(1419), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3891), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3893), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3895), - [sym_false] = ACTIONS(3895), - [sym_null] = ACTIONS(3895), - [sym_identifier] = ACTIONS(3895), - [sym_comment] = ACTIONS(39), - }, - [1398] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3897), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1399] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3821), - [anon_sym_LPAREN] = ACTIONS(3823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3821), - [sym_preproc_directive] = ACTIONS(3821), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_typedef] = ACTIONS(3821), - [anon_sym_extern] = ACTIONS(3821), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_static] = ACTIONS(3821), - [anon_sym_auto] = ACTIONS(3821), - [anon_sym_register] = ACTIONS(3821), - [anon_sym_inline] = ACTIONS(3821), - [anon_sym_const] = ACTIONS(3821), - [anon_sym_restrict] = ACTIONS(3821), - [anon_sym_volatile] = ACTIONS(3821), - [anon_sym__Atomic] = ACTIONS(3821), - [anon_sym_unsigned] = ACTIONS(3821), - [anon_sym_long] = ACTIONS(3821), - [anon_sym_short] = ACTIONS(3821), - [sym_primitive_type] = ACTIONS(3821), - [anon_sym_enum] = ACTIONS(3821), - [anon_sym_struct] = ACTIONS(3821), - [anon_sym_union] = ACTIONS(3821), - [anon_sym_if] = ACTIONS(3821), - [anon_sym_else] = ACTIONS(3821), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_case] = ACTIONS(3821), - [anon_sym_default] = ACTIONS(3821), - [anon_sym_while] = ACTIONS(3821), - [anon_sym_do] = ACTIONS(3821), - [anon_sym_for] = ACTIONS(3821), - [anon_sym_return] = ACTIONS(3821), - [anon_sym_break] = ACTIONS(3821), - [anon_sym_continue] = ACTIONS(3821), - [anon_sym_goto] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_TILDE] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_sizeof] = ACTIONS(3821), - [sym_number_literal] = ACTIONS(3823), - [anon_sym_SQUOTE] = ACTIONS(3823), - [anon_sym_DQUOTE] = ACTIONS(3823), - [sym_true] = ACTIONS(3821), - [sym_false] = ACTIONS(3821), - [sym_null] = ACTIONS(3821), - [sym_identifier] = ACTIONS(3821), - [sym_comment] = ACTIONS(39), - }, - [1400] = { - [sym_compound_statement] = STATE(1421), - [sym_labeled_statement] = STATE(1421), - [sym_expression_statement] = STATE(1421), - [sym_if_statement] = STATE(1421), - [sym_switch_statement] = STATE(1421), - [sym_case_statement] = STATE(1421), - [sym_while_statement] = STATE(1421), - [sym_do_statement] = STATE(1421), - [sym_for_statement] = STATE(1421), - [sym_return_statement] = STATE(1421), - [sym_break_statement] = STATE(1421), - [sym_continue_statement] = STATE(1421), - [sym_goto_statement] = STATE(1421), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(1581), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1589), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(2825), - [sym_comment] = ACTIONS(39), - }, - [1401] = { - [sym_compound_statement] = STATE(1308), - [sym_labeled_statement] = STATE(1308), - [sym_expression_statement] = STATE(1308), - [sym_if_statement] = STATE(1308), - [sym_switch_statement] = STATE(1308), - [sym_case_statement] = STATE(1308), - [sym_while_statement] = STATE(1308), - [sym_do_statement] = STATE(1308), - [sym_for_statement] = STATE(1308), - [sym_return_statement] = STATE(1308), - [sym_break_statement] = STATE(1308), - [sym_continue_statement] = STATE(1308), - [sym_goto_statement] = STATE(1308), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(2960), - [sym_comment] = ACTIONS(39), - }, - [1402] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3899), - [sym_comment] = ACTIONS(39), - }, - [1403] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1423), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1404] = { - [sym_compound_statement] = STATE(1239), - [sym_labeled_statement] = STATE(1239), - [sym_expression_statement] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_switch_statement] = STATE(1239), - [sym_case_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_do_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_return_statement] = STATE(1239), - [sym_break_statement] = STATE(1239), - [sym_continue_statement] = STATE(1239), - [sym_goto_statement] = STATE(1239), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(3352), - [sym_comment] = ACTIONS(39), - }, - [1405] = { - [sym_compound_statement] = STATE(1253), - [sym_labeled_statement] = STATE(1253), - [sym_expression_statement] = STATE(1253), - [sym_if_statement] = STATE(1253), - [sym_switch_statement] = STATE(1253), - [sym_case_statement] = STATE(1253), - [sym_while_statement] = STATE(1253), - [sym_do_statement] = STATE(1253), - [sym_for_statement] = STATE(1253), - [sym_return_statement] = STATE(1253), - [sym_break_statement] = STATE(1253), - [sym_continue_statement] = STATE(1253), - [sym_goto_statement] = STATE(1253), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(3352), - [sym_comment] = ACTIONS(39), - }, - [1406] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3901), - [sym_comment] = ACTIONS(39), - }, - [1407] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1425), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3901), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1408] = { - [sym__expression] = STATE(1426), - [sym_conditional_expression] = STATE(1426), - [sym_assignment_expression] = STATE(1426), - [sym_pointer_expression] = STATE(1426), - [sym_logical_expression] = STATE(1426), - [sym_bitwise_expression] = STATE(1426), - [sym_equality_expression] = STATE(1426), - [sym_relational_expression] = STATE(1426), - [sym_shift_expression] = STATE(1426), - [sym_math_expression] = STATE(1426), - [sym_cast_expression] = STATE(1426), - [sym_sizeof_expression] = STATE(1426), - [sym_subscript_expression] = STATE(1426), - [sym_call_expression] = STATE(1426), - [sym_field_expression] = STATE(1426), - [sym_compound_literal_expression] = STATE(1426), - [sym_parenthesized_expression] = STATE(1426), - [sym_char_literal] = STATE(1426), - [sym_concatenated_string] = STATE(1426), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3901), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3903), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_identifier] = ACTIONS(3905), - [sym_comment] = ACTIONS(39), - }, - [1409] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3318), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3316), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3316), - [sym_preproc_directive] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_typedef] = ACTIONS(3316), - [anon_sym_extern] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_STAR] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_auto] = ACTIONS(3316), - [anon_sym_register] = ACTIONS(3316), - [anon_sym_inline] = ACTIONS(3316), - [anon_sym_const] = ACTIONS(3316), - [anon_sym_restrict] = ACTIONS(3316), - [anon_sym_volatile] = ACTIONS(3316), - [anon_sym__Atomic] = ACTIONS(3316), - [anon_sym_unsigned] = ACTIONS(3316), - [anon_sym_long] = ACTIONS(3316), - [anon_sym_short] = ACTIONS(3316), - [sym_primitive_type] = ACTIONS(3316), - [anon_sym_enum] = ACTIONS(3316), - [anon_sym_struct] = ACTIONS(3316), - [anon_sym_union] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3907), - [anon_sym_switch] = ACTIONS(3316), - [anon_sym_case] = ACTIONS(3316), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_break] = ACTIONS(3316), - [anon_sym_continue] = ACTIONS(3316), - [anon_sym_goto] = ACTIONS(3316), - [anon_sym_AMP] = ACTIONS(3318), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_sizeof] = ACTIONS(3316), - [sym_number_literal] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_null] = ACTIONS(3316), - [sym_identifier] = ACTIONS(3316), - [sym_comment] = ACTIONS(39), - }, - [1410] = { - [sym_compound_statement] = STATE(1320), - [sym_labeled_statement] = STATE(1320), - [sym_expression_statement] = STATE(1320), - [sym_if_statement] = STATE(1320), - [sym_switch_statement] = STATE(1320), - [sym_case_statement] = STATE(1320), - [sym_while_statement] = STATE(1320), - [sym_do_statement] = STATE(1320), - [sym_for_statement] = STATE(1320), - [sym_return_statement] = STATE(1320), - [sym_break_statement] = STATE(1320), - [sym_continue_statement] = STATE(1320), - [sym_goto_statement] = STATE(1320), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3553), - [anon_sym_switch] = ACTIONS(3555), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_default] = ACTIONS(3559), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(3563), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3565), - [sym_comment] = ACTIONS(39), - }, - [1411] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1429), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1412] = { - [sym__expression] = STATE(1430), - [sym_conditional_expression] = STATE(1430), - [sym_assignment_expression] = STATE(1430), - [sym_pointer_expression] = STATE(1430), - [sym_logical_expression] = STATE(1430), - [sym_bitwise_expression] = STATE(1430), - [sym_equality_expression] = STATE(1430), - [sym_relational_expression] = STATE(1430), - [sym_shift_expression] = STATE(1430), - [sym_math_expression] = STATE(1430), - [sym_cast_expression] = STATE(1430), - [sym_sizeof_expression] = STATE(1430), - [sym_subscript_expression] = STATE(1430), - [sym_call_expression] = STATE(1430), - [sym_field_expression] = STATE(1430), - [sym_compound_literal_expression] = STATE(1430), - [sym_parenthesized_expression] = STATE(1430), - [sym_char_literal] = STATE(1430), - [sym_concatenated_string] = STATE(1430), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3911), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3913), - [sym_false] = ACTIONS(3913), - [sym_null] = ACTIONS(3913), - [sym_identifier] = ACTIONS(3913), - [sym_comment] = ACTIONS(39), - }, - [1413] = { - [sym_argument_list] = STATE(475), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_SEMI] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1414] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3821), - [anon_sym_LPAREN] = ACTIONS(3823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3821), - [sym_preproc_directive] = ACTIONS(3821), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_typedef] = ACTIONS(3821), - [anon_sym_extern] = ACTIONS(3821), - [anon_sym_LBRACE] = ACTIONS(3823), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_static] = ACTIONS(3821), - [anon_sym_auto] = ACTIONS(3821), - [anon_sym_register] = ACTIONS(3821), - [anon_sym_inline] = ACTIONS(3821), - [anon_sym_const] = ACTIONS(3821), - [anon_sym_restrict] = ACTIONS(3821), - [anon_sym_volatile] = ACTIONS(3821), - [anon_sym__Atomic] = ACTIONS(3821), - [anon_sym_unsigned] = ACTIONS(3821), - [anon_sym_long] = ACTIONS(3821), - [anon_sym_short] = ACTIONS(3821), - [sym_primitive_type] = ACTIONS(3821), - [anon_sym_enum] = ACTIONS(3821), - [anon_sym_struct] = ACTIONS(3821), - [anon_sym_union] = ACTIONS(3821), - [anon_sym_if] = ACTIONS(3821), - [anon_sym_else] = ACTIONS(3821), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_case] = ACTIONS(3821), - [anon_sym_default] = ACTIONS(3821), - [anon_sym_while] = ACTIONS(3821), - [anon_sym_do] = ACTIONS(3821), - [anon_sym_for] = ACTIONS(3821), - [anon_sym_return] = ACTIONS(3821), - [anon_sym_break] = ACTIONS(3821), - [anon_sym_continue] = ACTIONS(3821), - [anon_sym_goto] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_TILDE] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_sizeof] = ACTIONS(3821), - [sym_number_literal] = ACTIONS(3823), - [anon_sym_SQUOTE] = ACTIONS(3823), - [anon_sym_DQUOTE] = ACTIONS(3823), - [sym_true] = ACTIONS(3821), - [sym_false] = ACTIONS(3821), - [sym_null] = ACTIONS(3821), - [sym_identifier] = ACTIONS(3821), - [sym_comment] = ACTIONS(39), - }, - [1415] = { - [sym_compound_statement] = STATE(1432), - [sym_labeled_statement] = STATE(1432), - [sym_expression_statement] = STATE(1432), - [sym_if_statement] = STATE(1432), - [sym_switch_statement] = STATE(1432), - [sym_case_statement] = STATE(1432), - [sym_while_statement] = STATE(1432), - [sym_do_statement] = STATE(1432), - [sym_for_statement] = STATE(1432), - [sym_return_statement] = STATE(1432), - [sym_break_statement] = STATE(1432), - [sym_continue_statement] = STATE(1432), - [sym_goto_statement] = STATE(1432), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2360), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3181), - [sym_comment] = ACTIONS(39), - }, - [1416] = { - [sym_compound_statement] = STATE(1332), - [sym_labeled_statement] = STATE(1332), - [sym_expression_statement] = STATE(1332), - [sym_if_statement] = STATE(1332), - [sym_switch_statement] = STATE(1332), - [sym_case_statement] = STATE(1332), - [sym_while_statement] = STATE(1332), - [sym_do_statement] = STATE(1332), - [sym_for_statement] = STATE(1332), - [sym_return_statement] = STATE(1332), - [sym_break_statement] = STATE(1332), - [sym_continue_statement] = STATE(1332), - [sym_goto_statement] = STATE(1332), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(3453), - [sym_comment] = ACTIONS(39), - }, - [1417] = { - [sym_compound_statement] = STATE(1333), - [sym_labeled_statement] = STATE(1333), - [sym_expression_statement] = STATE(1333), - [sym_if_statement] = STATE(1333), - [sym_switch_statement] = STATE(1333), - [sym_case_statement] = STATE(1333), - [sym_while_statement] = STATE(1333), - [sym_do_statement] = STATE(1333), - [sym_for_statement] = STATE(1333), - [sym_return_statement] = STATE(1333), - [sym_break_statement] = STATE(1333), - [sym_continue_statement] = STATE(1333), - [sym_goto_statement] = STATE(1333), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(3453), - [sym_comment] = ACTIONS(39), - }, - [1418] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3917), - [sym_comment] = ACTIONS(39), - }, - [1419] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1434), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3917), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1420] = { - [sym__expression] = STATE(1435), - [sym_conditional_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_pointer_expression] = STATE(1435), - [sym_logical_expression] = STATE(1435), - [sym_bitwise_expression] = STATE(1435), - [sym_equality_expression] = STATE(1435), - [sym_relational_expression] = STATE(1435), - [sym_shift_expression] = STATE(1435), - [sym_math_expression] = STATE(1435), - [sym_cast_expression] = STATE(1435), - [sym_sizeof_expression] = STATE(1435), - [sym_subscript_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_field_expression] = STATE(1435), - [sym_compound_literal_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_char_literal] = STATE(1435), - [sym_concatenated_string] = STATE(1435), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3917), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3919), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3921), - [sym_false] = ACTIONS(3921), - [sym_null] = ACTIONS(3921), - [sym_identifier] = ACTIONS(3921), - [sym_comment] = ACTIONS(39), - }, - [1421] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3871), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3871), - [anon_sym_LPAREN] = ACTIONS(3873), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3871), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3871), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3871), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3871), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3871), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3871), - [sym_preproc_directive] = ACTIONS(3871), - [anon_sym_SEMI] = ACTIONS(3873), - [anon_sym_typedef] = ACTIONS(3871), - [anon_sym_extern] = ACTIONS(3871), - [anon_sym_LBRACE] = ACTIONS(3873), - [anon_sym_STAR] = ACTIONS(3873), - [anon_sym_static] = ACTIONS(3871), - [anon_sym_auto] = ACTIONS(3871), - [anon_sym_register] = ACTIONS(3871), - [anon_sym_inline] = ACTIONS(3871), - [anon_sym_const] = ACTIONS(3871), - [anon_sym_restrict] = ACTIONS(3871), - [anon_sym_volatile] = ACTIONS(3871), - [anon_sym__Atomic] = ACTIONS(3871), - [anon_sym_unsigned] = ACTIONS(3871), - [anon_sym_long] = ACTIONS(3871), - [anon_sym_short] = ACTIONS(3871), - [sym_primitive_type] = ACTIONS(3871), - [anon_sym_enum] = ACTIONS(3871), - [anon_sym_struct] = ACTIONS(3871), - [anon_sym_union] = ACTIONS(3871), - [anon_sym_if] = ACTIONS(3871), - [anon_sym_else] = ACTIONS(3871), - [anon_sym_switch] = ACTIONS(3871), - [anon_sym_case] = ACTIONS(3871), - [anon_sym_default] = ACTIONS(3871), - [anon_sym_while] = ACTIONS(3871), - [anon_sym_do] = ACTIONS(3871), - [anon_sym_for] = ACTIONS(3871), - [anon_sym_return] = ACTIONS(3871), - [anon_sym_break] = ACTIONS(3871), - [anon_sym_continue] = ACTIONS(3871), - [anon_sym_goto] = ACTIONS(3871), - [anon_sym_AMP] = ACTIONS(3873), - [anon_sym_BANG] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(3873), - [anon_sym_PLUS] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3871), - [anon_sym_DASH_DASH] = ACTIONS(3873), - [anon_sym_PLUS_PLUS] = ACTIONS(3873), - [anon_sym_sizeof] = ACTIONS(3871), - [sym_number_literal] = ACTIONS(3873), - [anon_sym_SQUOTE] = ACTIONS(3873), - [anon_sym_DQUOTE] = ACTIONS(3873), - [sym_true] = ACTIONS(3871), - [sym_false] = ACTIONS(3871), - [sym_null] = ACTIONS(3871), - [sym_identifier] = ACTIONS(3871), - [sym_comment] = ACTIONS(39), - }, - [1422] = { - [sym_compound_statement] = STATE(1350), - [sym_labeled_statement] = STATE(1350), - [sym_expression_statement] = STATE(1350), - [sym_if_statement] = STATE(1350), - [sym_switch_statement] = STATE(1350), - [sym_case_statement] = STATE(1350), - [sym_while_statement] = STATE(1350), - [sym_do_statement] = STATE(1350), - [sym_for_statement] = STATE(1350), - [sym_return_statement] = STATE(1350), - [sym_break_statement] = STATE(1350), - [sym_continue_statement] = STATE(1350), - [sym_goto_statement] = STATE(1350), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(2960), - [sym_comment] = ACTIONS(39), - }, - [1423] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3923), - [sym_comment] = ACTIONS(39), - }, - [1424] = { - [sym_compound_statement] = STATE(1308), - [sym_labeled_statement] = STATE(1308), - [sym_expression_statement] = STATE(1308), - [sym_if_statement] = STATE(1308), - [sym_switch_statement] = STATE(1308), - [sym_case_statement] = STATE(1308), - [sym_while_statement] = STATE(1308), - [sym_do_statement] = STATE(1308), - [sym_for_statement] = STATE(1308), - [sym_return_statement] = STATE(1308), - [sym_break_statement] = STATE(1308), - [sym_continue_statement] = STATE(1308), - [sym_goto_statement] = STATE(1308), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(3352), - [sym_comment] = ACTIONS(39), - }, - [1425] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3925), - [sym_comment] = ACTIONS(39), - }, - [1426] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1438), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3925), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1427] = { - [sym_compound_statement] = STATE(1359), - [sym_labeled_statement] = STATE(1359), - [sym_expression_statement] = STATE(1359), - [sym_if_statement] = STATE(1359), - [sym_switch_statement] = STATE(1359), - [sym_case_statement] = STATE(1359), - [sym_while_statement] = STATE(1359), - [sym_do_statement] = STATE(1359), - [sym_for_statement] = STATE(1359), - [sym_return_statement] = STATE(1359), - [sym_break_statement] = STATE(1359), - [sym_continue_statement] = STATE(1359), - [sym_goto_statement] = STATE(1359), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3553), - [anon_sym_switch] = ACTIONS(3555), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_default] = ACTIONS(3559), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(3563), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3565), - [sym_comment] = ACTIONS(39), - }, - [1428] = { - [sym_compound_statement] = STATE(1360), - [sym_labeled_statement] = STATE(1360), - [sym_expression_statement] = STATE(1360), - [sym_if_statement] = STATE(1360), - [sym_switch_statement] = STATE(1360), - [sym_case_statement] = STATE(1360), - [sym_while_statement] = STATE(1360), - [sym_do_statement] = STATE(1360), - [sym_for_statement] = STATE(1360), - [sym_return_statement] = STATE(1360), - [sym_break_statement] = STATE(1360), - [sym_continue_statement] = STATE(1360), - [sym_goto_statement] = STATE(1360), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3553), - [anon_sym_switch] = ACTIONS(3555), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_default] = ACTIONS(3559), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(3563), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3565), - [sym_comment] = ACTIONS(39), - }, - [1429] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3927), - [sym_comment] = ACTIONS(39), - }, - [1430] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1440), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3927), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1431] = { - [sym__expression] = STATE(1441), - [sym_conditional_expression] = STATE(1441), - [sym_assignment_expression] = STATE(1441), - [sym_pointer_expression] = STATE(1441), - [sym_logical_expression] = STATE(1441), - [sym_bitwise_expression] = STATE(1441), - [sym_equality_expression] = STATE(1441), - [sym_relational_expression] = STATE(1441), - [sym_shift_expression] = STATE(1441), - [sym_math_expression] = STATE(1441), - [sym_cast_expression] = STATE(1441), - [sym_sizeof_expression] = STATE(1441), - [sym_subscript_expression] = STATE(1441), - [sym_call_expression] = STATE(1441), - [sym_field_expression] = STATE(1441), - [sym_compound_literal_expression] = STATE(1441), - [sym_parenthesized_expression] = STATE(1441), - [sym_char_literal] = STATE(1441), - [sym_concatenated_string] = STATE(1441), - [sym_string_literal] = STATE(418), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(3927), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3929), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(3931), - [sym_false] = ACTIONS(3931), - [sym_null] = ACTIONS(3931), - [sym_identifier] = ACTIONS(3931), - [sym_comment] = ACTIONS(39), - }, - [1432] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3871), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3871), - [anon_sym_LPAREN] = ACTIONS(3873), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3871), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3871), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3871), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3871), - [sym_preproc_directive] = ACTIONS(3871), - [anon_sym_SEMI] = ACTIONS(3873), - [anon_sym_typedef] = ACTIONS(3871), - [anon_sym_extern] = ACTIONS(3871), - [anon_sym_LBRACE] = ACTIONS(3873), - [anon_sym_STAR] = ACTIONS(3873), - [anon_sym_static] = ACTIONS(3871), - [anon_sym_auto] = ACTIONS(3871), - [anon_sym_register] = ACTIONS(3871), - [anon_sym_inline] = ACTIONS(3871), - [anon_sym_const] = ACTIONS(3871), - [anon_sym_restrict] = ACTIONS(3871), - [anon_sym_volatile] = ACTIONS(3871), - [anon_sym__Atomic] = ACTIONS(3871), - [anon_sym_unsigned] = ACTIONS(3871), - [anon_sym_long] = ACTIONS(3871), - [anon_sym_short] = ACTIONS(3871), - [sym_primitive_type] = ACTIONS(3871), - [anon_sym_enum] = ACTIONS(3871), - [anon_sym_struct] = ACTIONS(3871), - [anon_sym_union] = ACTIONS(3871), - [anon_sym_if] = ACTIONS(3871), - [anon_sym_else] = ACTIONS(3871), - [anon_sym_switch] = ACTIONS(3871), - [anon_sym_case] = ACTIONS(3871), - [anon_sym_default] = ACTIONS(3871), - [anon_sym_while] = ACTIONS(3871), - [anon_sym_do] = ACTIONS(3871), - [anon_sym_for] = ACTIONS(3871), - [anon_sym_return] = ACTIONS(3871), - [anon_sym_break] = ACTIONS(3871), - [anon_sym_continue] = ACTIONS(3871), - [anon_sym_goto] = ACTIONS(3871), - [anon_sym_AMP] = ACTIONS(3873), - [anon_sym_BANG] = ACTIONS(3873), - [anon_sym_TILDE] = ACTIONS(3873), - [anon_sym_PLUS] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3871), - [anon_sym_DASH_DASH] = ACTIONS(3873), - [anon_sym_PLUS_PLUS] = ACTIONS(3873), - [anon_sym_sizeof] = ACTIONS(3871), - [sym_number_literal] = ACTIONS(3873), - [anon_sym_SQUOTE] = ACTIONS(3873), - [anon_sym_DQUOTE] = ACTIONS(3873), - [sym_true] = ACTIONS(3871), - [sym_false] = ACTIONS(3871), - [sym_null] = ACTIONS(3871), - [sym_identifier] = ACTIONS(3871), - [sym_comment] = ACTIONS(39), - }, - [1433] = { - [sym_compound_statement] = STATE(1370), - [sym_labeled_statement] = STATE(1370), - [sym_expression_statement] = STATE(1370), - [sym_if_statement] = STATE(1370), - [sym_switch_statement] = STATE(1370), - [sym_case_statement] = STATE(1370), - [sym_while_statement] = STATE(1370), - [sym_do_statement] = STATE(1370), - [sym_for_statement] = STATE(1370), - [sym_return_statement] = STATE(1370), - [sym_break_statement] = STATE(1370), - [sym_continue_statement] = STATE(1370), - [sym_goto_statement] = STATE(1370), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(3453), - [sym_comment] = ACTIONS(39), - }, - [1434] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3933), - [sym_comment] = ACTIONS(39), - }, - [1435] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1443), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3933), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1436] = { - [sym_compound_statement] = STATE(1384), - [sym_labeled_statement] = STATE(1384), - [sym_expression_statement] = STATE(1384), - [sym_if_statement] = STATE(1384), - [sym_switch_statement] = STATE(1384), - [sym_case_statement] = STATE(1384), - [sym_while_statement] = STATE(1384), - [sym_do_statement] = STATE(1384), - [sym_for_statement] = STATE(1384), - [sym_return_statement] = STATE(1384), - [sym_break_statement] = STATE(1384), - [sym_continue_statement] = STATE(1384), - [sym_goto_statement] = STATE(1384), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2954), - [anon_sym_while] = ACTIONS(2956), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(2960), - [sym_comment] = ACTIONS(39), - }, - [1437] = { - [sym_compound_statement] = STATE(1350), - [sym_labeled_statement] = STATE(1350), - [sym_expression_statement] = STATE(1350), - [sym_if_statement] = STATE(1350), - [sym_switch_statement] = STATE(1350), - [sym_case_statement] = STATE(1350), - [sym_while_statement] = STATE(1350), - [sym_do_statement] = STATE(1350), - [sym_for_statement] = STATE(1350), - [sym_return_statement] = STATE(1350), - [sym_break_statement] = STATE(1350), - [sym_continue_statement] = STATE(1350), - [sym_goto_statement] = STATE(1350), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(3352), - [sym_comment] = ACTIONS(39), - }, - [1438] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3935), - [sym_comment] = ACTIONS(39), - }, - [1439] = { - [sym_compound_statement] = STATE(1391), - [sym_labeled_statement] = STATE(1391), - [sym_expression_statement] = STATE(1391), - [sym_if_statement] = STATE(1391), - [sym_switch_statement] = STATE(1391), - [sym_case_statement] = STATE(1391), - [sym_while_statement] = STATE(1391), - [sym_do_statement] = STATE(1391), - [sym_for_statement] = STATE(1391), - [sym_return_statement] = STATE(1391), - [sym_break_statement] = STATE(1391), - [sym_continue_statement] = STATE(1391), - [sym_goto_statement] = STATE(1391), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3553), - [anon_sym_switch] = ACTIONS(3555), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_default] = ACTIONS(3559), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(3563), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3565), - [sym_comment] = ACTIONS(39), - }, - [1440] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3937), - [sym_comment] = ACTIONS(39), - }, - [1441] = { - [sym_argument_list] = STATE(475), - [aux_sym_for_statement_repeat1] = STATE(1446), - [anon_sym_LPAREN] = ACTIONS(1112), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3937), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1539), - [anon_sym_QMARK] = ACTIONS(1541), - [anon_sym_STAR_EQ] = ACTIONS(1543), - [anon_sym_SLASH_EQ] = ACTIONS(1543), - [anon_sym_PERCENT_EQ] = ACTIONS(1543), - [anon_sym_PLUS_EQ] = ACTIONS(1543), - [anon_sym_DASH_EQ] = ACTIONS(1543), - [anon_sym_LT_LT_EQ] = ACTIONS(1543), - [anon_sym_GT_GT_EQ] = ACTIONS(1543), - [anon_sym_AMP_EQ] = ACTIONS(1543), - [anon_sym_CARET_EQ] = ACTIONS(1543), - [anon_sym_PIPE_EQ] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_PIPE_PIPE] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [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(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1148), - [anon_sym_PLUS_PLUS] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1150), - [anon_sym_DASH_GT] = ACTIONS(1150), - [sym_comment] = ACTIONS(39), - }, - [1442] = { - [sym_compound_statement] = STATE(1399), - [sym_labeled_statement] = STATE(1399), - [sym_expression_statement] = STATE(1399), - [sym_if_statement] = STATE(1399), - [sym_switch_statement] = STATE(1399), - [sym_case_statement] = STATE(1399), - [sym_while_statement] = STATE(1399), - [sym_do_statement] = STATE(1399), - [sym_for_statement] = STATE(1399), - [sym_return_statement] = STATE(1399), - [sym_break_statement] = STATE(1399), - [sym_continue_statement] = STATE(1399), - [sym_goto_statement] = STATE(1399), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(3453), - [sym_comment] = ACTIONS(39), - }, - [1443] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3939), - [sym_comment] = ACTIONS(39), - }, - [1444] = { - [sym_compound_statement] = STATE(1384), - [sym_labeled_statement] = STATE(1384), - [sym_expression_statement] = STATE(1384), - [sym_if_statement] = STATE(1384), - [sym_switch_statement] = STATE(1384), - [sym_case_statement] = STATE(1384), - [sym_while_statement] = STATE(1384), - [sym_do_statement] = STATE(1384), - [sym_for_statement] = STATE(1384), - [sym_return_statement] = STATE(1384), - [sym_break_statement] = STATE(1384), - [sym_continue_statement] = STATE(1384), - [sym_goto_statement] = STATE(1384), - [sym__expression] = STATE(258), - [sym_comma_expression] = STATE(259), - [sym_conditional_expression] = STATE(258), - [sym_assignment_expression] = STATE(258), - [sym_pointer_expression] = STATE(258), - [sym_logical_expression] = STATE(258), - [sym_bitwise_expression] = STATE(258), - [sym_equality_expression] = STATE(258), - [sym_relational_expression] = STATE(258), - [sym_shift_expression] = STATE(258), - [sym_math_expression] = STATE(258), - [sym_cast_expression] = STATE(258), - [sym_sizeof_expression] = STATE(258), - [sym_subscript_expression] = STATE(258), - [sym_call_expression] = STATE(258), - [sym_field_expression] = STATE(258), - [sym_compound_literal_expression] = STATE(258), - [sym_parenthesized_expression] = STATE(258), - [sym_char_literal] = STATE(258), - [sym_concatenated_string] = STATE(258), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(574), - [anon_sym_for] = ACTIONS(3350), - [anon_sym_return] = ACTIONS(578), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_goto] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(596), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_identifier] = ACTIONS(3352), - [sym_comment] = ACTIONS(39), - }, - [1445] = { - [sym_compound_statement] = STATE(1414), - [sym_labeled_statement] = STATE(1414), - [sym_expression_statement] = STATE(1414), - [sym_if_statement] = STATE(1414), - [sym_switch_statement] = STATE(1414), - [sym_case_statement] = STATE(1414), - [sym_while_statement] = STATE(1414), - [sym_do_statement] = STATE(1414), - [sym_for_statement] = STATE(1414), - [sym_return_statement] = STATE(1414), - [sym_break_statement] = STATE(1414), - [sym_continue_statement] = STATE(1414), - [sym_goto_statement] = STATE(1414), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3553), - [anon_sym_switch] = ACTIONS(3555), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_default] = ACTIONS(3559), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(3563), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3565), - [sym_comment] = ACTIONS(39), - }, - [1446] = { - [aux_sym_for_statement_repeat1] = STATE(1100), - [anon_sym_COMMA] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(3941), - [sym_comment] = ACTIONS(39), - }, - [1447] = { - [sym_compound_statement] = STATE(1421), - [sym_labeled_statement] = STATE(1421), - [sym_expression_statement] = STATE(1421), - [sym_if_statement] = STATE(1421), - [sym_switch_statement] = STATE(1421), - [sym_case_statement] = STATE(1421), - [sym_while_statement] = STATE(1421), - [sym_do_statement] = STATE(1421), - [sym_for_statement] = STATE(1421), - [sym_return_statement] = STATE(1421), - [sym_break_statement] = STATE(1421), - [sym_continue_statement] = STATE(1421), - [sym_goto_statement] = STATE(1421), - [sym__expression] = STATE(677), - [sym_comma_expression] = STATE(678), - [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(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_identifier] = ACTIONS(3453), - [sym_comment] = ACTIONS(39), - }, - [1448] = { - [sym_compound_statement] = STATE(1432), - [sym_labeled_statement] = STATE(1432), - [sym_expression_statement] = STATE(1432), - [sym_if_statement] = STATE(1432), - [sym_switch_statement] = STATE(1432), - [sym_case_statement] = STATE(1432), - [sym_while_statement] = STATE(1432), - [sym_do_statement] = STATE(1432), - [sym_for_statement] = STATE(1432), - [sym_return_statement] = STATE(1432), - [sym_break_statement] = STATE(1432), - [sym_continue_statement] = STATE(1432), - [sym_goto_statement] = STATE(1432), - [sym__expression] = STATE(891), - [sym_comma_expression] = STATE(892), - [sym_conditional_expression] = STATE(891), - [sym_assignment_expression] = STATE(891), - [sym_pointer_expression] = STATE(891), - [sym_logical_expression] = STATE(891), - [sym_bitwise_expression] = STATE(891), - [sym_equality_expression] = STATE(891), - [sym_relational_expression] = STATE(891), - [sym_shift_expression] = STATE(891), - [sym_math_expression] = STATE(891), - [sym_cast_expression] = STATE(891), - [sym_sizeof_expression] = STATE(891), - [sym_subscript_expression] = STATE(891), - [sym_call_expression] = STATE(891), - [sym_field_expression] = STATE(891), - [sym_compound_literal_expression] = STATE(891), - [sym_parenthesized_expression] = STATE(891), - [sym_char_literal] = STATE(891), - [sym_concatenated_string] = STATE(891), - [sym_string_literal] = STATE(260), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_if] = ACTIONS(3553), - [anon_sym_switch] = ACTIONS(3555), - [anon_sym_case] = ACTIONS(3557), - [anon_sym_default] = ACTIONS(3559), - [anon_sym_while] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(2364), - [anon_sym_for] = ACTIONS(3563), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_TILDE] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(592), - [anon_sym_sizeof] = ACTIONS(594), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(598), + [sym_compound_statement] = STATE(1362), + [sym_labeled_statement] = STATE(1362), + [sym_expression_statement] = STATE(1362), + [sym_if_statement] = STATE(1362), + [sym_switch_statement] = STATE(1362), + [sym_case_statement] = STATE(1362), + [sym_while_statement] = STATE(1362), + [sym_do_statement] = STATE(1362), + [sym_for_statement] = STATE(1362), + [sym_return_statement] = STATE(1362), + [sym_break_statement] = STATE(1362), + [sym_continue_statement] = STATE(1362), + [sym_goto_statement] = STATE(1362), + [sym__expression] = STATE(872), + [sym_comma_expression] = STATE(873), + [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(253), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(554), + [anon_sym_STAR] = ACTIONS(556), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3057), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_goto] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_sizeof] = ACTIONS(588), + [sym_number_literal] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(592), [anon_sym_DQUOTE] = ACTIONS(41), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_identifier] = ACTIONS(3565), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3065), [sym_comment] = ACTIONS(39), }, }; @@ -59048,9 +55785,9 @@ static TSParseActionEntry ts_parse_actions[] = { [75] = {.count = 1, .reusable = true}, SHIFT(37), [77] = {.count = 1, .reusable = true}, SHIFT(38), [79] = {.count = 1, .reusable = true}, SHIFT(40), - [81] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(42), - [84] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [86] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [81] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [83] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [85] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(42), [88] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), [90] = {.count = 1, .reusable = true}, SHIFT(43), [92] = {.count = 1, .reusable = true}, SHIFT(44), @@ -59071,7 +55808,7 @@ static TSParseActionEntry ts_parse_actions[] = { [123] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2, .alias_sequence_id = 2), [125] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2, .alias_sequence_id = 2), [127] = {.count = 1, .reusable = false}, SHIFT(57), - [129] = {.count = 1, .reusable = false}, SHIFT(58), + [129] = {.count = 1, .reusable = true}, SHIFT(58), [131] = {.count = 1, .reusable = false}, SHIFT(59), [133] = {.count = 1, .reusable = false}, SHIFT(61), [135] = {.count = 1, .reusable = false}, SHIFT(62), @@ -59086,9 +55823,9 @@ static TSParseActionEntry ts_parse_actions[] = { [153] = {.count = 1, .reusable = false}, SHIFT(71), [155] = {.count = 1, .reusable = false}, SHIFT(75), [157] = {.count = 1, .reusable = false}, SHIFT(78), - [159] = {.count = 1, .reusable = false}, SHIFT(81), - [161] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), - [163] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), + [159] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), + [161] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), + [163] = {.count = 1, .reusable = true}, SHIFT(81), [165] = {.count = 1, .reusable = true}, SHIFT(82), [167] = {.count = 1, .reusable = true}, SHIFT(83), [169] = {.count = 1, .reusable = true}, SHIFT(84), @@ -59120,10 +55857,10 @@ static TSParseActionEntry ts_parse_actions[] = { [221] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2), [223] = {.count = 1, .reusable = false}, SHIFT(119), [225] = {.count = 1, .reusable = false}, SHIFT(116), - [227] = {.count = 1, .reusable = true}, SHIFT(120), - [229] = {.count = 1, .reusable = true}, SHIFT(121), - [231] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), - [233] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), + [227] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), + [229] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), + [231] = {.count = 1, .reusable = true}, SHIFT(120), + [233] = {.count = 1, .reusable = true}, SHIFT(121), [235] = {.count = 1, .reusable = false}, SHIFT(122), [237] = {.count = 1, .reusable = true}, SHIFT(124), [239] = {.count = 1, .reusable = true}, SHIFT(125), @@ -59165,9 +55902,9 @@ static TSParseActionEntry ts_parse_actions[] = { [330] = {.count = 1, .reusable = false}, SHIFT(135), [332] = {.count = 1, .reusable = true}, SHIFT(136), [334] = {.count = 1, .reusable = false}, SHIFT(136), - [336] = {.count = 1, .reusable = false}, SHIFT(137), - [338] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3, .alias_sequence_id = 4), - [340] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3, .alias_sequence_id = 4), + [336] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3, .alias_sequence_id = 4), + [338] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3, .alias_sequence_id = 4), + [340] = {.count = 1, .reusable = true}, SHIFT(137), [342] = {.count = 1, .reusable = true}, SHIFT(138), [344] = {.count = 1, .reusable = true}, SHIFT(139), [346] = {.count = 1, .reusable = false}, SHIFT(140), @@ -59205,229 +55942,229 @@ static TSParseActionEntry ts_parse_actions[] = { [410] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3, .alias_sequence_id = 8), [412] = {.count = 1, .reusable = true}, SHIFT(172), [414] = {.count = 1, .reusable = false}, SHIFT(172), - [416] = {.count = 1, .reusable = true}, SHIFT(174), - [418] = {.count = 1, .reusable = true}, SHIFT(175), - [420] = {.count = 1, .reusable = false}, SHIFT(84), - [422] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 1), - [424] = {.count = 1, .reusable = true}, SHIFT(179), - [426] = {.count = 1, .reusable = true}, SHIFT(180), - [428] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 9), - [430] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 10), - [432] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 11), - [434] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(11), - [437] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), - [439] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(91), - [442] = {.count = 1, .reusable = true}, SHIFT(183), - [444] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), - [446] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), - [448] = {.count = 1, .reusable = false}, SHIFT(186), - [450] = {.count = 1, .reusable = false}, SHIFT(187), - [452] = {.count = 1, .reusable = true}, SHIFT(188), - [454] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), - [456] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), - [458] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), - [460] = {.count = 1, .reusable = true}, SHIFT(189), - [462] = {.count = 1, .reusable = true}, SHIFT(190), - [464] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 3), - [466] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 3), - [468] = {.count = 1, .reusable = false}, SHIFT(192), - [470] = {.count = 1, .reusable = true}, SHIFT(193), - [472] = {.count = 1, .reusable = true}, SHIFT(194), - [474] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), - [476] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), - [478] = {.count = 1, .reusable = false}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 12), - [480] = {.count = 1, .reusable = true}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 12), - [482] = {.count = 1, .reusable = false}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 13), - [484] = {.count = 1, .reusable = true}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 13), - [486] = {.count = 1, .reusable = true}, SHIFT(195), - [488] = {.count = 1, .reusable = true}, SHIFT(196), - [490] = {.count = 1, .reusable = true}, SHIFT(197), - [492] = {.count = 1, .reusable = true}, SHIFT(198), - [494] = {.count = 1, .reusable = true}, SHIFT(199), - [496] = {.count = 1, .reusable = true}, SHIFT(205), - [498] = {.count = 1, .reusable = false}, SHIFT(207), - [500] = {.count = 1, .reusable = false}, SHIFT(208), - [502] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 3), - [504] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 3), - [506] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 3), - [508] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 3), - [510] = {.count = 1, .reusable = true}, SHIFT(209), + [416] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3), + [418] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3), + [420] = {.count = 1, .reusable = true}, SHIFT(174), + [422] = {.count = 1, .reusable = false}, SHIFT(84), + [424] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 1), + [426] = {.count = 1, .reusable = true}, SHIFT(178), + [428] = {.count = 1, .reusable = true}, SHIFT(179), + [430] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 9), + [432] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 10), + [434] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 11), + [436] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(11), + [439] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), + [441] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(91), + [444] = {.count = 1, .reusable = true}, SHIFT(182), + [446] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), + [448] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), + [450] = {.count = 1, .reusable = false}, SHIFT(185), + [452] = {.count = 1, .reusable = false}, SHIFT(186), + [454] = {.count = 1, .reusable = true}, SHIFT(187), + [456] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), + [458] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), + [460] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), + [462] = {.count = 1, .reusable = true}, SHIFT(188), + [464] = {.count = 1, .reusable = true}, SHIFT(189), + [466] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 3), + [468] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 3), + [470] = {.count = 1, .reusable = false}, SHIFT(191), + [472] = {.count = 1, .reusable = true}, SHIFT(192), + [474] = {.count = 1, .reusable = true}, SHIFT(193), + [476] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), + [478] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), + [480] = {.count = 1, .reusable = false}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 12), + [482] = {.count = 1, .reusable = true}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 12), + [484] = {.count = 1, .reusable = false}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 13), + [486] = {.count = 1, .reusable = true}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 13), + [488] = {.count = 1, .reusable = true}, SHIFT(194), + [490] = {.count = 1, .reusable = true}, SHIFT(195), + [492] = {.count = 1, .reusable = true}, SHIFT(196), + [494] = {.count = 1, .reusable = true}, SHIFT(197), + [496] = {.count = 1, .reusable = true}, SHIFT(198), + [498] = {.count = 1, .reusable = true}, SHIFT(204), + [500] = {.count = 1, .reusable = false}, SHIFT(206), + [502] = {.count = 1, .reusable = false}, SHIFT(207), + [504] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 3), + [506] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 3), + [508] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 3), + [510] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 3), [512] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), - [514] = {.count = 1, .reusable = true}, SHIFT(210), - [516] = {.count = 1, .reusable = true}, SHIFT(211), - [518] = {.count = 1, .reusable = true}, SHIFT(214), - [520] = {.count = 1, .reusable = false}, SHIFT(215), - [522] = {.count = 1, .reusable = false}, SHIFT(216), - [524] = {.count = 1, .reusable = false}, SHIFT(53), - [526] = {.count = 1, .reusable = true}, SHIFT(218), - [528] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2), - [530] = {.count = 1, .reusable = false}, SHIFT(219), - [532] = {.count = 1, .reusable = true}, SHIFT(221), - [534] = {.count = 1, .reusable = true}, SHIFT(222), - [536] = {.count = 1, .reusable = false}, SHIFT(226), - [538] = {.count = 1, .reusable = false}, SHIFT(224), - [540] = {.count = 1, .reusable = true}, SHIFT(227), - [542] = {.count = 1, .reusable = true}, SHIFT(228), - [544] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), - [546] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), - [548] = {.count = 1, .reusable = false}, SHIFT(230), - [550] = {.count = 1, .reusable = true}, SHIFT(231), - [552] = {.count = 1, .reusable = false}, SHIFT(232), - [554] = {.count = 1, .reusable = false}, SHIFT(233), - [556] = {.count = 1, .reusable = false}, SHIFT(234), - [558] = {.count = 1, .reusable = true}, SHIFT(235), - [560] = {.count = 1, .reusable = true}, SHIFT(236), - [562] = {.count = 1, .reusable = true}, SHIFT(237), - [564] = {.count = 1, .reusable = false}, SHIFT(238), - [566] = {.count = 1, .reusable = false}, SHIFT(239), - [568] = {.count = 1, .reusable = false}, SHIFT(240), - [570] = {.count = 1, .reusable = false}, SHIFT(241), - [572] = {.count = 1, .reusable = false}, SHIFT(242), - [574] = {.count = 1, .reusable = false}, SHIFT(243), - [576] = {.count = 1, .reusable = false}, SHIFT(244), - [578] = {.count = 1, .reusable = false}, SHIFT(245), - [580] = {.count = 1, .reusable = false}, SHIFT(246), - [582] = {.count = 1, .reusable = false}, SHIFT(247), - [584] = {.count = 1, .reusable = false}, SHIFT(248), - [586] = {.count = 1, .reusable = true}, SHIFT(249), - [588] = {.count = 1, .reusable = true}, SHIFT(250), - [590] = {.count = 1, .reusable = false}, SHIFT(251), - [592] = {.count = 1, .reusable = true}, SHIFT(251), - [594] = {.count = 1, .reusable = false}, SHIFT(252), - [596] = {.count = 1, .reusable = true}, SHIFT(258), - [598] = {.count = 1, .reusable = true}, SHIFT(253), - [600] = {.count = 1, .reusable = false}, SHIFT(258), - [602] = {.count = 1, .reusable = false}, SHIFT(254), - [604] = {.count = 1, .reusable = true}, SHIFT(262), - [606] = {.count = 1, .reusable = true}, SHIFT(263), - [608] = {.count = 1, .reusable = true}, SHIFT(264), - [610] = {.count = 1, .reusable = false}, SHIFT(275), - [612] = {.count = 1, .reusable = false}, SHIFT(271), - [614] = {.count = 1, .reusable = true}, SHIFT(265), - [616] = {.count = 1, .reusable = true}, SHIFT(266), - [618] = {.count = 1, .reusable = false}, SHIFT(267), - [620] = {.count = 1, .reusable = true}, SHIFT(267), - [622] = {.count = 1, .reusable = false}, SHIFT(268), - [624] = {.count = 1, .reusable = true}, SHIFT(272), - [626] = {.count = 1, .reusable = false}, SHIFT(272), - [628] = {.count = 1, .reusable = false}, SHIFT(269), - [630] = {.count = 1, .reusable = true}, SHIFT(276), - [632] = {.count = 1, .reusable = true}, SHIFT(277), - [634] = {.count = 1, .reusable = false}, SHIFT(277), - [636] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [638] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [640] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), - [642] = {.count = 1, .reusable = true}, SHIFT(279), - [644] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [646] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), - [648] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), - [650] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), - [652] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), - [654] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), - [656] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(136), - [659] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(136), - [662] = {.count = 1, .reusable = true}, SHIFT(281), - [664] = {.count = 1, .reusable = true}, SHIFT(282), - [666] = {.count = 1, .reusable = true}, SHIFT(283), + [514] = {.count = 1, .reusable = true}, SHIFT(208), + [516] = {.count = 1, .reusable = true}, SHIFT(209), + [518] = {.count = 1, .reusable = true}, SHIFT(210), + [520] = {.count = 1, .reusable = true}, SHIFT(213), + [522] = {.count = 1, .reusable = false}, SHIFT(214), + [524] = {.count = 1, .reusable = false}, SHIFT(215), + [526] = {.count = 1, .reusable = false}, SHIFT(53), + [528] = {.count = 1, .reusable = true}, SHIFT(217), + [530] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2), + [532] = {.count = 1, .reusable = false}, SHIFT(218), + [534] = {.count = 1, .reusable = true}, SHIFT(220), + [536] = {.count = 1, .reusable = true}, SHIFT(221), + [538] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), + [540] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), + [542] = {.count = 1, .reusable = false}, SHIFT(223), + [544] = {.count = 1, .reusable = false}, SHIFT(224), + [546] = {.count = 1, .reusable = false}, SHIFT(225), + [548] = {.count = 1, .reusable = false}, SHIFT(226), + [550] = {.count = 1, .reusable = true}, SHIFT(227), + [552] = {.count = 1, .reusable = true}, SHIFT(228), + [554] = {.count = 1, .reusable = true}, SHIFT(229), + [556] = {.count = 1, .reusable = true}, SHIFT(230), + [558] = {.count = 1, .reusable = false}, SHIFT(231), + [560] = {.count = 1, .reusable = false}, SHIFT(232), + [562] = {.count = 1, .reusable = false}, SHIFT(233), + [564] = {.count = 1, .reusable = false}, SHIFT(234), + [566] = {.count = 1, .reusable = false}, SHIFT(235), + [568] = {.count = 1, .reusable = false}, SHIFT(236), + [570] = {.count = 1, .reusable = false}, SHIFT(237), + [572] = {.count = 1, .reusable = false}, SHIFT(238), + [574] = {.count = 1, .reusable = false}, SHIFT(239), + [576] = {.count = 1, .reusable = false}, SHIFT(240), + [578] = {.count = 1, .reusable = false}, SHIFT(241), + [580] = {.count = 1, .reusable = true}, SHIFT(242), + [582] = {.count = 1, .reusable = true}, SHIFT(243), + [584] = {.count = 1, .reusable = false}, SHIFT(244), + [586] = {.count = 1, .reusable = true}, SHIFT(244), + [588] = {.count = 1, .reusable = false}, SHIFT(245), + [590] = {.count = 1, .reusable = true}, SHIFT(251), + [592] = {.count = 1, .reusable = true}, SHIFT(246), + [594] = {.count = 1, .reusable = false}, SHIFT(251), + [596] = {.count = 1, .reusable = false}, SHIFT(247), + [598] = {.count = 1, .reusable = true}, SHIFT(255), + [600] = {.count = 1, .reusable = true}, SHIFT(256), + [602] = {.count = 1, .reusable = false}, SHIFT(260), + [604] = {.count = 1, .reusable = false}, SHIFT(258), + [606] = {.count = 1, .reusable = true}, SHIFT(261), + [608] = {.count = 1, .reusable = true}, SHIFT(262), + [610] = {.count = 1, .reusable = true}, SHIFT(263), + [612] = {.count = 1, .reusable = false}, SHIFT(274), + [614] = {.count = 1, .reusable = false}, SHIFT(270), + [616] = {.count = 1, .reusable = true}, SHIFT(264), + [618] = {.count = 1, .reusable = true}, SHIFT(265), + [620] = {.count = 1, .reusable = false}, SHIFT(266), + [622] = {.count = 1, .reusable = true}, SHIFT(266), + [624] = {.count = 1, .reusable = false}, SHIFT(267), + [626] = {.count = 1, .reusable = true}, SHIFT(271), + [628] = {.count = 1, .reusable = false}, SHIFT(271), + [630] = {.count = 1, .reusable = false}, SHIFT(268), + [632] = {.count = 1, .reusable = true}, SHIFT(275), + [634] = {.count = 1, .reusable = true}, SHIFT(276), + [636] = {.count = 1, .reusable = false}, SHIFT(276), + [638] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [640] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [642] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), + [644] = {.count = 1, .reusable = true}, SHIFT(278), + [646] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [648] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), + [650] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), + [652] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), + [654] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), + [656] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), + [658] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(136), + [661] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(136), + [664] = {.count = 1, .reusable = true}, SHIFT(280), + [666] = {.count = 1, .reusable = true}, SHIFT(281), [668] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), - [670] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 4), - [672] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 4), - [674] = {.count = 1, .reusable = true}, SHIFT(285), - [676] = {.count = 1, .reusable = false}, SHIFT(286), - [678] = {.count = 1, .reusable = true}, SHIFT(287), - [680] = {.count = 1, .reusable = false}, SHIFT(287), - [682] = {.count = 1, .reusable = false}, SHIFT(288), - [684] = {.count = 1, .reusable = false}, SHIFT(289), - [686] = {.count = 1, .reusable = false}, SHIFT(291), - [688] = {.count = 1, .reusable = false}, SHIFT(294), - [690] = {.count = 1, .reusable = false}, SHIFT(297), - [692] = {.count = 1, .reusable = true}, SHIFT(300), - [694] = {.count = 1, .reusable = true}, SHIFT(301), - [696] = {.count = 1, .reusable = true}, SHIFT(302), - [698] = {.count = 1, .reusable = false}, SHIFT(303), - [700] = {.count = 1, .reusable = true}, SHIFT(304), - [702] = {.count = 1, .reusable = true}, SHIFT(305), - [704] = {.count = 1, .reusable = false}, SHIFT(306), - [706] = {.count = 1, .reusable = false}, SHIFT(307), - [708] = {.count = 1, .reusable = false}, SHIFT(308), - [710] = {.count = 1, .reusable = true}, SHIFT(311), - [712] = {.count = 1, .reusable = true}, SHIFT(312), - [714] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2, .alias_sequence_id = 6), - [716] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2, .alias_sequence_id = 14), - [718] = {.count = 1, .reusable = false}, SHIFT(317), - [720] = {.count = 1, .reusable = false}, SHIFT(319), - [722] = {.count = 1, .reusable = true}, SHIFT(320), - [724] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 15), - [726] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 15), - [728] = {.count = 1, .reusable = true}, SHIFT(323), - [730] = {.count = 1, .reusable = true}, SHIFT(324), - [732] = {.count = 1, .reusable = true}, SHIFT(327), - [734] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(61), - [737] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(62), - [740] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(63), - [743] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [745] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(65), - [748] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(66), - [751] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(69), - [754] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(70), - [757] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(71), - [760] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 16), - [762] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 16), - [764] = {.count = 1, .reusable = true}, SHIFT(328), - [766] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 17), - [768] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 17), - [770] = {.count = 1, .reusable = true}, SHIFT(329), - [772] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 4), - [774] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 4), - [776] = {.count = 1, .reusable = true}, SHIFT(331), + [670] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4, .alias_sequence_id = 4), + [672] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4, .alias_sequence_id = 4), + [674] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 4), + [676] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 4), + [678] = {.count = 1, .reusable = true}, SHIFT(283), + [680] = {.count = 1, .reusable = false}, SHIFT(284), + [682] = {.count = 1, .reusable = true}, SHIFT(285), + [684] = {.count = 1, .reusable = false}, SHIFT(285), + [686] = {.count = 1, .reusable = false}, SHIFT(286), + [688] = {.count = 1, .reusable = false}, SHIFT(287), + [690] = {.count = 1, .reusable = false}, SHIFT(289), + [692] = {.count = 1, .reusable = false}, SHIFT(292), + [694] = {.count = 1, .reusable = false}, SHIFT(295), + [696] = {.count = 1, .reusable = true}, SHIFT(298), + [698] = {.count = 1, .reusable = true}, SHIFT(299), + [700] = {.count = 1, .reusable = true}, SHIFT(300), + [702] = {.count = 1, .reusable = false}, SHIFT(301), + [704] = {.count = 1, .reusable = true}, SHIFT(302), + [706] = {.count = 1, .reusable = true}, SHIFT(303), + [708] = {.count = 1, .reusable = false}, SHIFT(304), + [710] = {.count = 1, .reusable = false}, SHIFT(305), + [712] = {.count = 1, .reusable = false}, SHIFT(306), + [714] = {.count = 1, .reusable = true}, SHIFT(309), + [716] = {.count = 1, .reusable = true}, SHIFT(310), + [718] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2, .alias_sequence_id = 6), + [720] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2, .alias_sequence_id = 14), + [722] = {.count = 1, .reusable = true}, SHIFT(315), + [724] = {.count = 1, .reusable = false}, SHIFT(317), + [726] = {.count = 1, .reusable = true}, SHIFT(318), + [728] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 15), + [730] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 15), + [732] = {.count = 1, .reusable = true}, SHIFT(321), + [734] = {.count = 1, .reusable = true}, SHIFT(322), + [736] = {.count = 1, .reusable = true}, SHIFT(325), + [738] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(61), + [741] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(62), + [744] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(63), + [747] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [749] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(65), + [752] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(66), + [755] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(69), + [758] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(70), + [761] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(71), + [764] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 16), + [766] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 16), + [768] = {.count = 1, .reusable = true}, SHIFT(326), + [770] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 17), + [772] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 17), + [774] = {.count = 1, .reusable = true}, SHIFT(327), + [776] = {.count = 1, .reusable = true}, SHIFT(329), [778] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2), [780] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), [782] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), - [784] = {.count = 1, .reusable = true}, SHIFT(333), - [786] = {.count = 1, .reusable = true}, SHIFT(335), - [788] = {.count = 1, .reusable = false}, SHIFT(335), + [784] = {.count = 1, .reusable = true}, SHIFT(331), + [786] = {.count = 1, .reusable = true}, SHIFT(333), + [788] = {.count = 1, .reusable = false}, SHIFT(333), [790] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), - [792] = {.count = 1, .reusable = true}, SHIFT(336), + [792] = {.count = 1, .reusable = true}, SHIFT(334), [794] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), [796] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), - [798] = {.count = 1, .reusable = true}, SHIFT(337), - [800] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(187), + [798] = {.count = 1, .reusable = true}, SHIFT(335), + [800] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(186), [803] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), [805] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), - [807] = {.count = 1, .reusable = true}, SHIFT(341), - [809] = {.count = 1, .reusable = true}, SHIFT(342), - [811] = {.count = 1, .reusable = true}, SHIFT(343), - [813] = {.count = 1, .reusable = true}, SHIFT(344), - [815] = {.count = 1, .reusable = false}, SHIFT(345), - [817] = {.count = 1, .reusable = true}, SHIFT(345), - [819] = {.count = 1, .reusable = false}, SHIFT(346), - [821] = {.count = 1, .reusable = true}, SHIFT(347), - [823] = {.count = 1, .reusable = false}, SHIFT(347), - [825] = {.count = 1, .reusable = true}, SHIFT(349), - [827] = {.count = 1, .reusable = true}, SHIFT(351), - [829] = {.count = 1, .reusable = true}, SHIFT(353), - [831] = {.count = 1, .reusable = true}, SHIFT(354), - [833] = {.count = 1, .reusable = true}, SHIFT(355), - [835] = {.count = 1, .reusable = true}, SHIFT(359), - [837] = {.count = 1, .reusable = true}, SHIFT(363), - [839] = {.count = 1, .reusable = true}, SHIFT(367), - [841] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), - [843] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), - [845] = {.count = 1, .reusable = false}, SHIFT(199), - [847] = {.count = 1, .reusable = true}, SHIFT(371), - [849] = {.count = 1, .reusable = true}, SHIFT(372), - [851] = {.count = 1, .reusable = true}, SHIFT(373), - [853] = {.count = 1, .reusable = true}, SHIFT(374), - [855] = {.count = 1, .reusable = false}, SHIFT(375), - [857] = {.count = 1, .reusable = true}, SHIFT(375), - [859] = {.count = 1, .reusable = false}, SHIFT(376), - [861] = {.count = 1, .reusable = true}, SHIFT(377), - [863] = {.count = 1, .reusable = false}, SHIFT(377), + [807] = {.count = 1, .reusable = true}, SHIFT(339), + [809] = {.count = 1, .reusable = true}, SHIFT(340), + [811] = {.count = 1, .reusable = true}, SHIFT(341), + [813] = {.count = 1, .reusable = true}, SHIFT(342), + [815] = {.count = 1, .reusable = false}, SHIFT(343), + [817] = {.count = 1, .reusable = true}, SHIFT(343), + [819] = {.count = 1, .reusable = false}, SHIFT(344), + [821] = {.count = 1, .reusable = true}, SHIFT(345), + [823] = {.count = 1, .reusable = false}, SHIFT(345), + [825] = {.count = 1, .reusable = true}, SHIFT(347), + [827] = {.count = 1, .reusable = true}, SHIFT(349), + [829] = {.count = 1, .reusable = true}, SHIFT(351), + [831] = {.count = 1, .reusable = true}, SHIFT(352), + [833] = {.count = 1, .reusable = true}, SHIFT(353), + [835] = {.count = 1, .reusable = true}, SHIFT(357), + [837] = {.count = 1, .reusable = true}, SHIFT(361), + [839] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), + [841] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), + [843] = {.count = 1, .reusable = true}, SHIFT(365), + [845] = {.count = 1, .reusable = false}, SHIFT(198), + [847] = {.count = 1, .reusable = true}, SHIFT(369), + [849] = {.count = 1, .reusable = true}, SHIFT(370), + [851] = {.count = 1, .reusable = true}, SHIFT(371), + [853] = {.count = 1, .reusable = true}, SHIFT(372), + [855] = {.count = 1, .reusable = false}, SHIFT(373), + [857] = {.count = 1, .reusable = true}, SHIFT(373), + [859] = {.count = 1, .reusable = false}, SHIFT(374), + [861] = {.count = 1, .reusable = true}, SHIFT(375), + [863] = {.count = 1, .reusable = false}, SHIFT(375), [865] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 18), - [867] = {.count = 1, .reusable = true}, SHIFT(379), - [869] = {.count = 1, .reusable = true}, SHIFT(380), - [871] = {.count = 1, .reusable = true}, SHIFT(381), - [873] = {.count = 1, .reusable = true}, SHIFT(382), + [867] = {.count = 1, .reusable = true}, SHIFT(377), + [869] = {.count = 1, .reusable = true}, SHIFT(378), + [871] = {.count = 1, .reusable = true}, SHIFT(379), + [873] = {.count = 1, .reusable = true}, SHIFT(380), [875] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 9), [877] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 10), [879] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 11), @@ -59445,1460 +56182,1308 @@ static TSParseActionEntry ts_parse_actions[] = { [911] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(13), [914] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(14), [917] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(15), - [920] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(208), + [920] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(207), [923] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1), [925] = {.count = 1, .reusable = true}, SHIFT(11), - [927] = {.count = 1, .reusable = true}, SHIFT(390), - [929] = {.count = 1, .reusable = true}, SHIFT(392), - [931] = {.count = 1, .reusable = false}, SHIFT(392), + [927] = {.count = 1, .reusable = true}, SHIFT(388), + [929] = {.count = 1, .reusable = true}, SHIFT(390), + [931] = {.count = 1, .reusable = false}, SHIFT(390), [933] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), - [935] = {.count = 1, .reusable = true}, SHIFT(393), + [935] = {.count = 1, .reusable = true}, SHIFT(391), [937] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), [939] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4), [941] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4), - [943] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(216), + [943] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(215), [946] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3), [948] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3), [950] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), - [952] = {.count = 1, .reusable = true}, SHIFT(396), - [954] = {.count = 1, .reusable = true}, SHIFT(397), - [956] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2, .dynamic_precedence = 1), - [958] = {.count = 1, .reusable = true}, SHIFT(399), - [960] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), - [962] = {.count = 1, .reusable = true}, SHIFT(400), - [964] = {.count = 1, .reusable = true}, SHIFT(401), - [966] = {.count = 1, .reusable = false}, SHIFT(404), - [968] = {.count = 1, .reusable = false}, SHIFT(405), - [970] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), - [972] = {.count = 1, .reusable = true}, SHIFT(407), - [974] = {.count = 1, .reusable = true}, SHIFT(408), - [976] = {.count = 1, .reusable = true}, SHIFT(409), - [978] = {.count = 1, .reusable = true}, SHIFT(410), - [980] = {.count = 1, .reusable = true}, SHIFT(411), - [982] = {.count = 1, .reusable = false}, SHIFT(412), - [984] = {.count = 1, .reusable = true}, SHIFT(412), - [986] = {.count = 1, .reusable = false}, SHIFT(413), - [988] = {.count = 1, .reusable = true}, SHIFT(415), - [990] = {.count = 1, .reusable = false}, SHIFT(415), - [992] = {.count = 1, .reusable = false}, SHIFT(414), - [994] = {.count = 1, .reusable = false}, SHIFT(419), - [996] = {.count = 1, .reusable = true}, SHIFT(420), - [998] = {.count = 1, .reusable = true}, SHIFT(421), - [1000] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), - [1002] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), - [1004] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [1006] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [1008] = {.count = 1, .reusable = true}, SHIFT(422), - [1010] = {.count = 1, .reusable = false}, SHIFT(422), - [1012] = {.count = 1, .reusable = true}, SHIFT(423), - [1014] = {.count = 1, .reusable = true}, SHIFT(424), - [1016] = {.count = 1, .reusable = true}, SHIFT(425), - [1018] = {.count = 1, .reusable = true}, SHIFT(426), - [1020] = {.count = 1, .reusable = true}, SHIFT(427), - [1022] = {.count = 1, .reusable = true}, SHIFT(428), - [1024] = {.count = 1, .reusable = false}, SHIFT(429), - [1026] = {.count = 1, .reusable = true}, SHIFT(429), + [952] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), + [954] = {.count = 1, .reusable = true}, SHIFT(395), + [956] = {.count = 1, .reusable = false}, SHIFT(396), + [958] = {.count = 1, .reusable = true}, SHIFT(397), + [960] = {.count = 1, .reusable = true}, SHIFT(398), + [962] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), + [964] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), + [966] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [968] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [970] = {.count = 1, .reusable = true}, SHIFT(399), + [972] = {.count = 1, .reusable = true}, SHIFT(400), + [974] = {.count = 1, .reusable = true}, SHIFT(401), + [976] = {.count = 1, .reusable = true}, SHIFT(402), + [978] = {.count = 1, .reusable = false}, SHIFT(403), + [980] = {.count = 1, .reusable = true}, SHIFT(403), + [982] = {.count = 1, .reusable = false}, SHIFT(404), + [984] = {.count = 1, .reusable = true}, SHIFT(406), + [986] = {.count = 1, .reusable = false}, SHIFT(406), + [988] = {.count = 1, .reusable = false}, SHIFT(405), + [990] = {.count = 1, .reusable = true}, SHIFT(410), + [992] = {.count = 1, .reusable = false}, SHIFT(410), + [994] = {.count = 1, .reusable = true}, SHIFT(411), + [996] = {.count = 1, .reusable = true}, SHIFT(414), + [998] = {.count = 1, .reusable = true}, SHIFT(415), + [1000] = {.count = 1, .reusable = true}, SHIFT(416), + [1002] = {.count = 1, .reusable = true}, SHIFT(417), + [1004] = {.count = 1, .reusable = false}, SHIFT(418), + [1006] = {.count = 1, .reusable = true}, SHIFT(418), + [1008] = {.count = 1, .reusable = false}, SHIFT(419), + [1010] = {.count = 1, .reusable = true}, SHIFT(420), + [1012] = {.count = 1, .reusable = false}, SHIFT(420), + [1014] = {.count = 1, .reusable = true}, SHIFT(422), + [1016] = {.count = 1, .reusable = false}, SHIFT(424), + [1018] = {.count = 1, .reusable = false}, SHIFT(425), + [1020] = {.count = 1, .reusable = false}, SHIFT(426), + [1022] = {.count = 1, .reusable = false}, SHIFT(427), + [1024] = {.count = 1, .reusable = false}, SHIFT(428), + [1026] = {.count = 1, .reusable = false}, SHIFT(429), [1028] = {.count = 1, .reusable = false}, SHIFT(430), - [1030] = {.count = 1, .reusable = true}, SHIFT(431), - [1032] = {.count = 1, .reusable = false}, SHIFT(431), - [1034] = {.count = 1, .reusable = true}, SHIFT(433), - [1036] = {.count = 1, .reusable = true}, SHIFT(434), + [1030] = {.count = 1, .reusable = false}, SHIFT(431), + [1032] = {.count = 1, .reusable = true}, SHIFT(433), + [1034] = {.count = 1, .reusable = true}, SHIFT(434), + [1036] = {.count = 1, .reusable = true}, SHIFT(435), [1038] = {.count = 1, .reusable = false}, SHIFT(435), - [1040] = {.count = 1, .reusable = false}, SHIFT(436), - [1042] = {.count = 1, .reusable = false}, SHIFT(437), - [1044] = {.count = 1, .reusable = false}, SHIFT(438), - [1046] = {.count = 1, .reusable = false}, SHIFT(439), - [1048] = {.count = 1, .reusable = false}, SHIFT(440), - [1050] = {.count = 1, .reusable = false}, SHIFT(441), - [1052] = {.count = 1, .reusable = true}, SHIFT(443), - [1054] = {.count = 1, .reusable = true}, SHIFT(444), - [1056] = {.count = 1, .reusable = true}, SHIFT(445), - [1058] = {.count = 1, .reusable = false}, SHIFT(445), - [1060] = {.count = 1, .reusable = true}, SHIFT(446), - [1062] = {.count = 1, .reusable = true}, SHIFT(447), - [1064] = {.count = 1, .reusable = true}, SHIFT(448), - [1066] = {.count = 1, .reusable = true}, SHIFT(449), - [1068] = {.count = 1, .reusable = false}, SHIFT(449), - [1070] = {.count = 1, .reusable = true}, SHIFT(450), - [1072] = {.count = 1, .reusable = false}, SHIFT(450), - [1074] = {.count = 1, .reusable = true}, SHIFT(451), - [1076] = {.count = 1, .reusable = false}, SHIFT(451), - [1078] = {.count = 1, .reusable = true}, SHIFT(452), - [1080] = {.count = 1, .reusable = true}, SHIFT(453), - [1082] = {.count = 1, .reusable = false}, SHIFT(453), - [1084] = {.count = 1, .reusable = false}, SHIFT(454), - [1086] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), SHIFT(42), - [1090] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [1092] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [1095] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [1098] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [1100] = {.count = 1, .reusable = true}, SHIFT(455), - [1102] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 12), - [1104] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 12), - [1106] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 13), - [1108] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 13), - [1110] = {.count = 1, .reusable = true}, SHIFT(456), - [1112] = {.count = 1, .reusable = true}, SHIFT(457), - [1114] = {.count = 1, .reusable = true}, SHIFT(458), - [1116] = {.count = 1, .reusable = true}, SHIFT(459), - [1118] = {.count = 1, .reusable = false}, SHIFT(460), - [1120] = {.count = 1, .reusable = true}, SHIFT(461), - [1122] = {.count = 1, .reusable = false}, SHIFT(462), - [1124] = {.count = 1, .reusable = true}, SHIFT(463), - [1126] = {.count = 1, .reusable = true}, SHIFT(462), - [1128] = {.count = 1, .reusable = false}, SHIFT(464), - [1130] = {.count = 1, .reusable = true}, SHIFT(465), - [1132] = {.count = 1, .reusable = true}, SHIFT(466), - [1134] = {.count = 1, .reusable = false}, SHIFT(467), - [1136] = {.count = 1, .reusable = false}, SHIFT(468), - [1138] = {.count = 1, .reusable = true}, SHIFT(469), - [1140] = {.count = 1, .reusable = false}, SHIFT(470), - [1142] = {.count = 1, .reusable = true}, SHIFT(470), - [1144] = {.count = 1, .reusable = false}, SHIFT(471), - [1146] = {.count = 1, .reusable = false}, SHIFT(472), - [1148] = {.count = 1, .reusable = true}, SHIFT(473), - [1150] = {.count = 1, .reusable = true}, SHIFT(474), - [1152] = {.count = 1, .reusable = true}, SHIFT(477), - [1154] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), - [1156] = {.count = 1, .reusable = true}, SHIFT(480), - [1158] = {.count = 1, .reusable = true}, SHIFT(481), - [1160] = {.count = 1, .reusable = false}, SHIFT(481), - [1162] = {.count = 1, .reusable = true}, SHIFT(482), - [1164] = {.count = 1, .reusable = true}, SHIFT(483), - [1166] = {.count = 1, .reusable = false}, SHIFT(483), - [1168] = {.count = 1, .reusable = false}, SHIFT(485), - [1170] = {.count = 1, .reusable = false}, SHIFT(486), - [1172] = {.count = 1, .reusable = true}, SHIFT(487), - [1174] = {.count = 1, .reusable = true}, SHIFT(486), - [1176] = {.count = 1, .reusable = false}, SHIFT(488), - [1178] = {.count = 1, .reusable = true}, SHIFT(489), - [1180] = {.count = 1, .reusable = true}, SHIFT(490), - [1182] = {.count = 1, .reusable = false}, SHIFT(491), - [1184] = {.count = 1, .reusable = false}, SHIFT(492), - [1186] = {.count = 1, .reusable = true}, SHIFT(493), - [1188] = {.count = 1, .reusable = false}, SHIFT(494), - [1190] = {.count = 1, .reusable = true}, SHIFT(494), - [1192] = {.count = 1, .reusable = false}, SHIFT(495), - [1194] = {.count = 1, .reusable = false}, SHIFT(496), - [1196] = {.count = 1, .reusable = false}, SHIFT(498), - [1198] = {.count = 1, .reusable = false}, SHIFT(499), - [1200] = {.count = 1, .reusable = true}, SHIFT(500), - [1202] = {.count = 1, .reusable = true}, SHIFT(501), - [1204] = {.count = 1, .reusable = true}, SHIFT(502), - [1206] = {.count = 1, .reusable = true}, SHIFT(503), - [1208] = {.count = 1, .reusable = true}, SHIFT(504), - [1210] = {.count = 1, .reusable = false}, SHIFT(504), - [1212] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), - [1214] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), - [1216] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), - [1218] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(125), - [1221] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 5, .alias_sequence_id = 4), - [1223] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 5, .alias_sequence_id = 4), - [1225] = {.count = 1, .reusable = true}, SHIFT(507), - [1227] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), - [1229] = {.count = 1, .reusable = true}, SHIFT(508), - [1231] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 4), - [1233] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 4), - [1235] = {.count = 1, .reusable = false}, SHIFT(510), - [1237] = {.count = 1, .reusable = false}, SHIFT(511), - [1239] = {.count = 1, .reusable = false}, SHIFT(512), - [1241] = {.count = 1, .reusable = false}, SHIFT(513), - [1243] = {.count = 1, .reusable = true}, SHIFT(514), - [1245] = {.count = 1, .reusable = false}, SHIFT(514), - [1247] = {.count = 1, .reusable = true}, SHIFT(516), - [1249] = {.count = 1, .reusable = false}, SHIFT(516), - [1251] = {.count = 1, .reusable = true}, SHIFT(518), - [1253] = {.count = 1, .reusable = false}, SHIFT(518), - [1255] = {.count = 1, .reusable = false}, SHIFT(520), - [1257] = {.count = 1, .reusable = true}, SHIFT(521), - [1259] = {.count = 1, .reusable = false}, SHIFT(521), - [1261] = {.count = 1, .reusable = false}, SHIFT(522), - [1263] = {.count = 1, .reusable = false}, SHIFT(523), - [1265] = {.count = 1, .reusable = false}, SHIFT(525), - [1267] = {.count = 1, .reusable = false}, SHIFT(528), - [1269] = {.count = 1, .reusable = false}, SHIFT(531), - [1271] = {.count = 1, .reusable = false}, SHIFT(534), - [1273] = {.count = 1, .reusable = false}, SHIFT(536), - [1275] = {.count = 1, .reusable = true}, SHIFT(537), - [1277] = {.count = 1, .reusable = true}, SHIFT(540), - [1279] = {.count = 1, .reusable = true}, SHIFT(541), - [1281] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(148), - [1284] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(149), - [1287] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(150), - [1290] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(151), - [1293] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(152), - [1296] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(153), - [1299] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(154), - [1302] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(155), - [1305] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 14), - [1307] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 14), - [1309] = {.count = 1, .reusable = true}, SHIFT(545), - [1311] = {.count = 1, .reusable = true}, SHIFT(546), - [1313] = {.count = 1, .reusable = true}, SHIFT(548), - [1315] = {.count = 1, .reusable = true}, SHIFT(550), - [1317] = {.count = 1, .reusable = true}, SHIFT(552), - [1319] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 19), - [1321] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 19), - [1323] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 20), - [1325] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 20), - [1327] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 21), - [1329] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 21), - [1331] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3), - [1333] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3), - [1335] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), - [1337] = {.count = 1, .reusable = true}, SHIFT(553), - [1339] = {.count = 1, .reusable = true}, SHIFT(554), - [1341] = {.count = 1, .reusable = false}, SHIFT(554), - [1343] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), - [1345] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), - [1347] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), - [1349] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), - [1351] = {.count = 1, .reusable = true}, SHIFT(556), - [1353] = {.count = 1, .reusable = true}, SHIFT(557), - [1355] = {.count = 1, .reusable = false}, SHIFT(557), - [1357] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), - [1359] = {.count = 1, .reusable = false}, SHIFT(558), - [1361] = {.count = 1, .reusable = false}, SHIFT(559), - [1363] = {.count = 1, .reusable = true}, SHIFT(560), - [1365] = {.count = 1, .reusable = true}, SHIFT(559), - [1367] = {.count = 1, .reusable = false}, SHIFT(561), - [1369] = {.count = 1, .reusable = true}, SHIFT(562), - [1371] = {.count = 1, .reusable = true}, SHIFT(563), - [1373] = {.count = 1, .reusable = false}, SHIFT(564), - [1375] = {.count = 1, .reusable = false}, SHIFT(565), - [1377] = {.count = 1, .reusable = true}, SHIFT(566), - [1379] = {.count = 1, .reusable = false}, SHIFT(567), - [1381] = {.count = 1, .reusable = true}, SHIFT(567), - [1383] = {.count = 1, .reusable = false}, SHIFT(568), - [1385] = {.count = 1, .reusable = false}, SHIFT(569), - [1387] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), - [1389] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), - [1391] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [1393] = {.count = 1, .reusable = true}, SHIFT(571), - [1395] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(572), - [1398] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 5), - [1400] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 5), - [1402] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, .alias_sequence_id = 6), - [1404] = {.count = 1, .reusable = false}, SHIFT(574), - [1406] = {.count = 1, .reusable = true}, SHIFT(575), - [1408] = {.count = 1, .reusable = true}, SHIFT(576), - [1410] = {.count = 1, .reusable = true}, SHIFT(577), - [1412] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 7), - [1414] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 7), - [1416] = {.count = 1, .reusable = true}, SHIFT(581), - [1418] = {.count = 1, .reusable = true}, SHIFT(582), - [1420] = {.count = 1, .reusable = true}, SHIFT(583), - [1422] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 8), - [1424] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 8), - [1426] = {.count = 1, .reusable = true}, SHIFT(586), - [1428] = {.count = 1, .reusable = true}, SHIFT(587), - [1430] = {.count = 1, .reusable = true}, SHIFT(588), - [1432] = {.count = 1, .reusable = true}, SHIFT(592), - [1434] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2), - [1436] = {.count = 1, .reusable = true}, SHIFT(595), - [1438] = {.count = 1, .reusable = true}, SHIFT(596), - [1440] = {.count = 1, .reusable = false}, SHIFT(596), - [1442] = {.count = 1, .reusable = true}, SHIFT(597), - [1444] = {.count = 1, .reusable = false}, SHIFT(598), - [1446] = {.count = 1, .reusable = false}, SHIFT(599), - [1448] = {.count = 1, .reusable = true}, SHIFT(600), - [1450] = {.count = 1, .reusable = true}, SHIFT(599), - [1452] = {.count = 1, .reusable = false}, SHIFT(601), - [1454] = {.count = 1, .reusable = true}, SHIFT(602), - [1456] = {.count = 1, .reusable = true}, SHIFT(603), - [1458] = {.count = 1, .reusable = false}, SHIFT(604), - [1460] = {.count = 1, .reusable = false}, SHIFT(605), - [1462] = {.count = 1, .reusable = true}, SHIFT(606), - [1464] = {.count = 1, .reusable = false}, SHIFT(607), - [1466] = {.count = 1, .reusable = true}, SHIFT(607), - [1468] = {.count = 1, .reusable = false}, SHIFT(608), - [1470] = {.count = 1, .reusable = false}, SHIFT(609), - [1472] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), - [1474] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), - [1476] = {.count = 1, .reusable = true}, SHIFT(612), - [1478] = {.count = 1, .reusable = true}, SHIFT(614), - [1480] = {.count = 1, .reusable = false}, SHIFT(614), - [1482] = {.count = 1, .reusable = true}, SHIFT(615), - [1484] = {.count = 1, .reusable = false}, SHIFT(615), - [1486] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), - [1488] = {.count = 1, .reusable = true}, SHIFT(616), - [1490] = {.count = 1, .reusable = true}, SHIFT(618), - [1492] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2), - [1494] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), - [1496] = {.count = 1, .reusable = true}, SHIFT(621), - [1498] = {.count = 1, .reusable = true}, SHIFT(622), - [1500] = {.count = 1, .reusable = false}, SHIFT(622), - [1502] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), - [1504] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), - [1506] = {.count = 1, .reusable = true}, SHIFT(624), - [1508] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3, .dynamic_precedence = 1), - [1510] = {.count = 1, .reusable = true}, SHIFT(625), - [1512] = {.count = 1, .reusable = true}, SHIFT(627), - [1514] = {.count = 1, .reusable = false}, SHIFT(628), - [1516] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), - [1518] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(405), - [1521] = {.count = 1, .reusable = false}, SHIFT(632), - [1523] = {.count = 1, .reusable = true}, SHIFT(633), - [1525] = {.count = 1, .reusable = false}, SHIFT(633), - [1527] = {.count = 1, .reusable = true}, SHIFT(635), - [1529] = {.count = 1, .reusable = true}, SHIFT(636), - [1531] = {.count = 1, .reusable = false}, SHIFT(636), - [1533] = {.count = 1, .reusable = true}, SHIFT(637), - [1535] = {.count = 1, .reusable = true}, SHIFT(638), - [1537] = {.count = 1, .reusable = false}, SHIFT(639), - [1539] = {.count = 1, .reusable = false}, SHIFT(640), - [1541] = {.count = 1, .reusable = true}, SHIFT(641), - [1543] = {.count = 1, .reusable = true}, SHIFT(640), - [1545] = {.count = 1, .reusable = false}, SHIFT(642), - [1547] = {.count = 1, .reusable = true}, SHIFT(643), - [1549] = {.count = 1, .reusable = true}, SHIFT(644), - [1551] = {.count = 1, .reusable = false}, SHIFT(645), - [1553] = {.count = 1, .reusable = false}, SHIFT(646), - [1555] = {.count = 1, .reusable = true}, SHIFT(647), - [1557] = {.count = 1, .reusable = false}, SHIFT(648), - [1559] = {.count = 1, .reusable = true}, SHIFT(648), - [1561] = {.count = 1, .reusable = false}, SHIFT(649), - [1563] = {.count = 1, .reusable = false}, SHIFT(650), - [1565] = {.count = 1, .reusable = true}, SHIFT(651), - [1567] = {.count = 1, .reusable = false}, SHIFT(653), - [1569] = {.count = 1, .reusable = false}, SHIFT(654), - [1571] = {.count = 1, .reusable = false}, SHIFT(655), - [1573] = {.count = 1, .reusable = false}, SHIFT(656), - [1575] = {.count = 1, .reusable = false}, SHIFT(657), - [1577] = {.count = 1, .reusable = false}, SHIFT(658), - [1579] = {.count = 1, .reusable = true}, SHIFT(659), - [1581] = {.count = 1, .reusable = false}, SHIFT(660), - [1583] = {.count = 1, .reusable = false}, SHIFT(661), - [1585] = {.count = 1, .reusable = false}, SHIFT(662), - [1587] = {.count = 1, .reusable = false}, SHIFT(663), - [1589] = {.count = 1, .reusable = false}, SHIFT(664), - [1591] = {.count = 1, .reusable = false}, SHIFT(665), - [1593] = {.count = 1, .reusable = false}, SHIFT(666), - [1595] = {.count = 1, .reusable = false}, SHIFT(667), - [1597] = {.count = 1, .reusable = false}, SHIFT(668), - [1599] = {.count = 1, .reusable = false}, SHIFT(669), - [1601] = {.count = 1, .reusable = false}, SHIFT(670), - [1603] = {.count = 1, .reusable = true}, SHIFT(677), - [1605] = {.count = 1, .reusable = false}, SHIFT(677), - [1607] = {.count = 1, .reusable = false}, SHIFT(671), - [1609] = {.count = 1, .reusable = false}, SHIFT(680), - [1611] = {.count = 1, .reusable = false}, SHIFT(684), - [1613] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), - [1615] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), - [1617] = {.count = 1, .reusable = true}, SHIFT(688), - [1619] = {.count = 1, .reusable = true}, SHIFT(689), - [1621] = {.count = 1, .reusable = true}, SHIFT(690), - [1623] = {.count = 1, .reusable = true}, SHIFT(691), - [1625] = {.count = 1, .reusable = false}, SHIFT(692), - [1627] = {.count = 1, .reusable = true}, SHIFT(692), - [1629] = {.count = 1, .reusable = false}, SHIFT(693), - [1631] = {.count = 1, .reusable = true}, SHIFT(694), - [1633] = {.count = 1, .reusable = false}, SHIFT(694), - [1635] = {.count = 1, .reusable = true}, SHIFT(696), - [1637] = {.count = 1, .reusable = false}, SHIFT(696), - [1639] = {.count = 1, .reusable = true}, SHIFT(698), - [1641] = {.count = 1, .reusable = true}, SHIFT(699), - [1643] = {.count = 1, .reusable = false}, SHIFT(699), - [1645] = {.count = 1, .reusable = false}, SHIFT(700), - [1647] = {.count = 1, .reusable = false}, SHIFT(701), - [1649] = {.count = 1, .reusable = true}, SHIFT(702), - [1651] = {.count = 1, .reusable = true}, SHIFT(703), - [1653] = {.count = 1, .reusable = true}, SHIFT(701), - [1655] = {.count = 1, .reusable = false}, SHIFT(704), - [1657] = {.count = 1, .reusable = true}, SHIFT(705), - [1659] = {.count = 1, .reusable = true}, SHIFT(706), - [1661] = {.count = 1, .reusable = false}, SHIFT(707), - [1663] = {.count = 1, .reusable = false}, SHIFT(708), - [1665] = {.count = 1, .reusable = true}, SHIFT(709), - [1667] = {.count = 1, .reusable = false}, SHIFT(710), - [1669] = {.count = 1, .reusable = true}, SHIFT(710), - [1671] = {.count = 1, .reusable = false}, SHIFT(711), - [1673] = {.count = 1, .reusable = false}, SHIFT(712), - [1675] = {.count = 1, .reusable = false}, SHIFT(714), - [1677] = {.count = 1, .reusable = true}, SHIFT(717), - [1679] = {.count = 1, .reusable = false}, SHIFT(717), - [1681] = {.count = 1, .reusable = true}, SHIFT(718), - [1683] = {.count = 1, .reusable = true}, SHIFT(719), - [1685] = {.count = 1, .reusable = true}, SHIFT(720), - [1687] = {.count = 1, .reusable = false}, SHIFT(720), - [1689] = {.count = 1, .reusable = true}, SHIFT(721), - [1691] = {.count = 1, .reusable = true}, SHIFT(722), - [1693] = {.count = 1, .reusable = true}, SHIFT(723), - [1695] = {.count = 1, .reusable = true}, SHIFT(724), - [1697] = {.count = 1, .reusable = true}, SHIFT(725), - [1699] = {.count = 1, .reusable = true}, SHIFT(726), - [1701] = {.count = 1, .reusable = true}, SHIFT(728), - [1703] = {.count = 1, .reusable = false}, SHIFT(728), - [1705] = {.count = 1, .reusable = false}, SHIFT(727), - [1707] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), - [1709] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), - [1711] = {.count = 1, .reusable = true}, SHIFT(729), - [1713] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), - [1715] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), - [1717] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), - [1719] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), - [1721] = {.count = 1, .reusable = true}, SHIFT(730), - [1723] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), - [1725] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), - [1727] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), - [1729] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), - [1731] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), - [1733] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), - [1735] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), - [1737] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), - [1739] = {.count = 1, .reusable = true}, SHIFT(732), - [1741] = {.count = 1, .reusable = false}, SHIFT(733), - [1743] = {.count = 1, .reusable = true}, SHIFT(735), - [1745] = {.count = 1, .reusable = true}, SHIFT(736), - [1747] = {.count = 1, .reusable = false}, SHIFT(736), - [1749] = {.count = 1, .reusable = true}, SHIFT(737), - [1751] = {.count = 1, .reusable = false}, SHIFT(737), - [1753] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), - [1755] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), - [1757] = {.count = 1, .reusable = true}, SHIFT(739), - [1759] = {.count = 1, .reusable = false}, SHIFT(739), - [1761] = {.count = 1, .reusable = true}, SHIFT(740), - [1763] = {.count = 1, .reusable = false}, SHIFT(740), - [1765] = {.count = 1, .reusable = true}, SHIFT(741), - [1767] = {.count = 1, .reusable = false}, SHIFT(741), - [1769] = {.count = 1, .reusable = true}, SHIFT(742), - [1771] = {.count = 1, .reusable = false}, SHIFT(742), - [1773] = {.count = 1, .reusable = true}, SHIFT(743), - [1775] = {.count = 1, .reusable = false}, SHIFT(743), - [1777] = {.count = 1, .reusable = true}, SHIFT(744), - [1779] = {.count = 1, .reusable = false}, SHIFT(744), - [1781] = {.count = 1, .reusable = true}, SHIFT(745), - [1783] = {.count = 1, .reusable = false}, SHIFT(745), - [1785] = {.count = 1, .reusable = true}, SHIFT(746), - [1787] = {.count = 1, .reusable = false}, SHIFT(746), - [1789] = {.count = 1, .reusable = true}, SHIFT(747), - [1791] = {.count = 1, .reusable = false}, SHIFT(747), - [1793] = {.count = 1, .reusable = true}, SHIFT(748), - [1795] = {.count = 1, .reusable = false}, SHIFT(748), - [1797] = {.count = 1, .reusable = true}, SHIFT(749), - [1799] = {.count = 1, .reusable = false}, SHIFT(749), - [1801] = {.count = 1, .reusable = true}, SHIFT(750), - [1803] = {.count = 1, .reusable = false}, SHIFT(750), - [1805] = {.count = 1, .reusable = true}, SHIFT(751), - [1807] = {.count = 1, .reusable = false}, SHIFT(751), - [1809] = {.count = 1, .reusable = true}, SHIFT(752), - [1811] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), - [1813] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), - [1815] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), - [1817] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), - [1819] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [1821] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [1823] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(230), - [1826] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(3), - [1829] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(231), - [1832] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(232), - [1835] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(233), - [1838] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(234), - [1841] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(7), - [1844] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(235), - [1847] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(8), - [1850] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(10), - [1853] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(127), - [1856] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), - [1858] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(237), - [1861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(11), - [1864] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(21), - [1867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(18), - [1870] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(12), - [1873] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(13), - [1876] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(14), - [1879] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(238), - [1882] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(239), - [1885] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(240), - [1888] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(241), - [1891] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(242), - [1894] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(243), - [1897] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(244), - [1900] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(245), - [1903] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(246), - [1906] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(247), - [1909] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(248), - [1912] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(249), - [1915] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(250), - [1918] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(251), - [1921] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(251), - [1924] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(252), - [1927] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(258), - [1930] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(253), - [1933] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(22), - [1936] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(258), - [1939] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(254), - [1942] = {.count = 1, .reusable = true}, SHIFT(754), - [1944] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), - [1946] = {.count = 1, .reusable = true}, SHIFT(756), - [1948] = {.count = 1, .reusable = true}, SHIFT(758), - [1950] = {.count = 1, .reusable = false}, SHIFT(758), - [1952] = {.count = 1, .reusable = true}, SHIFT(759), - [1954] = {.count = 1, .reusable = false}, SHIFT(759), - [1956] = {.count = 1, .reusable = true}, SHIFT(760), - [1958] = {.count = 1, .reusable = false}, SHIFT(760), - [1960] = {.count = 1, .reusable = true}, SHIFT(761), - [1962] = {.count = 1, .reusable = false}, SHIFT(761), - [1964] = {.count = 1, .reusable = true}, SHIFT(762), - [1966] = {.count = 1, .reusable = false}, SHIFT(762), - [1968] = {.count = 1, .reusable = true}, SHIFT(763), - [1970] = {.count = 1, .reusable = false}, SHIFT(763), - [1972] = {.count = 1, .reusable = true}, SHIFT(764), - [1974] = {.count = 1, .reusable = false}, SHIFT(764), - [1976] = {.count = 1, .reusable = true}, SHIFT(765), - [1978] = {.count = 1, .reusable = false}, SHIFT(765), - [1980] = {.count = 1, .reusable = true}, SHIFT(766), - [1982] = {.count = 1, .reusable = false}, SHIFT(766), - [1984] = {.count = 1, .reusable = true}, SHIFT(767), - [1986] = {.count = 1, .reusable = false}, SHIFT(767), - [1988] = {.count = 1, .reusable = true}, SHIFT(768), - [1990] = {.count = 1, .reusable = false}, SHIFT(768), - [1992] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(499), - [1995] = {.count = 1, .reusable = true}, SHIFT(771), - [1997] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), - [1999] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), - [2001] = {.count = 1, .reusable = true}, SHIFT(772), - [2003] = {.count = 1, .reusable = false}, SHIFT(772), - [2005] = {.count = 1, .reusable = true}, SHIFT(773), - [2007] = {.count = 1, .reusable = true}, SHIFT(774), - [2009] = {.count = 1, .reusable = true}, SHIFT(776), - [2011] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [2013] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), - [2015] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(282), - [2018] = {.count = 1, .reusable = true}, SHIFT(778), - [2020] = {.count = 1, .reusable = true}, SHIFT(779), - [2022] = {.count = 1, .reusable = true}, SHIFT(780), - [2024] = {.count = 1, .reusable = true}, SHIFT(781), - [2026] = {.count = 1, .reusable = true}, SHIFT(782), - [2028] = {.count = 1, .reusable = false}, SHIFT(783), - [2030] = {.count = 1, .reusable = false}, SHIFT(784), - [2032] = {.count = 1, .reusable = false}, SHIFT(785), - [2034] = {.count = 1, .reusable = false}, SHIFT(786), - [2036] = {.count = 1, .reusable = true}, SHIFT(787), - [2038] = {.count = 1, .reusable = false}, SHIFT(787), - [2040] = {.count = 1, .reusable = true}, SHIFT(789), - [2042] = {.count = 1, .reusable = false}, SHIFT(789), - [2044] = {.count = 1, .reusable = true}, SHIFT(791), - [2046] = {.count = 1, .reusable = false}, SHIFT(791), - [2048] = {.count = 1, .reusable = true}, SHIFT(793), - [2050] = {.count = 1, .reusable = true}, SHIFT(794), - [2052] = {.count = 1, .reusable = true}, SHIFT(796), - [2054] = {.count = 1, .reusable = true}, SHIFT(798), - [2056] = {.count = 1, .reusable = true}, SHIFT(800), - [2058] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .alias_sequence_id = 14), - [2060] = {.count = 1, .reusable = true}, SHIFT(801), - [2062] = {.count = 1, .reusable = true}, SHIFT(802), - [2064] = {.count = 1, .reusable = true}, SHIFT(803), - [2066] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), - [2068] = {.count = 1, .reusable = true}, SHIFT(804), - [2070] = {.count = 1, .reusable = true}, SHIFT(805), - [2072] = {.count = 1, .reusable = true}, SHIFT(807), - [2074] = {.count = 1, .reusable = false}, SHIFT(807), - [2076] = {.count = 1, .reusable = true}, SHIFT(808), - [2078] = {.count = 1, .reusable = false}, SHIFT(808), - [2080] = {.count = 1, .reusable = true}, SHIFT(809), - [2082] = {.count = 1, .reusable = false}, SHIFT(809), - [2084] = {.count = 1, .reusable = true}, SHIFT(810), - [2086] = {.count = 1, .reusable = false}, SHIFT(810), - [2088] = {.count = 1, .reusable = true}, SHIFT(811), - [2090] = {.count = 1, .reusable = false}, SHIFT(811), - [2092] = {.count = 1, .reusable = true}, SHIFT(812), - [2094] = {.count = 1, .reusable = false}, SHIFT(812), - [2096] = {.count = 1, .reusable = true}, SHIFT(813), - [2098] = {.count = 1, .reusable = false}, SHIFT(813), - [2100] = {.count = 1, .reusable = true}, SHIFT(814), - [2102] = {.count = 1, .reusable = false}, SHIFT(814), - [2104] = {.count = 1, .reusable = true}, SHIFT(815), - [2106] = {.count = 1, .reusable = false}, SHIFT(815), - [2108] = {.count = 1, .reusable = true}, SHIFT(816), - [2110] = {.count = 1, .reusable = false}, SHIFT(816), - [2112] = {.count = 1, .reusable = true}, SHIFT(817), - [2114] = {.count = 1, .reusable = false}, SHIFT(817), - [2116] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), - [2118] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), - [2120] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, .alias_sequence_id = 6), - [2122] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2, .alias_sequence_id = 14), - [2124] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 22), - [2126] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 22), - [2128] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), - [2130] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), - [2132] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 15), - [2134] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 15), - [2136] = {.count = 1, .reusable = true}, SHIFT(823), - [2138] = {.count = 1, .reusable = true}, SHIFT(824), - [2140] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), - [2142] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), - [2144] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), - [2146] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), - [2148] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 16), - [2150] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 16), - [2152] = {.count = 1, .reusable = true}, SHIFT(825), - [2154] = {.count = 1, .reusable = true}, SHIFT(826), - [2156] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 26), - [2158] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 26), - [2160] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 27), - [2162] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 27), - [2164] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 17), - [2166] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 17), - [2168] = {.count = 1, .reusable = true}, SHIFT(827), - [2170] = {.count = 1, .reusable = true}, SHIFT(828), - [2172] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3), - [2174] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3), - [2176] = {.count = 1, .reusable = true}, SHIFT(829), - [2178] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), - [2180] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), - [2182] = {.count = 1, .reusable = true}, SHIFT(831), - [2184] = {.count = 1, .reusable = false}, SHIFT(831), - [2186] = {.count = 1, .reusable = true}, SHIFT(832), - [2188] = {.count = 1, .reusable = false}, SHIFT(832), - [2190] = {.count = 1, .reusable = true}, SHIFT(833), - [2192] = {.count = 1, .reusable = false}, SHIFT(833), - [2194] = {.count = 1, .reusable = true}, SHIFT(834), - [2196] = {.count = 1, .reusable = false}, SHIFT(834), - [2198] = {.count = 1, .reusable = true}, SHIFT(835), - [2200] = {.count = 1, .reusable = false}, SHIFT(835), - [2202] = {.count = 1, .reusable = true}, SHIFT(836), - [2204] = {.count = 1, .reusable = false}, SHIFT(836), - [2206] = {.count = 1, .reusable = true}, SHIFT(837), - [2208] = {.count = 1, .reusable = false}, SHIFT(837), - [2210] = {.count = 1, .reusable = true}, SHIFT(838), - [2212] = {.count = 1, .reusable = false}, SHIFT(838), - [2214] = {.count = 1, .reusable = true}, SHIFT(839), - [2216] = {.count = 1, .reusable = false}, SHIFT(839), - [2218] = {.count = 1, .reusable = true}, SHIFT(840), - [2220] = {.count = 1, .reusable = false}, SHIFT(840), - [2222] = {.count = 1, .reusable = true}, SHIFT(841), - [2224] = {.count = 1, .reusable = false}, SHIFT(841), - [2226] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), - [2228] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), - [2230] = {.count = 1, .reusable = true}, SHIFT(843), - [2232] = {.count = 1, .reusable = true}, SHIFT(844), - [2234] = {.count = 1, .reusable = false}, SHIFT(844), - [2236] = {.count = 1, .reusable = true}, SHIFT(845), - [2238] = {.count = 1, .reusable = true}, SHIFT(846), - [2240] = {.count = 1, .reusable = false}, SHIFT(846), - [2242] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(379), - [2245] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), - [2247] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3), - [2249] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(11), - [2252] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), - [2254] = {.count = 1, .reusable = true}, SHIFT(847), - [2256] = {.count = 1, .reusable = true}, SHIFT(848), - [2258] = {.count = 1, .reusable = false}, SHIFT(848), - [2260] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [2262] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4, .dynamic_precedence = 1), - [2264] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(396), - [2267] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(42), - [2271] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [2274] = {.count = 1, .reusable = false}, SHIFT(851), - [2276] = {.count = 1, .reusable = true}, SHIFT(852), - [2278] = {.count = 1, .reusable = true}, SHIFT(854), - [2280] = {.count = 1, .reusable = false}, SHIFT(854), - [2282] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [2284] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [2286] = {.count = 1, .reusable = true}, SHIFT(855), - [2288] = {.count = 1, .reusable = false}, SHIFT(855), - [2290] = {.count = 1, .reusable = true}, SHIFT(856), - [2292] = {.count = 1, .reusable = false}, SHIFT(856), - [2294] = {.count = 1, .reusable = true}, SHIFT(857), - [2296] = {.count = 1, .reusable = false}, SHIFT(857), - [2298] = {.count = 1, .reusable = true}, SHIFT(858), - [2300] = {.count = 1, .reusable = false}, SHIFT(858), - [2302] = {.count = 1, .reusable = true}, SHIFT(859), - [2304] = {.count = 1, .reusable = false}, SHIFT(859), - [2306] = {.count = 1, .reusable = true}, SHIFT(860), - [2308] = {.count = 1, .reusable = false}, SHIFT(860), - [2310] = {.count = 1, .reusable = true}, SHIFT(861), - [2312] = {.count = 1, .reusable = false}, SHIFT(861), - [2314] = {.count = 1, .reusable = true}, SHIFT(862), - [2316] = {.count = 1, .reusable = false}, SHIFT(862), - [2318] = {.count = 1, .reusable = true}, SHIFT(863), - [2320] = {.count = 1, .reusable = false}, SHIFT(863), - [2322] = {.count = 1, .reusable = true}, SHIFT(864), - [2324] = {.count = 1, .reusable = false}, SHIFT(864), - [2326] = {.count = 1, .reusable = true}, SHIFT(865), - [2328] = {.count = 1, .reusable = false}, SHIFT(865), - [2330] = {.count = 1, .reusable = true}, SHIFT(866), - [2332] = {.count = 1, .reusable = false}, SHIFT(866), - [2334] = {.count = 1, .reusable = false}, SHIFT(869), - [2336] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 5), - [2338] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 5), - [2340] = {.count = 1, .reusable = true}, SHIFT(870), - [2342] = {.count = 1, .reusable = true}, SHIFT(871), - [2344] = {.count = 1, .reusable = false}, SHIFT(872), - [2346] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 1, .alias_sequence_id = 6), - [2348] = {.count = 1, .reusable = false}, SHIFT(873), - [2350] = {.count = 1, .reusable = false}, SHIFT(874), - [2352] = {.count = 1, .reusable = true}, SHIFT(875), - [2354] = {.count = 1, .reusable = false}, SHIFT(876), - [2356] = {.count = 1, .reusable = false}, SHIFT(877), - [2358] = {.count = 1, .reusable = false}, SHIFT(878), - [2360] = {.count = 1, .reusable = false}, SHIFT(879), - [2362] = {.count = 1, .reusable = false}, SHIFT(880), - [2364] = {.count = 1, .reusable = false}, SHIFT(881), - [2366] = {.count = 1, .reusable = false}, SHIFT(882), - [2368] = {.count = 1, .reusable = false}, SHIFT(883), - [2370] = {.count = 1, .reusable = false}, SHIFT(884), - [2372] = {.count = 1, .reusable = false}, SHIFT(885), - [2374] = {.count = 1, .reusable = false}, SHIFT(886), - [2376] = {.count = 1, .reusable = true}, SHIFT(891), - [2378] = {.count = 1, .reusable = false}, SHIFT(891), - [2380] = {.count = 1, .reusable = false}, SHIFT(887), - [2382] = {.count = 1, .reusable = false}, SHIFT(894), - [2384] = {.count = 1, .reusable = true}, SHIFT(895), - [2386] = {.count = 1, .reusable = true}, SHIFT(896), - [2388] = {.count = 1, .reusable = true}, SHIFT(897), - [2390] = {.count = 1, .reusable = false}, SHIFT(897), - [2392] = {.count = 1, .reusable = true}, SHIFT(898), - [2394] = {.count = 1, .reusable = true}, SHIFT(899), - [2396] = {.count = 1, .reusable = true}, SHIFT(901), - [2398] = {.count = 1, .reusable = true}, SHIFT(902), - [2400] = {.count = 1, .reusable = true}, SHIFT(903), - [2402] = {.count = 1, .reusable = false}, SHIFT(903), - [2404] = {.count = 1, .reusable = true}, SHIFT(904), - [2406] = {.count = 1, .reusable = true}, SHIFT(905), - [2408] = {.count = 1, .reusable = true}, SHIFT(906), - [2410] = {.count = 1, .reusable = true}, SHIFT(907), - [2412] = {.count = 1, .reusable = true}, SHIFT(908), - [2414] = {.count = 1, .reusable = true}, SHIFT(909), - [2416] = {.count = 1, .reusable = true}, SHIFT(910), - [2418] = {.count = 1, .reusable = true}, SHIFT(911), - [2420] = {.count = 1, .reusable = false}, SHIFT(912), - [2422] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 7), - [2424] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 7), - [2426] = {.count = 1, .reusable = true}, SHIFT(916), - [2428] = {.count = 1, .reusable = true}, SHIFT(917), - [2430] = {.count = 1, .reusable = false}, SHIFT(918), - [2432] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 8), - [2434] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 8), - [2436] = {.count = 1, .reusable = true}, SHIFT(921), - [2438] = {.count = 1, .reusable = true}, SHIFT(922), - [2440] = {.count = 1, .reusable = false}, SHIFT(923), - [2442] = {.count = 1, .reusable = true}, SHIFT(927), - [2444] = {.count = 1, .reusable = true}, SHIFT(928), - [2446] = {.count = 1, .reusable = false}, SHIFT(928), - [2448] = {.count = 1, .reusable = true}, SHIFT(929), - [2450] = {.count = 1, .reusable = false}, SHIFT(930), - [2452] = {.count = 1, .reusable = false}, SHIFT(931), - [2454] = {.count = 1, .reusable = true}, SHIFT(932), - [2456] = {.count = 1, .reusable = true}, SHIFT(931), - [2458] = {.count = 1, .reusable = false}, SHIFT(933), - [2460] = {.count = 1, .reusable = true}, SHIFT(934), - [2462] = {.count = 1, .reusable = true}, SHIFT(935), - [2464] = {.count = 1, .reusable = false}, SHIFT(936), - [2466] = {.count = 1, .reusable = false}, SHIFT(937), - [2468] = {.count = 1, .reusable = true}, SHIFT(938), - [2470] = {.count = 1, .reusable = false}, SHIFT(939), - [2472] = {.count = 1, .reusable = true}, SHIFT(939), - [2474] = {.count = 1, .reusable = false}, SHIFT(940), - [2476] = {.count = 1, .reusable = false}, SHIFT(941), - [2478] = {.count = 1, .reusable = true}, SHIFT(943), - [2480] = {.count = 1, .reusable = true}, SHIFT(944), - [2482] = {.count = 1, .reusable = true}, SHIFT(946), - [2484] = {.count = 1, .reusable = false}, SHIFT(946), - [2486] = {.count = 1, .reusable = true}, SHIFT(948), - [2488] = {.count = 1, .reusable = false}, SHIFT(948), - [2490] = {.count = 1, .reusable = true}, SHIFT(949), - [2492] = {.count = 1, .reusable = false}, SHIFT(949), - [2494] = {.count = 1, .reusable = true}, SHIFT(950), - [2496] = {.count = 1, .reusable = false}, SHIFT(950), - [2498] = {.count = 1, .reusable = true}, SHIFT(951), - [2500] = {.count = 1, .reusable = false}, SHIFT(951), - [2502] = {.count = 1, .reusable = true}, SHIFT(952), - [2504] = {.count = 1, .reusable = false}, SHIFT(952), - [2506] = {.count = 1, .reusable = true}, SHIFT(953), - [2508] = {.count = 1, .reusable = false}, SHIFT(953), - [2510] = {.count = 1, .reusable = true}, SHIFT(954), - [2512] = {.count = 1, .reusable = false}, SHIFT(954), - [2514] = {.count = 1, .reusable = true}, SHIFT(955), - [2516] = {.count = 1, .reusable = false}, SHIFT(955), - [2518] = {.count = 1, .reusable = true}, SHIFT(956), - [2520] = {.count = 1, .reusable = false}, SHIFT(956), - [2522] = {.count = 1, .reusable = true}, SHIFT(957), - [2524] = {.count = 1, .reusable = false}, SHIFT(957), - [2526] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), - [2528] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), - [2530] = {.count = 1, .reusable = true}, SHIFT(959), - [2532] = {.count = 1, .reusable = true}, SHIFT(960), - [2534] = {.count = 1, .reusable = false}, SHIFT(960), - [2536] = {.count = 1, .reusable = true}, SHIFT(961), - [2538] = {.count = 1, .reusable = false}, SHIFT(961), - [2540] = {.count = 1, .reusable = true}, SHIFT(962), - [2542] = {.count = 1, .reusable = false}, SHIFT(963), - [2544] = {.count = 1, .reusable = true}, SHIFT(964), - [2546] = {.count = 1, .reusable = false}, SHIFT(964), - [2548] = {.count = 1, .reusable = true}, SHIFT(965), - [2550] = {.count = 1, .reusable = true}, SHIFT(966), - [2552] = {.count = 1, .reusable = false}, SHIFT(966), - [2554] = {.count = 1, .reusable = true}, SHIFT(967), - [2556] = {.count = 1, .reusable = true}, SHIFT(968), - [2558] = {.count = 1, .reusable = true}, SHIFT(969), - [2560] = {.count = 1, .reusable = false}, SHIFT(969), - [2562] = {.count = 1, .reusable = true}, SHIFT(970), - [2564] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), - [2566] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), - [2568] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 28), - [2570] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 28), - [2572] = {.count = 1, .reusable = true}, SHIFT(971), - [2574] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), - [2576] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), - [2578] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 29), - [2580] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 29), - [2582] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), - [2584] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), - [2586] = {.count = 1, .reusable = true}, SHIFT(972), - [2588] = {.count = 1, .reusable = true}, SHIFT(973), - [2590] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), - [2592] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), - [2594] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), - [2596] = {.count = 1, .reusable = true}, SHIFT(975), - [2598] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), - [2600] = {.count = 1, .reusable = true}, SHIFT(976), - [2602] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), - [2604] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), - [2606] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), - [2608] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), - [2610] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), - [2612] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), - [2614] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), - [2616] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), - [2618] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), - [2620] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), - [2622] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 30), - [2624] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 30), - [2626] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2628] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2630] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(22), - [2633] = {.count = 1, .reusable = true}, SHIFT(977), - [2635] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), - [2637] = {.count = 1, .reusable = true}, SHIFT(978), - [2639] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), - [2641] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), - [2643] = {.count = 1, .reusable = true}, SHIFT(979), - [2645] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 31), - [2647] = {.count = 1, .reusable = true}, SHIFT(980), - [2649] = {.count = 1, .reusable = true}, SHIFT(981), - [2651] = {.count = 1, .reusable = false}, SHIFT(981), - [2653] = {.count = 1, .reusable = true}, SHIFT(983), - [2655] = {.count = 1, .reusable = true}, SHIFT(985), - [2657] = {.count = 1, .reusable = false}, SHIFT(985), - [2659] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(502), - [2662] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [2664] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(503), - [2667] = {.count = 1, .reusable = true}, SHIFT(987), - [2669] = {.count = 1, .reusable = true}, SHIFT(988), - [2671] = {.count = 1, .reusable = true}, SHIFT(989), - [2673] = {.count = 1, .reusable = true}, SHIFT(990), - [2675] = {.count = 1, .reusable = true}, SHIFT(991), - [2677] = {.count = 1, .reusable = true}, SHIFT(992), - [2679] = {.count = 1, .reusable = true}, SHIFT(993), - [2681] = {.count = 1, .reusable = true}, SHIFT(994), - [2683] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), - [2685] = {.count = 1, .reusable = true}, SHIFT(995), - [2687] = {.count = 1, .reusable = true}, SHIFT(996), - [2689] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 32), - [2691] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 33), - [2693] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 14), - [2695] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 34), - [2697] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 34), - [2699] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 35), - [2701] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 35), - [2703] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 36), - [2705] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 36), - [2707] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 37), - [2709] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 37), - [2711] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 38), - [2713] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 38), - [2715] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 39), - [2717] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 39), - [2719] = {.count = 1, .reusable = true}, SHIFT(999), - [2721] = {.count = 1, .reusable = true}, SHIFT(1000), - [2723] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), - [2725] = {.count = 1, .reusable = true}, SHIFT(1001), - [2727] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), - [2729] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), - [2731] = {.count = 1, .reusable = true}, SHIFT(1002), - [2733] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), - [2735] = {.count = 1, .reusable = true}, SHIFT(1003), - [2737] = {.count = 1, .reusable = true}, SHIFT(1005), - [2739] = {.count = 1, .reusable = true}, SHIFT(1006), - [2741] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), - [2743] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), - [2745] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), - [2747] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), - [2749] = {.count = 1, .reusable = false}, SHIFT(1007), - [2751] = {.count = 1, .reusable = false}, SHIFT(1011), - [2753] = {.count = 1, .reusable = false}, SHIFT(1015), - [2755] = {.count = 1, .reusable = false}, SHIFT(1019), - [2757] = {.count = 1, .reusable = true}, SHIFT(1020), - [2759] = {.count = 1, .reusable = true}, SHIFT(1021), - [2761] = {.count = 1, .reusable = true}, SHIFT(1022), - [2763] = {.count = 1, .reusable = true}, SHIFT(1023), - [2765] = {.count = 1, .reusable = true}, SHIFT(1024), - [2767] = {.count = 1, .reusable = false}, SHIFT(1024), - [2769] = {.count = 1, .reusable = true}, SHIFT(1025), - [2771] = {.count = 1, .reusable = true}, SHIFT(1026), - [2773] = {.count = 1, .reusable = true}, SHIFT(1028), - [2775] = {.count = 1, .reusable = true}, SHIFT(1029), - [2777] = {.count = 1, .reusable = true}, SHIFT(1030), - [2779] = {.count = 1, .reusable = false}, SHIFT(1030), - [2781] = {.count = 1, .reusable = true}, SHIFT(1031), - [2783] = {.count = 1, .reusable = true}, SHIFT(1032), - [2785] = {.count = 1, .reusable = true}, SHIFT(1033), - [2787] = {.count = 1, .reusable = true}, SHIFT(1034), - [2789] = {.count = 1, .reusable = true}, SHIFT(1035), - [2791] = {.count = 1, .reusable = true}, SHIFT(1036), - [2793] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 2, .alias_sequence_id = 6), - [2795] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 2, .alias_sequence_id = 14), - [2797] = {.count = 1, .reusable = true}, SHIFT(1041), - [2799] = {.count = 1, .reusable = false}, SHIFT(1041), - [2801] = {.count = 1, .reusable = true}, SHIFT(1042), - [2803] = {.count = 1, .reusable = false}, SHIFT(1042), - [2805] = {.count = 1, .reusable = true}, SHIFT(1043), - [2807] = {.count = 1, .reusable = false}, SHIFT(1044), - [2809] = {.count = 1, .reusable = true}, SHIFT(1047), - [2811] = {.count = 1, .reusable = false}, SHIFT(1047), - [2813] = {.count = 1, .reusable = true}, SHIFT(1048), - [2815] = {.count = 1, .reusable = true}, SHIFT(1049), - [2817] = {.count = 1, .reusable = true}, SHIFT(1050), - [2819] = {.count = 1, .reusable = false}, SHIFT(1050), - [2821] = {.count = 1, .reusable = true}, SHIFT(1051), - [2823] = {.count = 1, .reusable = true}, SHIFT(1052), - [2825] = {.count = 1, .reusable = false}, SHIFT(1053), - [2827] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 22), - [2829] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 22), - [2831] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), - [2833] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), - [2835] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 15), - [2837] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 15), - [2839] = {.count = 1, .reusable = true}, SHIFT(1055), - [2841] = {.count = 1, .reusable = true}, SHIFT(1056), - [2843] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(61), - [2846] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(62), - [2849] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(653), - [2852] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), - [2854] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(655), - [2857] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(656), - [2860] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(69), - [2863] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(659), - [2866] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(70), - [2869] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(324), - [2872] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(660), - [2875] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(661), - [2878] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(662), - [2881] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(663), - [2884] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(664), - [2887] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(665), - [2890] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(666), - [2893] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(667), - [2896] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(668), - [2899] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(669), - [2902] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(670), - [2905] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(677), - [2908] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(677), - [2911] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(671), - [2914] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), - [2916] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), - [2918] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), - [2920] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), - [2922] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 16), - [2924] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 16), - [2926] = {.count = 1, .reusable = true}, SHIFT(1057), - [2928] = {.count = 1, .reusable = true}, SHIFT(1058), - [2930] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 26), - [2932] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 26), - [2934] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 27), - [2936] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 27), - [2938] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 17), - [2940] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 17), - [2942] = {.count = 1, .reusable = true}, SHIFT(1059), - [2944] = {.count = 1, .reusable = true}, SHIFT(1060), - [2946] = {.count = 1, .reusable = true}, SHIFT(1061), - [2948] = {.count = 1, .reusable = false}, SHIFT(1063), - [2950] = {.count = 1, .reusable = false}, SHIFT(1064), - [2952] = {.count = 1, .reusable = false}, SHIFT(1065), - [2954] = {.count = 1, .reusable = false}, SHIFT(1066), - [2956] = {.count = 1, .reusable = false}, SHIFT(1067), - [2958] = {.count = 1, .reusable = false}, SHIFT(1068), - [2960] = {.count = 1, .reusable = false}, SHIFT(1069), - [2962] = {.count = 1, .reusable = true}, SHIFT(1071), - [2964] = {.count = 1, .reusable = false}, SHIFT(1071), - [2966] = {.count = 1, .reusable = true}, SHIFT(1072), - [2968] = {.count = 1, .reusable = false}, SHIFT(1072), - [2970] = {.count = 1, .reusable = true}, SHIFT(1073), - [2972] = {.count = 1, .reusable = false}, SHIFT(1073), - [2974] = {.count = 1, .reusable = true}, SHIFT(1074), - [2976] = {.count = 1, .reusable = false}, SHIFT(1074), - [2978] = {.count = 1, .reusable = true}, SHIFT(1075), - [2980] = {.count = 1, .reusable = false}, SHIFT(1075), - [2982] = {.count = 1, .reusable = true}, SHIFT(1076), - [2984] = {.count = 1, .reusable = false}, SHIFT(1076), - [2986] = {.count = 1, .reusable = true}, SHIFT(1077), - [2988] = {.count = 1, .reusable = false}, SHIFT(1077), - [2990] = {.count = 1, .reusable = true}, SHIFT(1078), - [2992] = {.count = 1, .reusable = false}, SHIFT(1078), - [2994] = {.count = 1, .reusable = true}, SHIFT(1079), - [2996] = {.count = 1, .reusable = false}, SHIFT(1079), - [2998] = {.count = 1, .reusable = true}, SHIFT(1080), - [3000] = {.count = 1, .reusable = false}, SHIFT(1080), - [3002] = {.count = 1, .reusable = true}, SHIFT(1081), - [3004] = {.count = 1, .reusable = false}, SHIFT(1081), - [3006] = {.count = 1, .reusable = true}, SHIFT(1084), - [3008] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), - [3010] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), - [3012] = {.count = 1, .reusable = true}, SHIFT(1085), - [3014] = {.count = 1, .reusable = true}, SHIFT(1087), - [3016] = {.count = 1, .reusable = true}, SHIFT(1088), - [3018] = {.count = 1, .reusable = true}, SHIFT(1089), - [3020] = {.count = 1, .reusable = true}, SHIFT(1090), - [3022] = {.count = 1, .reusable = true}, SHIFT(1091), - [3024] = {.count = 1, .reusable = false}, SHIFT(1091), - [3026] = {.count = 1, .reusable = true}, SHIFT(1092), - [3028] = {.count = 1, .reusable = true}, SHIFT(1093), - [3030] = {.count = 1, .reusable = false}, SHIFT(1093), - [3032] = {.count = 1, .reusable = true}, SHIFT(1094), - [3034] = {.count = 1, .reusable = true}, SHIFT(1095), - [3036] = {.count = 1, .reusable = false}, SHIFT(1095), - [3038] = {.count = 1, .reusable = true}, SHIFT(1096), - [3040] = {.count = 1, .reusable = true}, SHIFT(1097), - [3042] = {.count = 1, .reusable = false}, SHIFT(1097), - [3044] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), - [3046] = {.count = 1, .reusable = false}, SHIFT(237), - [3048] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), - [3050] = {.count = 1, .reusable = false}, SHIFT(249), - [3052] = {.count = 1, .reusable = true}, SHIFT(1098), - [3054] = {.count = 1, .reusable = false}, SHIFT(1098), - [3056] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), - [3058] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), - [3060] = {.count = 1, .reusable = true}, SHIFT(1099), - [3062] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), - [3064] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), - [3066] = {.count = 1, .reusable = true}, SHIFT(1101), - [3068] = {.count = 1, .reusable = false}, SHIFT(1101), - [3070] = {.count = 1, .reusable = false}, SHIFT(263), - [3072] = {.count = 1, .reusable = false}, SHIFT(265), - [3074] = {.count = 1, .reusable = true}, SHIFT(1102), - [3076] = {.count = 1, .reusable = false}, SHIFT(1102), - [3078] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), - [3080] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), - [3082] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), - [3084] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [3086] = {.count = 1, .reusable = true}, SHIFT(1103), - [3088] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1104), - [3091] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), - [3093] = {.count = 1, .reusable = false}, SHIFT(342), - [3095] = {.count = 1, .reusable = false}, SHIFT(343), - [3097] = {.count = 1, .reusable = true}, SHIFT(1105), - [3099] = {.count = 1, .reusable = false}, SHIFT(1105), - [3101] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 40), - [3103] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 41), - [3105] = {.count = 1, .reusable = false}, SHIFT(372), - [3107] = {.count = 1, .reusable = false}, SHIFT(373), - [3109] = {.count = 1, .reusable = true}, SHIFT(1106), - [3111] = {.count = 1, .reusable = false}, SHIFT(1106), - [3113] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), - [3115] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 6), - [3117] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 6), - [3119] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), - [3121] = {.count = 1, .reusable = false}, SHIFT(409), - [3123] = {.count = 1, .reusable = false}, SHIFT(410), - [3125] = {.count = 1, .reusable = true}, SHIFT(1107), - [3127] = {.count = 1, .reusable = false}, SHIFT(1107), - [3129] = {.count = 1, .reusable = true}, SHIFT(1108), - [3131] = {.count = 1, .reusable = true}, SHIFT(1109), - [3133] = {.count = 1, .reusable = false}, SHIFT(1110), - [3135] = {.count = 1, .reusable = true}, SHIFT(1113), - [3137] = {.count = 1, .reusable = true}, SHIFT(1114), - [3139] = {.count = 1, .reusable = false}, SHIFT(1115), - [3141] = {.count = 1, .reusable = true}, SHIFT(1118), - [3143] = {.count = 1, .reusable = true}, SHIFT(1119), - [3145] = {.count = 1, .reusable = false}, SHIFT(1120), - [3147] = {.count = 1, .reusable = false}, SHIFT(1123), - [3149] = {.count = 1, .reusable = false}, SHIFT(1127), - [3151] = {.count = 1, .reusable = false}, SHIFT(1131), - [3153] = {.count = 1, .reusable = true}, SHIFT(1135), - [3155] = {.count = 1, .reusable = false}, SHIFT(1135), - [3157] = {.count = 1, .reusable = true}, SHIFT(1136), - [3159] = {.count = 1, .reusable = false}, SHIFT(1136), - [3161] = {.count = 1, .reusable = true}, SHIFT(1137), - [3163] = {.count = 1, .reusable = false}, SHIFT(1138), - [3165] = {.count = 1, .reusable = true}, SHIFT(1141), - [3167] = {.count = 1, .reusable = false}, SHIFT(1141), - [3169] = {.count = 1, .reusable = true}, SHIFT(1142), - [3171] = {.count = 1, .reusable = true}, SHIFT(1143), - [3173] = {.count = 1, .reusable = true}, SHIFT(1144), - [3175] = {.count = 1, .reusable = false}, SHIFT(1144), - [3177] = {.count = 1, .reusable = true}, SHIFT(1145), - [3179] = {.count = 1, .reusable = true}, SHIFT(1146), - [3181] = {.count = 1, .reusable = false}, SHIFT(1147), - [3183] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(148), - [3186] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(149), - [3189] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(872), - [3192] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(873), - [3195] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(874), - [3198] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(153), - [3201] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(875), - [3204] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(154), - [3207] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(541), - [3210] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(876), - [3213] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(877), - [3216] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(878), - [3219] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(879), - [3222] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(880), - [3225] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(881), - [3228] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(882), - [3231] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(883), - [3234] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(884), - [3237] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(885), - [3240] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(886), - [3243] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(891), - [3246] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(891), - [3249] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(887), - [3252] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 32), - [3254] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 33), - [3256] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 14), - [3258] = {.count = 1, .reusable = true}, SHIFT(1151), - [3260] = {.count = 1, .reusable = true}, SHIFT(1152), - [3262] = {.count = 1, .reusable = true}, SHIFT(1154), - [3264] = {.count = 1, .reusable = true}, SHIFT(1155), - [3266] = {.count = 1, .reusable = true}, SHIFT(1156), - [3268] = {.count = 1, .reusable = true}, SHIFT(1157), - [3270] = {.count = 1, .reusable = false}, SHIFT(1157), - [3272] = {.count = 1, .reusable = true}, SHIFT(1158), - [3274] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 34), - [3276] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 34), - [3278] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 35), - [3280] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 35), - [3282] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 36), - [3284] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 36), - [3286] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 37), - [3288] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 37), - [3290] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 38), - [3292] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 38), - [3294] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 39), - [3296] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 39), - [3298] = {.count = 1, .reusable = true}, SHIFT(1159), - [3300] = {.count = 1, .reusable = true}, SHIFT(1160), - [3302] = {.count = 1, .reusable = true}, SHIFT(1161), - [3304] = {.count = 1, .reusable = true}, SHIFT(1162), - [3306] = {.count = 1, .reusable = false}, SHIFT(1162), - [3308] = {.count = 1, .reusable = true}, SHIFT(1163), - [3310] = {.count = 1, .reusable = true}, SHIFT(1164), - [3312] = {.count = 1, .reusable = true}, SHIFT(1165), - [3314] = {.count = 1, .reusable = true}, SHIFT(1166), - [3316] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [3318] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [3320] = {.count = 1, .reusable = false}, SHIFT(1167), - [3322] = {.count = 1, .reusable = true}, SHIFT(1168), - [3324] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 5), - [3326] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 5), - [3328] = {.count = 1, .reusable = false}, SHIFT(426), - [3330] = {.count = 1, .reusable = false}, SHIFT(427), - [3332] = {.count = 1, .reusable = true}, SHIFT(1169), - [3334] = {.count = 1, .reusable = false}, SHIFT(1169), - [3336] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), - [3338] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), - [3340] = {.count = 1, .reusable = false}, SHIFT(1170), - [3342] = {.count = 1, .reusable = false}, SHIFT(1171), - [3344] = {.count = 1, .reusable = false}, SHIFT(1172), - [3346] = {.count = 1, .reusable = false}, SHIFT(1173), - [3348] = {.count = 1, .reusable = false}, SHIFT(1174), - [3350] = {.count = 1, .reusable = false}, SHIFT(1175), - [3352] = {.count = 1, .reusable = false}, SHIFT(1176), - [3354] = {.count = 1, .reusable = true}, SHIFT(1178), - [3356] = {.count = 1, .reusable = true}, SHIFT(1179), - [3358] = {.count = 1, .reusable = false}, SHIFT(1179), - [3360] = {.count = 1, .reusable = true}, SHIFT(1180), - [3362] = {.count = 1, .reusable = true}, SHIFT(1181), - [3364] = {.count = 1, .reusable = false}, SHIFT(1181), - [3366] = {.count = 1, .reusable = true}, SHIFT(1182), - [3368] = {.count = 1, .reusable = true}, SHIFT(1184), - [3370] = {.count = 1, .reusable = true}, SHIFT(1186), - [3372] = {.count = 1, .reusable = false}, SHIFT(1186), - [3374] = {.count = 1, .reusable = true}, SHIFT(1187), - [3376] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3378] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), - [3380] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), - [3382] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(972), - [3385] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), - [3387] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), - [3389] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), - [3391] = {.count = 1, .reusable = true}, SHIFT(1188), - [3393] = {.count = 1, .reusable = true}, SHIFT(1189), - [3395] = {.count = 1, .reusable = true}, SHIFT(1190), - [3397] = {.count = 1, .reusable = true}, SHIFT(1191), - [3399] = {.count = 1, .reusable = true}, SHIFT(1192), - [3401] = {.count = 1, .reusable = true}, SHIFT(1193), - [3403] = {.count = 1, .reusable = true}, SHIFT(1194), - [3405] = {.count = 1, .reusable = true}, SHIFT(1195), - [3407] = {.count = 1, .reusable = false}, SHIFT(1196), - [3409] = {.count = 1, .reusable = true}, SHIFT(1199), - [3411] = {.count = 1, .reusable = true}, SHIFT(1200), - [3413] = {.count = 1, .reusable = false}, SHIFT(1201), - [3415] = {.count = 1, .reusable = true}, SHIFT(1204), - [3417] = {.count = 1, .reusable = true}, SHIFT(1205), - [3419] = {.count = 1, .reusable = false}, SHIFT(1206), - [3421] = {.count = 1, .reusable = true}, SHIFT(1209), - [3423] = {.count = 1, .reusable = true}, SHIFT(1210), - [3425] = {.count = 1, .reusable = true}, SHIFT(1212), - [3427] = {.count = 1, .reusable = true}, SHIFT(1213), - [3429] = {.count = 1, .reusable = true}, SHIFT(1214), - [3431] = {.count = 1, .reusable = true}, SHIFT(1215), - [3433] = {.count = 1, .reusable = false}, SHIFT(1215), - [3435] = {.count = 1, .reusable = true}, SHIFT(1216), - [3437] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 40), - [3439] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 41), - [3441] = {.count = 1, .reusable = false}, SHIFT(1217), - [3443] = {.count = 1, .reusable = false}, SHIFT(1218), - [3445] = {.count = 1, .reusable = false}, SHIFT(1219), - [3447] = {.count = 1, .reusable = false}, SHIFT(1220), - [3449] = {.count = 1, .reusable = false}, SHIFT(1221), - [3451] = {.count = 1, .reusable = false}, SHIFT(1222), - [3453] = {.count = 1, .reusable = false}, SHIFT(1223), - [3455] = {.count = 1, .reusable = true}, SHIFT(1227), - [3457] = {.count = 1, .reusable = false}, SHIFT(1227), - [3459] = {.count = 1, .reusable = true}, SHIFT(1228), - [3461] = {.count = 1, .reusable = true}, SHIFT(1229), - [3463] = {.count = 1, .reusable = false}, SHIFT(1229), - [3465] = {.count = 1, .reusable = true}, SHIFT(1230), - [3467] = {.count = 1, .reusable = true}, SHIFT(1231), - [3469] = {.count = 1, .reusable = false}, SHIFT(1231), - [3471] = {.count = 1, .reusable = false}, SHIFT(689), - [3473] = {.count = 1, .reusable = false}, SHIFT(690), - [3475] = {.count = 1, .reusable = true}, SHIFT(1232), - [3477] = {.count = 1, .reusable = false}, SHIFT(1232), - [3479] = {.count = 1, .reusable = true}, SHIFT(1233), - [3481] = {.count = 1, .reusable = false}, SHIFT(1233), - [3483] = {.count = 1, .reusable = true}, SHIFT(1234), - [3485] = {.count = 1, .reusable = false}, SHIFT(1235), - [3487] = {.count = 1, .reusable = true}, SHIFT(1236), - [3489] = {.count = 1, .reusable = false}, SHIFT(1236), - [3491] = {.count = 1, .reusable = true}, SHIFT(1237), - [3493] = {.count = 1, .reusable = true}, SHIFT(1238), - [3495] = {.count = 1, .reusable = false}, SHIFT(1238), - [3497] = {.count = 1, .reusable = true}, SHIFT(1240), - [3499] = {.count = 1, .reusable = false}, SHIFT(1240), - [3501] = {.count = 1, .reusable = true}, SHIFT(1241), - [3503] = {.count = 1, .reusable = true}, SHIFT(1242), - [3505] = {.count = 1, .reusable = true}, SHIFT(1243), - [3507] = {.count = 1, .reusable = false}, SHIFT(1243), - [3509] = {.count = 1, .reusable = true}, SHIFT(1244), - [3511] = {.count = 1, .reusable = true}, SHIFT(1245), - [3513] = {.count = 1, .reusable = true}, SHIFT(1246), - [3515] = {.count = 1, .reusable = true}, SHIFT(1247), - [3517] = {.count = 1, .reusable = true}, SHIFT(1248), - [3519] = {.count = 1, .reusable = true}, SHIFT(1249), - [3521] = {.count = 1, .reusable = true}, SHIFT(1251), - [3523] = {.count = 1, .reusable = false}, SHIFT(1251), - [3525] = {.count = 1, .reusable = true}, SHIFT(1252), - [3527] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 6), - [3529] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 6), - [3531] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [3533] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [3535] = {.count = 1, .reusable = true}, SHIFT(1254), - [3537] = {.count = 1, .reusable = true}, SHIFT(1256), - [3539] = {.count = 1, .reusable = false}, SHIFT(1256), - [3541] = {.count = 1, .reusable = true}, SHIFT(1257), - [3543] = {.count = 1, .reusable = true}, SHIFT(1258), - [3545] = {.count = 1, .reusable = true}, SHIFT(1259), - [3547] = {.count = 1, .reusable = true}, SHIFT(1260), - [3549] = {.count = 1, .reusable = true}, SHIFT(1261), - [3551] = {.count = 1, .reusable = true}, SHIFT(1262), - [3553] = {.count = 1, .reusable = false}, SHIFT(1263), - [3555] = {.count = 1, .reusable = false}, SHIFT(1264), - [3557] = {.count = 1, .reusable = false}, SHIFT(1265), - [3559] = {.count = 1, .reusable = false}, SHIFT(1266), - [3561] = {.count = 1, .reusable = false}, SHIFT(1267), - [3563] = {.count = 1, .reusable = false}, SHIFT(1268), - [3565] = {.count = 1, .reusable = false}, SHIFT(1269), - [3567] = {.count = 1, .reusable = true}, SHIFT(1273), - [3569] = {.count = 1, .reusable = false}, SHIFT(1273), - [3571] = {.count = 1, .reusable = true}, SHIFT(1274), - [3573] = {.count = 1, .reusable = true}, SHIFT(1275), - [3575] = {.count = 1, .reusable = false}, SHIFT(1275), - [3577] = {.count = 1, .reusable = true}, SHIFT(1276), - [3579] = {.count = 1, .reusable = true}, SHIFT(1277), - [3581] = {.count = 1, .reusable = false}, SHIFT(1277), - [3583] = {.count = 1, .reusable = true}, SHIFT(1278), - [3585] = {.count = 1, .reusable = true}, SHIFT(1279), - [3587] = {.count = 1, .reusable = true}, SHIFT(1280), - [3589] = {.count = 1, .reusable = false}, SHIFT(1280), - [3591] = {.count = 1, .reusable = true}, SHIFT(1281), - [3593] = {.count = 1, .reusable = true}, SHIFT(1282), - [3595] = {.count = 1, .reusable = true}, SHIFT(1283), - [3597] = {.count = 1, .reusable = true}, SHIFT(1284), - [3599] = {.count = 1, .reusable = false}, SHIFT(1285), - [3601] = {.count = 1, .reusable = true}, SHIFT(1286), - [3603] = {.count = 1, .reusable = true}, SHIFT(1288), - [3605] = {.count = 1, .reusable = true}, SHIFT(1290), - [3607] = {.count = 1, .reusable = false}, SHIFT(1290), - [3609] = {.count = 1, .reusable = true}, SHIFT(1291), - [3611] = {.count = 1, .reusable = true}, SHIFT(1292), - [3613] = {.count = 1, .reusable = true}, SHIFT(1293), - [3615] = {.count = 1, .reusable = true}, SHIFT(1294), - [3617] = {.count = 1, .reusable = true}, SHIFT(1295), - [3619] = {.count = 1, .reusable = true}, SHIFT(1296), - [3621] = {.count = 1, .reusable = false}, SHIFT(1296), - [3623] = {.count = 1, .reusable = true}, SHIFT(1297), - [3625] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), - [3627] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), - [3629] = {.count = 1, .reusable = true}, SHIFT(1298), - [3631] = {.count = 1, .reusable = false}, SHIFT(1298), - [3633] = {.count = 1, .reusable = true}, SHIFT(1299), - [3635] = {.count = 1, .reusable = false}, SHIFT(1299), - [3637] = {.count = 1, .reusable = true}, SHIFT(1300), - [3639] = {.count = 1, .reusable = false}, SHIFT(1301), - [3641] = {.count = 1, .reusable = true}, SHIFT(1302), - [3643] = {.count = 1, .reusable = false}, SHIFT(1302), - [3645] = {.count = 1, .reusable = true}, SHIFT(1303), - [3647] = {.count = 1, .reusable = true}, SHIFT(1304), - [3649] = {.count = 1, .reusable = false}, SHIFT(1304), - [3651] = {.count = 1, .reusable = true}, SHIFT(1305), - [3653] = {.count = 1, .reusable = true}, SHIFT(1307), - [3655] = {.count = 1, .reusable = false}, SHIFT(1307), - [3657] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), - [3659] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), - [3661] = {.count = 1, .reusable = true}, SHIFT(1309), - [3663] = {.count = 1, .reusable = true}, SHIFT(1311), - [3665] = {.count = 1, .reusable = true}, SHIFT(1312), - [3667] = {.count = 1, .reusable = true}, SHIFT(1313), - [3669] = {.count = 1, .reusable = false}, SHIFT(1313), - [3671] = {.count = 1, .reusable = true}, SHIFT(1314), - [3673] = {.count = 1, .reusable = true}, SHIFT(1315), - [3675] = {.count = 1, .reusable = true}, SHIFT(1316), - [3677] = {.count = 1, .reusable = true}, SHIFT(1317), - [3679] = {.count = 1, .reusable = false}, SHIFT(1318), - [3681] = {.count = 1, .reusable = true}, SHIFT(1319), - [3683] = {.count = 1, .reusable = true}, SHIFT(1321), - [3685] = {.count = 1, .reusable = true}, SHIFT(1323), - [3687] = {.count = 1, .reusable = false}, SHIFT(1323), - [3689] = {.count = 1, .reusable = true}, SHIFT(1324), - [3691] = {.count = 1, .reusable = true}, SHIFT(1325), - [3693] = {.count = 1, .reusable = false}, SHIFT(1325), - [3695] = {.count = 1, .reusable = true}, SHIFT(1326), - [3697] = {.count = 1, .reusable = false}, SHIFT(1326), - [3699] = {.count = 1, .reusable = true}, SHIFT(1327), - [3701] = {.count = 1, .reusable = false}, SHIFT(1328), - [3703] = {.count = 1, .reusable = true}, SHIFT(1329), - [3705] = {.count = 1, .reusable = false}, SHIFT(1329), - [3707] = {.count = 1, .reusable = true}, SHIFT(1330), - [3709] = {.count = 1, .reusable = true}, SHIFT(1331), - [3711] = {.count = 1, .reusable = false}, SHIFT(1331), - [3713] = {.count = 1, .reusable = true}, SHIFT(1334), - [3715] = {.count = 1, .reusable = true}, SHIFT(1336), - [3717] = {.count = 1, .reusable = false}, SHIFT(1336), - [3719] = {.count = 1, .reusable = true}, SHIFT(1338), - [3721] = {.count = 1, .reusable = true}, SHIFT(1339), - [3723] = {.count = 1, .reusable = false}, SHIFT(1339), - [3725] = {.count = 1, .reusable = true}, SHIFT(1340), - [3727] = {.count = 1, .reusable = true}, SHIFT(1341), - [3729] = {.count = 1, .reusable = false}, SHIFT(1341), - [3731] = {.count = 1, .reusable = true}, SHIFT(1342), - [3733] = {.count = 1, .reusable = true}, SHIFT(1343), - [3735] = {.count = 1, .reusable = true}, SHIFT(1344), - [3737] = {.count = 1, .reusable = true}, SHIFT(1345), - [3739] = {.count = 1, .reusable = true}, SHIFT(1346), - [3741] = {.count = 1, .reusable = false}, SHIFT(1346), - [3743] = {.count = 1, .reusable = true}, SHIFT(1347), - [3745] = {.count = 1, .reusable = true}, SHIFT(1348), - [3747] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), - [3749] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), - [3751] = {.count = 1, .reusable = true}, SHIFT(1351), - [3753] = {.count = 1, .reusable = true}, SHIFT(1352), - [3755] = {.count = 1, .reusable = false}, SHIFT(1352), - [3757] = {.count = 1, .reusable = true}, SHIFT(1353), - [3759] = {.count = 1, .reusable = false}, SHIFT(1353), - [3761] = {.count = 1, .reusable = true}, SHIFT(1354), - [3763] = {.count = 1, .reusable = false}, SHIFT(1355), - [3765] = {.count = 1, .reusable = true}, SHIFT(1356), - [3767] = {.count = 1, .reusable = false}, SHIFT(1356), - [3769] = {.count = 1, .reusable = true}, SHIFT(1357), - [3771] = {.count = 1, .reusable = true}, SHIFT(1358), - [3773] = {.count = 1, .reusable = false}, SHIFT(1358), - [3775] = {.count = 1, .reusable = true}, SHIFT(1361), - [3777] = {.count = 1, .reusable = true}, SHIFT(1363), - [3779] = {.count = 1, .reusable = false}, SHIFT(1363), - [3781] = {.count = 1, .reusable = true}, SHIFT(1364), - [3783] = {.count = 1, .reusable = true}, SHIFT(1365), - [3785] = {.count = 1, .reusable = true}, SHIFT(1366), - [3787] = {.count = 1, .reusable = true}, SHIFT(1367), - [3789] = {.count = 1, .reusable = true}, SHIFT(1368), - [3791] = {.count = 1, .reusable = false}, SHIFT(1368), - [3793] = {.count = 1, .reusable = true}, SHIFT(1369), - [3795] = {.count = 1, .reusable = true}, SHIFT(1371), - [3797] = {.count = 1, .reusable = false}, SHIFT(1373), - [3799] = {.count = 1, .reusable = true}, SHIFT(1374), - [3801] = {.count = 1, .reusable = true}, SHIFT(1376), - [3803] = {.count = 1, .reusable = false}, SHIFT(1376), - [3805] = {.count = 1, .reusable = true}, SHIFT(1377), - [3807] = {.count = 1, .reusable = true}, SHIFT(1379), - [3809] = {.count = 1, .reusable = true}, SHIFT(1380), - [3811] = {.count = 1, .reusable = false}, SHIFT(1380), - [3813] = {.count = 1, .reusable = true}, SHIFT(1381), - [3815] = {.count = 1, .reusable = true}, SHIFT(1382), - [3817] = {.count = 1, .reusable = false}, SHIFT(1382), - [3819] = {.count = 1, .reusable = true}, SHIFT(1383), - [3821] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), - [3823] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), - [3825] = {.count = 1, .reusable = true}, SHIFT(1385), - [3827] = {.count = 1, .reusable = true}, SHIFT(1386), - [3829] = {.count = 1, .reusable = true}, SHIFT(1387), - [3831] = {.count = 1, .reusable = true}, SHIFT(1388), - [3833] = {.count = 1, .reusable = true}, SHIFT(1389), - [3835] = {.count = 1, .reusable = false}, SHIFT(1389), - [3837] = {.count = 1, .reusable = true}, SHIFT(1390), - [3839] = {.count = 1, .reusable = true}, SHIFT(1392), - [3841] = {.count = 1, .reusable = true}, SHIFT(1395), - [3843] = {.count = 1, .reusable = true}, SHIFT(1396), - [3845] = {.count = 1, .reusable = false}, SHIFT(1396), - [3847] = {.count = 1, .reusable = true}, SHIFT(1397), - [3849] = {.count = 1, .reusable = true}, SHIFT(1398), - [3851] = {.count = 1, .reusable = false}, SHIFT(1398), - [3853] = {.count = 1, .reusable = true}, SHIFT(1400), - [3855] = {.count = 1, .reusable = true}, SHIFT(1401), - [3857] = {.count = 1, .reusable = true}, SHIFT(1403), - [3859] = {.count = 1, .reusable = false}, SHIFT(1403), - [3861] = {.count = 1, .reusable = true}, SHIFT(1404), - [3863] = {.count = 1, .reusable = true}, SHIFT(1405), - [3865] = {.count = 1, .reusable = true}, SHIFT(1407), - [3867] = {.count = 1, .reusable = false}, SHIFT(1407), - [3869] = {.count = 1, .reusable = true}, SHIFT(1408), - [3871] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), - [3873] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), - [3875] = {.count = 1, .reusable = true}, SHIFT(1410), - [3877] = {.count = 1, .reusable = true}, SHIFT(1411), - [3879] = {.count = 1, .reusable = false}, SHIFT(1411), - [3881] = {.count = 1, .reusable = true}, SHIFT(1412), - [3883] = {.count = 1, .reusable = true}, SHIFT(1413), - [3885] = {.count = 1, .reusable = false}, SHIFT(1413), - [3887] = {.count = 1, .reusable = true}, SHIFT(1415), - [3889] = {.count = 1, .reusable = false}, SHIFT(1416), - [3891] = {.count = 1, .reusable = true}, SHIFT(1417), - [3893] = {.count = 1, .reusable = true}, SHIFT(1419), - [3895] = {.count = 1, .reusable = false}, SHIFT(1419), - [3897] = {.count = 1, .reusable = true}, SHIFT(1420), - [3899] = {.count = 1, .reusable = true}, SHIFT(1422), - [3901] = {.count = 1, .reusable = true}, SHIFT(1424), - [3903] = {.count = 1, .reusable = true}, SHIFT(1426), - [3905] = {.count = 1, .reusable = false}, SHIFT(1426), - [3907] = {.count = 1, .reusable = false}, SHIFT(1427), - [3909] = {.count = 1, .reusable = true}, SHIFT(1428), - [3911] = {.count = 1, .reusable = true}, SHIFT(1430), - [3913] = {.count = 1, .reusable = false}, SHIFT(1430), - [3915] = {.count = 1, .reusable = true}, SHIFT(1431), - [3917] = {.count = 1, .reusable = true}, SHIFT(1433), - [3919] = {.count = 1, .reusable = true}, SHIFT(1435), - [3921] = {.count = 1, .reusable = false}, SHIFT(1435), - [3923] = {.count = 1, .reusable = true}, SHIFT(1436), - [3925] = {.count = 1, .reusable = true}, SHIFT(1437), - [3927] = {.count = 1, .reusable = true}, SHIFT(1439), - [3929] = {.count = 1, .reusable = true}, SHIFT(1441), - [3931] = {.count = 1, .reusable = false}, SHIFT(1441), - [3933] = {.count = 1, .reusable = true}, SHIFT(1442), - [3935] = {.count = 1, .reusable = true}, SHIFT(1444), - [3937] = {.count = 1, .reusable = true}, SHIFT(1445), - [3939] = {.count = 1, .reusable = true}, SHIFT(1447), - [3941] = {.count = 1, .reusable = true}, SHIFT(1448), + [1040] = {.count = 1, .reusable = true}, SHIFT(436), + [1042] = {.count = 1, .reusable = true}, SHIFT(437), + [1044] = {.count = 1, .reusable = true}, SHIFT(438), + [1046] = {.count = 1, .reusable = true}, SHIFT(439), + [1048] = {.count = 1, .reusable = false}, SHIFT(439), + [1050] = {.count = 1, .reusable = true}, SHIFT(440), + [1052] = {.count = 1, .reusable = false}, SHIFT(440), + [1054] = {.count = 1, .reusable = true}, SHIFT(441), + [1056] = {.count = 1, .reusable = false}, SHIFT(441), + [1058] = {.count = 1, .reusable = true}, SHIFT(442), + [1060] = {.count = 1, .reusable = true}, SHIFT(443), + [1062] = {.count = 1, .reusable = false}, SHIFT(443), + [1064] = {.count = 1, .reusable = false}, SHIFT(444), + [1066] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [1068] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), + [1071] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), SHIFT(42), + [1075] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), + [1078] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [1080] = {.count = 1, .reusable = true}, SHIFT(445), + [1082] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 12), + [1084] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 12), + [1086] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 13), + [1088] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 13), + [1090] = {.count = 1, .reusable = true}, SHIFT(446), + [1092] = {.count = 1, .reusable = true}, SHIFT(447), + [1094] = {.count = 1, .reusable = true}, SHIFT(448), + [1096] = {.count = 1, .reusable = true}, SHIFT(449), + [1098] = {.count = 1, .reusable = false}, SHIFT(450), + [1100] = {.count = 1, .reusable = true}, SHIFT(451), + [1102] = {.count = 1, .reusable = false}, SHIFT(452), + [1104] = {.count = 1, .reusable = true}, SHIFT(453), + [1106] = {.count = 1, .reusable = true}, SHIFT(452), + [1108] = {.count = 1, .reusable = false}, SHIFT(454), + [1110] = {.count = 1, .reusable = true}, SHIFT(455), + [1112] = {.count = 1, .reusable = true}, SHIFT(456), + [1114] = {.count = 1, .reusable = false}, SHIFT(457), + [1116] = {.count = 1, .reusable = false}, SHIFT(458), + [1118] = {.count = 1, .reusable = true}, SHIFT(459), + [1120] = {.count = 1, .reusable = false}, SHIFT(460), + [1122] = {.count = 1, .reusable = true}, SHIFT(460), + [1124] = {.count = 1, .reusable = false}, SHIFT(461), + [1126] = {.count = 1, .reusable = false}, SHIFT(462), + [1128] = {.count = 1, .reusable = true}, SHIFT(463), + [1130] = {.count = 1, .reusable = true}, SHIFT(464), + [1132] = {.count = 1, .reusable = true}, SHIFT(467), + [1134] = {.count = 1, .reusable = true}, SHIFT(469), + [1136] = {.count = 1, .reusable = true}, SHIFT(470), + [1138] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2, .dynamic_precedence = 1), + [1140] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), + [1142] = {.count = 1, .reusable = true}, SHIFT(472), + [1144] = {.count = 1, .reusable = true}, SHIFT(473), + [1146] = {.count = 1, .reusable = true}, SHIFT(474), + [1148] = {.count = 1, .reusable = false}, SHIFT(477), + [1150] = {.count = 1, .reusable = false}, SHIFT(478), + [1152] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), + [1154] = {.count = 1, .reusable = true}, SHIFT(480), + [1156] = {.count = 1, .reusable = true}, SHIFT(481), + [1158] = {.count = 1, .reusable = false}, SHIFT(481), + [1160] = {.count = 1, .reusable = true}, SHIFT(482), + [1162] = {.count = 1, .reusable = true}, SHIFT(483), + [1164] = {.count = 1, .reusable = false}, SHIFT(483), + [1166] = {.count = 1, .reusable = false}, SHIFT(485), + [1168] = {.count = 1, .reusable = false}, SHIFT(486), + [1170] = {.count = 1, .reusable = true}, SHIFT(487), + [1172] = {.count = 1, .reusable = true}, SHIFT(486), + [1174] = {.count = 1, .reusable = false}, SHIFT(488), + [1176] = {.count = 1, .reusable = true}, SHIFT(489), + [1178] = {.count = 1, .reusable = true}, SHIFT(490), + [1180] = {.count = 1, .reusable = false}, SHIFT(491), + [1182] = {.count = 1, .reusable = false}, SHIFT(492), + [1184] = {.count = 1, .reusable = true}, SHIFT(493), + [1186] = {.count = 1, .reusable = false}, SHIFT(494), + [1188] = {.count = 1, .reusable = true}, SHIFT(494), + [1190] = {.count = 1, .reusable = false}, SHIFT(495), + [1192] = {.count = 1, .reusable = false}, SHIFT(496), + [1194] = {.count = 1, .reusable = false}, SHIFT(498), + [1196] = {.count = 1, .reusable = false}, SHIFT(499), + [1198] = {.count = 1, .reusable = true}, SHIFT(500), + [1200] = {.count = 1, .reusable = true}, SHIFT(501), + [1202] = {.count = 1, .reusable = true}, SHIFT(502), + [1204] = {.count = 1, .reusable = true}, SHIFT(503), + [1206] = {.count = 1, .reusable = true}, SHIFT(504), + [1208] = {.count = 1, .reusable = false}, SHIFT(504), + [1210] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), + [1212] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), + [1214] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), + [1216] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(124), + [1219] = {.count = 1, .reusable = true}, SHIFT(507), + [1221] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), + [1223] = {.count = 1, .reusable = true}, SHIFT(508), + [1225] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 4), + [1227] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 4), + [1229] = {.count = 1, .reusable = false}, SHIFT(510), + [1231] = {.count = 1, .reusable = true}, SHIFT(511), + [1233] = {.count = 1, .reusable = false}, SHIFT(512), + [1235] = {.count = 1, .reusable = false}, SHIFT(513), + [1237] = {.count = 1, .reusable = true}, SHIFT(514), + [1239] = {.count = 1, .reusable = false}, SHIFT(514), + [1241] = {.count = 1, .reusable = true}, SHIFT(516), + [1243] = {.count = 1, .reusable = false}, SHIFT(516), + [1245] = {.count = 1, .reusable = true}, SHIFT(518), + [1247] = {.count = 1, .reusable = false}, SHIFT(518), + [1249] = {.count = 1, .reusable = false}, SHIFT(520), + [1251] = {.count = 1, .reusable = true}, SHIFT(521), + [1253] = {.count = 1, .reusable = false}, SHIFT(521), + [1255] = {.count = 1, .reusable = false}, SHIFT(522), + [1257] = {.count = 1, .reusable = false}, SHIFT(523), + [1259] = {.count = 1, .reusable = false}, SHIFT(525), + [1261] = {.count = 1, .reusable = false}, SHIFT(528), + [1263] = {.count = 1, .reusable = false}, SHIFT(531), + [1265] = {.count = 1, .reusable = true}, SHIFT(534), + [1267] = {.count = 1, .reusable = false}, SHIFT(536), + [1269] = {.count = 1, .reusable = true}, SHIFT(537), + [1271] = {.count = 1, .reusable = true}, SHIFT(540), + [1273] = {.count = 1, .reusable = true}, SHIFT(541), + [1275] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(148), + [1278] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(149), + [1281] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(150), + [1284] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(151), + [1287] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(152), + [1290] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(153), + [1293] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(154), + [1296] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(155), + [1299] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 14), + [1301] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 14), + [1303] = {.count = 1, .reusable = true}, SHIFT(545), + [1305] = {.count = 1, .reusable = true}, SHIFT(547), + [1307] = {.count = 1, .reusable = true}, SHIFT(549), + [1309] = {.count = 1, .reusable = true}, SHIFT(551), + [1311] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 19), + [1313] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 19), + [1315] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 20), + [1317] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 20), + [1319] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 21), + [1321] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 21), + [1323] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3), + [1325] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3), + [1327] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), + [1329] = {.count = 1, .reusable = true}, SHIFT(552), + [1331] = {.count = 1, .reusable = true}, SHIFT(553), + [1333] = {.count = 1, .reusable = false}, SHIFT(553), + [1335] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), + [1337] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), + [1339] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), + [1341] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), + [1343] = {.count = 1, .reusable = true}, SHIFT(555), + [1345] = {.count = 1, .reusable = true}, SHIFT(556), + [1347] = {.count = 1, .reusable = false}, SHIFT(556), + [1349] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), + [1351] = {.count = 1, .reusable = false}, SHIFT(557), + [1353] = {.count = 1, .reusable = false}, SHIFT(558), + [1355] = {.count = 1, .reusable = true}, SHIFT(559), + [1357] = {.count = 1, .reusable = true}, SHIFT(558), + [1359] = {.count = 1, .reusable = false}, SHIFT(560), + [1361] = {.count = 1, .reusable = true}, SHIFT(561), + [1363] = {.count = 1, .reusable = true}, SHIFT(562), + [1365] = {.count = 1, .reusable = false}, SHIFT(563), + [1367] = {.count = 1, .reusable = false}, SHIFT(564), + [1369] = {.count = 1, .reusable = true}, SHIFT(565), + [1371] = {.count = 1, .reusable = false}, SHIFT(566), + [1373] = {.count = 1, .reusable = true}, SHIFT(566), + [1375] = {.count = 1, .reusable = false}, SHIFT(567), + [1377] = {.count = 1, .reusable = false}, SHIFT(568), + [1379] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), + [1381] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), + [1383] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [1385] = {.count = 1, .reusable = true}, SHIFT(570), + [1387] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(571), + [1390] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 5), + [1392] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 5), + [1394] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, .alias_sequence_id = 6), + [1396] = {.count = 1, .reusable = false}, SHIFT(573), + [1398] = {.count = 1, .reusable = true}, SHIFT(574), + [1400] = {.count = 1, .reusable = true}, SHIFT(575), + [1402] = {.count = 1, .reusable = true}, SHIFT(576), + [1404] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 7), + [1406] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 7), + [1408] = {.count = 1, .reusable = true}, SHIFT(580), + [1410] = {.count = 1, .reusable = true}, SHIFT(581), + [1412] = {.count = 1, .reusable = true}, SHIFT(582), + [1414] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 8), + [1416] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 8), + [1418] = {.count = 1, .reusable = true}, SHIFT(585), + [1420] = {.count = 1, .reusable = true}, SHIFT(586), + [1422] = {.count = 1, .reusable = true}, SHIFT(587), + [1424] = {.count = 1, .reusable = true}, SHIFT(591), + [1426] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2), + [1428] = {.count = 1, .reusable = true}, SHIFT(594), + [1430] = {.count = 1, .reusable = true}, SHIFT(595), + [1432] = {.count = 1, .reusable = false}, SHIFT(595), + [1434] = {.count = 1, .reusable = true}, SHIFT(596), + [1436] = {.count = 1, .reusable = false}, SHIFT(597), + [1438] = {.count = 1, .reusable = false}, SHIFT(598), + [1440] = {.count = 1, .reusable = true}, SHIFT(599), + [1442] = {.count = 1, .reusable = true}, SHIFT(598), + [1444] = {.count = 1, .reusable = false}, SHIFT(600), + [1446] = {.count = 1, .reusable = true}, SHIFT(601), + [1448] = {.count = 1, .reusable = true}, SHIFT(602), + [1450] = {.count = 1, .reusable = false}, SHIFT(603), + [1452] = {.count = 1, .reusable = false}, SHIFT(604), + [1454] = {.count = 1, .reusable = true}, SHIFT(605), + [1456] = {.count = 1, .reusable = false}, SHIFT(606), + [1458] = {.count = 1, .reusable = true}, SHIFT(606), + [1460] = {.count = 1, .reusable = false}, SHIFT(607), + [1462] = {.count = 1, .reusable = false}, SHIFT(608), + [1464] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), + [1466] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), + [1468] = {.count = 1, .reusable = true}, SHIFT(611), + [1470] = {.count = 1, .reusable = true}, SHIFT(613), + [1472] = {.count = 1, .reusable = false}, SHIFT(613), + [1474] = {.count = 1, .reusable = true}, SHIFT(614), + [1476] = {.count = 1, .reusable = false}, SHIFT(614), + [1478] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), + [1480] = {.count = 1, .reusable = true}, SHIFT(615), + [1482] = {.count = 1, .reusable = true}, SHIFT(617), + [1484] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2), + [1486] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), + [1488] = {.count = 1, .reusable = true}, SHIFT(620), + [1490] = {.count = 1, .reusable = true}, SHIFT(621), + [1492] = {.count = 1, .reusable = false}, SHIFT(621), + [1494] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), + [1496] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), + [1498] = {.count = 1, .reusable = false}, SHIFT(623), + [1500] = {.count = 1, .reusable = true}, SHIFT(624), + [1502] = {.count = 1, .reusable = false}, SHIFT(624), + [1504] = {.count = 1, .reusable = false}, SHIFT(625), + [1506] = {.count = 1, .reusable = false}, SHIFT(626), + [1508] = {.count = 1, .reusable = false}, SHIFT(627), + [1510] = {.count = 1, .reusable = false}, SHIFT(628), + [1512] = {.count = 1, .reusable = false}, SHIFT(629), + [1514] = {.count = 1, .reusable = false}, SHIFT(630), + [1516] = {.count = 1, .reusable = true}, SHIFT(631), + [1518] = {.count = 1, .reusable = false}, SHIFT(632), + [1520] = {.count = 1, .reusable = false}, SHIFT(633), + [1522] = {.count = 1, .reusable = false}, SHIFT(634), + [1524] = {.count = 1, .reusable = false}, SHIFT(635), + [1526] = {.count = 1, .reusable = false}, SHIFT(636), + [1528] = {.count = 1, .reusable = false}, SHIFT(637), + [1530] = {.count = 1, .reusable = false}, SHIFT(638), + [1532] = {.count = 1, .reusable = false}, SHIFT(639), + [1534] = {.count = 1, .reusable = false}, SHIFT(640), + [1536] = {.count = 1, .reusable = false}, SHIFT(641), + [1538] = {.count = 1, .reusable = false}, SHIFT(642), + [1540] = {.count = 1, .reusable = true}, SHIFT(649), + [1542] = {.count = 1, .reusable = false}, SHIFT(649), + [1544] = {.count = 1, .reusable = false}, SHIFT(643), + [1546] = {.count = 1, .reusable = false}, SHIFT(652), + [1548] = {.count = 1, .reusable = false}, SHIFT(656), + [1550] = {.count = 1, .reusable = true}, SHIFT(661), + [1552] = {.count = 1, .reusable = true}, SHIFT(662), + [1554] = {.count = 1, .reusable = false}, SHIFT(662), + [1556] = {.count = 1, .reusable = true}, SHIFT(663), + [1558] = {.count = 1, .reusable = true}, SHIFT(664), + [1560] = {.count = 1, .reusable = false}, SHIFT(665), + [1562] = {.count = 1, .reusable = false}, SHIFT(666), + [1564] = {.count = 1, .reusable = true}, SHIFT(667), + [1566] = {.count = 1, .reusable = true}, SHIFT(666), + [1568] = {.count = 1, .reusable = false}, SHIFT(668), + [1570] = {.count = 1, .reusable = true}, SHIFT(669), + [1572] = {.count = 1, .reusable = true}, SHIFT(670), + [1574] = {.count = 1, .reusable = false}, SHIFT(671), + [1576] = {.count = 1, .reusable = false}, SHIFT(672), + [1578] = {.count = 1, .reusable = true}, SHIFT(673), + [1580] = {.count = 1, .reusable = false}, SHIFT(674), + [1582] = {.count = 1, .reusable = true}, SHIFT(674), + [1584] = {.count = 1, .reusable = false}, SHIFT(675), + [1586] = {.count = 1, .reusable = false}, SHIFT(676), + [1588] = {.count = 1, .reusable = true}, SHIFT(677), + [1590] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), + [1592] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), + [1594] = {.count = 1, .reusable = true}, SHIFT(679), + [1596] = {.count = 1, .reusable = false}, SHIFT(679), + [1598] = {.count = 1, .reusable = false}, SHIFT(681), + [1600] = {.count = 1, .reusable = false}, SHIFT(682), + [1602] = {.count = 1, .reusable = false}, SHIFT(683), + [1604] = {.count = 1, .reusable = false}, SHIFT(684), + [1606] = {.count = 1, .reusable = false}, SHIFT(685), + [1608] = {.count = 1, .reusable = false}, SHIFT(686), + [1610] = {.count = 1, .reusable = false}, SHIFT(687), + [1612] = {.count = 1, .reusable = false}, SHIFT(689), + [1614] = {.count = 1, .reusable = true}, SHIFT(692), + [1616] = {.count = 1, .reusable = true}, SHIFT(693), + [1618] = {.count = 1, .reusable = false}, SHIFT(693), + [1620] = {.count = 1, .reusable = false}, SHIFT(694), + [1622] = {.count = 1, .reusable = false}, SHIFT(695), + [1624] = {.count = 1, .reusable = true}, SHIFT(696), + [1626] = {.count = 1, .reusable = true}, SHIFT(697), + [1628] = {.count = 1, .reusable = true}, SHIFT(695), + [1630] = {.count = 1, .reusable = false}, SHIFT(698), + [1632] = {.count = 1, .reusable = true}, SHIFT(699), + [1634] = {.count = 1, .reusable = true}, SHIFT(700), + [1636] = {.count = 1, .reusable = false}, SHIFT(701), + [1638] = {.count = 1, .reusable = false}, SHIFT(702), + [1640] = {.count = 1, .reusable = true}, SHIFT(703), + [1642] = {.count = 1, .reusable = false}, SHIFT(704), + [1644] = {.count = 1, .reusable = true}, SHIFT(704), + [1646] = {.count = 1, .reusable = false}, SHIFT(705), + [1648] = {.count = 1, .reusable = false}, SHIFT(706), + [1650] = {.count = 1, .reusable = false}, SHIFT(708), + [1652] = {.count = 1, .reusable = true}, SHIFT(714), + [1654] = {.count = 1, .reusable = false}, SHIFT(714), + [1656] = {.count = 1, .reusable = true}, SHIFT(715), + [1658] = {.count = 1, .reusable = true}, SHIFT(718), + [1660] = {.count = 1, .reusable = true}, SHIFT(719), + [1662] = {.count = 1, .reusable = true}, SHIFT(720), + [1664] = {.count = 1, .reusable = true}, SHIFT(721), + [1666] = {.count = 1, .reusable = true}, SHIFT(723), + [1668] = {.count = 1, .reusable = false}, SHIFT(723), + [1670] = {.count = 1, .reusable = false}, SHIFT(722), + [1672] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), + [1674] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), + [1676] = {.count = 1, .reusable = true}, SHIFT(724), + [1678] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), + [1680] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), + [1682] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), + [1684] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), + [1686] = {.count = 1, .reusable = true}, SHIFT(725), + [1688] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), + [1690] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), + [1692] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), + [1694] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), + [1696] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), + [1698] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), + [1700] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), + [1702] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), + [1704] = {.count = 1, .reusable = true}, SHIFT(727), + [1706] = {.count = 1, .reusable = true}, SHIFT(729), + [1708] = {.count = 1, .reusable = false}, SHIFT(729), + [1710] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), + [1712] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), + [1714] = {.count = 1, .reusable = true}, SHIFT(731), + [1716] = {.count = 1, .reusable = true}, SHIFT(732), + [1718] = {.count = 1, .reusable = false}, SHIFT(732), + [1720] = {.count = 1, .reusable = true}, SHIFT(733), + [1722] = {.count = 1, .reusable = false}, SHIFT(733), + [1724] = {.count = 1, .reusable = true}, SHIFT(734), + [1726] = {.count = 1, .reusable = false}, SHIFT(734), + [1728] = {.count = 1, .reusable = true}, SHIFT(735), + [1730] = {.count = 1, .reusable = false}, SHIFT(735), + [1732] = {.count = 1, .reusable = true}, SHIFT(736), + [1734] = {.count = 1, .reusable = false}, SHIFT(736), + [1736] = {.count = 1, .reusable = true}, SHIFT(737), + [1738] = {.count = 1, .reusable = false}, SHIFT(737), + [1740] = {.count = 1, .reusable = true}, SHIFT(738), + [1742] = {.count = 1, .reusable = false}, SHIFT(738), + [1744] = {.count = 1, .reusable = true}, SHIFT(739), + [1746] = {.count = 1, .reusable = false}, SHIFT(739), + [1748] = {.count = 1, .reusable = true}, SHIFT(740), + [1750] = {.count = 1, .reusable = false}, SHIFT(740), + [1752] = {.count = 1, .reusable = true}, SHIFT(741), + [1754] = {.count = 1, .reusable = false}, SHIFT(741), + [1756] = {.count = 1, .reusable = true}, SHIFT(742), + [1758] = {.count = 1, .reusable = false}, SHIFT(742), + [1760] = {.count = 1, .reusable = true}, SHIFT(743), + [1762] = {.count = 1, .reusable = false}, SHIFT(743), + [1764] = {.count = 1, .reusable = true}, SHIFT(744), + [1766] = {.count = 1, .reusable = false}, SHIFT(744), + [1768] = {.count = 1, .reusable = true}, SHIFT(745), + [1770] = {.count = 1, .reusable = false}, SHIFT(745), + [1772] = {.count = 1, .reusable = true}, SHIFT(746), + [1774] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), + [1776] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), + [1778] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), + [1780] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), + [1782] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [1784] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [1786] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(223), + [1789] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(3), + [1792] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(224), + [1795] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(225), + [1798] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(226), + [1801] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(7), + [1804] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(227), + [1807] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(8), + [1810] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(10), + [1813] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(126), + [1816] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [1818] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(229), + [1821] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(230), + [1824] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(11), + [1827] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(21), + [1830] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(18), + [1833] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(12), + [1836] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(13), + [1839] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(14), + [1842] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(231), + [1845] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(232), + [1848] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(233), + [1851] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(234), + [1854] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(235), + [1857] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(236), + [1860] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(237), + [1863] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(238), + [1866] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(239), + [1869] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(240), + [1872] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(241), + [1875] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(242), + [1878] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(243), + [1881] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(244), + [1884] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(244), + [1887] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(245), + [1890] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(251), + [1893] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(246), + [1896] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(22), + [1899] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(251), + [1902] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(247), + [1905] = {.count = 1, .reusable = true}, SHIFT(748), + [1907] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3, .dynamic_precedence = 1), + [1909] = {.count = 1, .reusable = true}, SHIFT(749), + [1911] = {.count = 1, .reusable = true}, SHIFT(751), + [1913] = {.count = 1, .reusable = false}, SHIFT(752), + [1915] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), + [1917] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(478), + [1920] = {.count = 1, .reusable = true}, SHIFT(756), + [1922] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), + [1924] = {.count = 1, .reusable = true}, SHIFT(758), + [1926] = {.count = 1, .reusable = true}, SHIFT(760), + [1928] = {.count = 1, .reusable = false}, SHIFT(760), + [1930] = {.count = 1, .reusable = true}, SHIFT(761), + [1932] = {.count = 1, .reusable = false}, SHIFT(761), + [1934] = {.count = 1, .reusable = true}, SHIFT(762), + [1936] = {.count = 1, .reusable = false}, SHIFT(762), + [1938] = {.count = 1, .reusable = true}, SHIFT(763), + [1940] = {.count = 1, .reusable = false}, SHIFT(763), + [1942] = {.count = 1, .reusable = true}, SHIFT(764), + [1944] = {.count = 1, .reusable = false}, SHIFT(764), + [1946] = {.count = 1, .reusable = true}, SHIFT(765), + [1948] = {.count = 1, .reusable = false}, SHIFT(765), + [1950] = {.count = 1, .reusable = true}, SHIFT(766), + [1952] = {.count = 1, .reusable = false}, SHIFT(766), + [1954] = {.count = 1, .reusable = true}, SHIFT(767), + [1956] = {.count = 1, .reusable = false}, SHIFT(767), + [1958] = {.count = 1, .reusable = true}, SHIFT(768), + [1960] = {.count = 1, .reusable = false}, SHIFT(768), + [1962] = {.count = 1, .reusable = true}, SHIFT(769), + [1964] = {.count = 1, .reusable = false}, SHIFT(769), + [1966] = {.count = 1, .reusable = true}, SHIFT(770), + [1968] = {.count = 1, .reusable = false}, SHIFT(770), + [1970] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(499), + [1973] = {.count = 1, .reusable = true}, SHIFT(773), + [1975] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), + [1977] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), + [1979] = {.count = 1, .reusable = true}, SHIFT(774), + [1981] = {.count = 1, .reusable = false}, SHIFT(774), + [1983] = {.count = 1, .reusable = true}, SHIFT(775), + [1985] = {.count = 1, .reusable = true}, SHIFT(776), + [1987] = {.count = 1, .reusable = true}, SHIFT(778), + [1989] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [1991] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), + [1993] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(280), + [1996] = {.count = 1, .reusable = true}, SHIFT(780), + [1998] = {.count = 1, .reusable = true}, SHIFT(781), + [2000] = {.count = 1, .reusable = true}, SHIFT(782), + [2002] = {.count = 1, .reusable = true}, SHIFT(783), + [2004] = {.count = 1, .reusable = false}, SHIFT(784), + [2006] = {.count = 1, .reusable = true}, SHIFT(785), + [2008] = {.count = 1, .reusable = false}, SHIFT(786), + [2010] = {.count = 1, .reusable = false}, SHIFT(787), + [2012] = {.count = 1, .reusable = true}, SHIFT(788), + [2014] = {.count = 1, .reusable = false}, SHIFT(788), + [2016] = {.count = 1, .reusable = true}, SHIFT(790), + [2018] = {.count = 1, .reusable = false}, SHIFT(790), + [2020] = {.count = 1, .reusable = true}, SHIFT(792), + [2022] = {.count = 1, .reusable = false}, SHIFT(792), + [2024] = {.count = 1, .reusable = true}, SHIFT(794), + [2026] = {.count = 1, .reusable = true}, SHIFT(796), + [2028] = {.count = 1, .reusable = true}, SHIFT(798), + [2030] = {.count = 1, .reusable = true}, SHIFT(800), + [2032] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .alias_sequence_id = 14), + [2034] = {.count = 1, .reusable = true}, SHIFT(801), + [2036] = {.count = 1, .reusable = true}, SHIFT(802), + [2038] = {.count = 1, .reusable = true}, SHIFT(803), + [2040] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), + [2042] = {.count = 1, .reusable = true}, SHIFT(804), + [2044] = {.count = 1, .reusable = true}, SHIFT(805), + [2046] = {.count = 1, .reusable = true}, SHIFT(807), + [2048] = {.count = 1, .reusable = false}, SHIFT(807), + [2050] = {.count = 1, .reusable = true}, SHIFT(808), + [2052] = {.count = 1, .reusable = false}, SHIFT(808), + [2054] = {.count = 1, .reusable = true}, SHIFT(809), + [2056] = {.count = 1, .reusable = false}, SHIFT(809), + [2058] = {.count = 1, .reusable = true}, SHIFT(810), + [2060] = {.count = 1, .reusable = false}, SHIFT(810), + [2062] = {.count = 1, .reusable = true}, SHIFT(811), + [2064] = {.count = 1, .reusable = false}, SHIFT(811), + [2066] = {.count = 1, .reusable = true}, SHIFT(812), + [2068] = {.count = 1, .reusable = false}, SHIFT(812), + [2070] = {.count = 1, .reusable = true}, SHIFT(813), + [2072] = {.count = 1, .reusable = false}, SHIFT(813), + [2074] = {.count = 1, .reusable = true}, SHIFT(814), + [2076] = {.count = 1, .reusable = false}, SHIFT(814), + [2078] = {.count = 1, .reusable = true}, SHIFT(815), + [2080] = {.count = 1, .reusable = false}, SHIFT(815), + [2082] = {.count = 1, .reusable = true}, SHIFT(816), + [2084] = {.count = 1, .reusable = false}, SHIFT(816), + [2086] = {.count = 1, .reusable = true}, SHIFT(817), + [2088] = {.count = 1, .reusable = false}, SHIFT(817), + [2090] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), + [2092] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), + [2094] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, .alias_sequence_id = 6), + [2096] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2, .alias_sequence_id = 14), + [2098] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 22), + [2100] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 22), + [2102] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), + [2104] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), + [2106] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 15), + [2108] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 15), + [2110] = {.count = 1, .reusable = true}, SHIFT(823), + [2112] = {.count = 1, .reusable = true}, SHIFT(824), + [2114] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), + [2116] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), + [2118] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), + [2120] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), + [2122] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 16), + [2124] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 16), + [2126] = {.count = 1, .reusable = true}, SHIFT(825), + [2128] = {.count = 1, .reusable = true}, SHIFT(826), + [2130] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 26), + [2132] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 26), + [2134] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 27), + [2136] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 27), + [2138] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 17), + [2140] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 17), + [2142] = {.count = 1, .reusable = true}, SHIFT(827), + [2144] = {.count = 1, .reusable = true}, SHIFT(828), + [2146] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3), + [2148] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3), + [2150] = {.count = 1, .reusable = true}, SHIFT(829), + [2152] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), + [2154] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), + [2156] = {.count = 1, .reusable = true}, SHIFT(831), + [2158] = {.count = 1, .reusable = false}, SHIFT(831), + [2160] = {.count = 1, .reusable = true}, SHIFT(832), + [2162] = {.count = 1, .reusable = false}, SHIFT(832), + [2164] = {.count = 1, .reusable = true}, SHIFT(833), + [2166] = {.count = 1, .reusable = false}, SHIFT(833), + [2168] = {.count = 1, .reusable = true}, SHIFT(834), + [2170] = {.count = 1, .reusable = false}, SHIFT(834), + [2172] = {.count = 1, .reusable = true}, SHIFT(835), + [2174] = {.count = 1, .reusable = false}, SHIFT(835), + [2176] = {.count = 1, .reusable = true}, SHIFT(836), + [2178] = {.count = 1, .reusable = false}, SHIFT(836), + [2180] = {.count = 1, .reusable = true}, SHIFT(837), + [2182] = {.count = 1, .reusable = false}, SHIFT(837), + [2184] = {.count = 1, .reusable = true}, SHIFT(838), + [2186] = {.count = 1, .reusable = false}, SHIFT(838), + [2188] = {.count = 1, .reusable = true}, SHIFT(839), + [2190] = {.count = 1, .reusable = false}, SHIFT(839), + [2192] = {.count = 1, .reusable = true}, SHIFT(840), + [2194] = {.count = 1, .reusable = false}, SHIFT(840), + [2196] = {.count = 1, .reusable = true}, SHIFT(841), + [2198] = {.count = 1, .reusable = false}, SHIFT(841), + [2200] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), + [2202] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), + [2204] = {.count = 1, .reusable = true}, SHIFT(843), + [2206] = {.count = 1, .reusable = true}, SHIFT(844), + [2208] = {.count = 1, .reusable = false}, SHIFT(844), + [2210] = {.count = 1, .reusable = true}, SHIFT(845), + [2212] = {.count = 1, .reusable = true}, SHIFT(846), + [2214] = {.count = 1, .reusable = false}, SHIFT(846), + [2216] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(377), + [2219] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), + [2221] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3), + [2223] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(11), + [2226] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), + [2228] = {.count = 1, .reusable = true}, SHIFT(847), + [2230] = {.count = 1, .reusable = true}, SHIFT(848), + [2232] = {.count = 1, .reusable = false}, SHIFT(848), + [2234] = {.count = 1, .reusable = false}, SHIFT(849), + [2236] = {.count = 1, .reusable = false}, SHIFT(850), + [2238] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 5), + [2240] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 5), + [2242] = {.count = 1, .reusable = true}, SHIFT(851), + [2244] = {.count = 1, .reusable = true}, SHIFT(852), + [2246] = {.count = 1, .reusable = false}, SHIFT(853), + [2248] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 1, .alias_sequence_id = 6), + [2250] = {.count = 1, .reusable = false}, SHIFT(854), + [2252] = {.count = 1, .reusable = false}, SHIFT(855), + [2254] = {.count = 1, .reusable = true}, SHIFT(856), + [2256] = {.count = 1, .reusable = false}, SHIFT(857), + [2258] = {.count = 1, .reusable = false}, SHIFT(858), + [2260] = {.count = 1, .reusable = false}, SHIFT(859), + [2262] = {.count = 1, .reusable = false}, SHIFT(860), + [2264] = {.count = 1, .reusable = false}, SHIFT(861), + [2266] = {.count = 1, .reusable = false}, SHIFT(862), + [2268] = {.count = 1, .reusable = false}, SHIFT(863), + [2270] = {.count = 1, .reusable = false}, SHIFT(864), + [2272] = {.count = 1, .reusable = false}, SHIFT(865), + [2274] = {.count = 1, .reusable = false}, SHIFT(866), + [2276] = {.count = 1, .reusable = false}, SHIFT(867), + [2278] = {.count = 1, .reusable = true}, SHIFT(872), + [2280] = {.count = 1, .reusable = false}, SHIFT(872), + [2282] = {.count = 1, .reusable = false}, SHIFT(868), + [2284] = {.count = 1, .reusable = false}, SHIFT(875), + [2286] = {.count = 1, .reusable = true}, SHIFT(878), + [2288] = {.count = 1, .reusable = false}, SHIFT(878), + [2290] = {.count = 1, .reusable = true}, SHIFT(879), + [2292] = {.count = 1, .reusable = true}, SHIFT(882), + [2294] = {.count = 1, .reusable = true}, SHIFT(883), + [2296] = {.count = 1, .reusable = true}, SHIFT(884), + [2298] = {.count = 1, .reusable = false}, SHIFT(884), + [2300] = {.count = 1, .reusable = true}, SHIFT(885), + [2302] = {.count = 1, .reusable = true}, SHIFT(886), + [2304] = {.count = 1, .reusable = true}, SHIFT(887), + [2306] = {.count = 1, .reusable = true}, SHIFT(888), + [2308] = {.count = 1, .reusable = true}, SHIFT(889), + [2310] = {.count = 1, .reusable = true}, SHIFT(890), + [2312] = {.count = 1, .reusable = true}, SHIFT(891), + [2314] = {.count = 1, .reusable = true}, SHIFT(892), + [2316] = {.count = 1, .reusable = false}, SHIFT(893), + [2318] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 7), + [2320] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 7), + [2322] = {.count = 1, .reusable = true}, SHIFT(897), + [2324] = {.count = 1, .reusable = true}, SHIFT(898), + [2326] = {.count = 1, .reusable = false}, SHIFT(899), + [2328] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 8), + [2330] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 8), + [2332] = {.count = 1, .reusable = true}, SHIFT(902), + [2334] = {.count = 1, .reusable = true}, SHIFT(903), + [2336] = {.count = 1, .reusable = false}, SHIFT(904), + [2338] = {.count = 1, .reusable = true}, SHIFT(907), + [2340] = {.count = 1, .reusable = true}, SHIFT(909), + [2342] = {.count = 1, .reusable = false}, SHIFT(909), + [2344] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [2346] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [2348] = {.count = 1, .reusable = true}, SHIFT(910), + [2350] = {.count = 1, .reusable = false}, SHIFT(910), + [2352] = {.count = 1, .reusable = true}, SHIFT(911), + [2354] = {.count = 1, .reusable = false}, SHIFT(911), + [2356] = {.count = 1, .reusable = true}, SHIFT(912), + [2358] = {.count = 1, .reusable = false}, SHIFT(912), + [2360] = {.count = 1, .reusable = true}, SHIFT(913), + [2362] = {.count = 1, .reusable = false}, SHIFT(913), + [2364] = {.count = 1, .reusable = true}, SHIFT(914), + [2366] = {.count = 1, .reusable = false}, SHIFT(914), + [2368] = {.count = 1, .reusable = true}, SHIFT(915), + [2370] = {.count = 1, .reusable = false}, SHIFT(915), + [2372] = {.count = 1, .reusable = true}, SHIFT(916), + [2374] = {.count = 1, .reusable = false}, SHIFT(916), + [2376] = {.count = 1, .reusable = true}, SHIFT(917), + [2378] = {.count = 1, .reusable = false}, SHIFT(917), + [2380] = {.count = 1, .reusable = true}, SHIFT(918), + [2382] = {.count = 1, .reusable = false}, SHIFT(918), + [2384] = {.count = 1, .reusable = true}, SHIFT(919), + [2386] = {.count = 1, .reusable = false}, SHIFT(919), + [2388] = {.count = 1, .reusable = true}, SHIFT(920), + [2390] = {.count = 1, .reusable = false}, SHIFT(920), + [2392] = {.count = 1, .reusable = true}, SHIFT(921), + [2394] = {.count = 1, .reusable = false}, SHIFT(921), + [2396] = {.count = 1, .reusable = true}, SHIFT(924), + [2398] = {.count = 1, .reusable = true}, SHIFT(927), + [2400] = {.count = 1, .reusable = false}, SHIFT(927), + [2402] = {.count = 1, .reusable = true}, SHIFT(928), + [2404] = {.count = 1, .reusable = true}, SHIFT(930), + [2406] = {.count = 1, .reusable = true}, SHIFT(931), + [2408] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3), + [2410] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3), + [2412] = {.count = 1, .reusable = false}, SHIFT(932), + [2414] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3), + [2416] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3), + [2418] = {.count = 1, .reusable = true}, SHIFT(933), + [2420] = {.count = 1, .reusable = true}, SHIFT(935), + [2422] = {.count = 1, .reusable = false}, SHIFT(935), + [2424] = {.count = 1, .reusable = true}, SHIFT(937), + [2426] = {.count = 1, .reusable = false}, SHIFT(937), + [2428] = {.count = 1, .reusable = true}, SHIFT(938), + [2430] = {.count = 1, .reusable = false}, SHIFT(938), + [2432] = {.count = 1, .reusable = true}, SHIFT(939), + [2434] = {.count = 1, .reusable = false}, SHIFT(939), + [2436] = {.count = 1, .reusable = true}, SHIFT(940), + [2438] = {.count = 1, .reusable = false}, SHIFT(940), + [2440] = {.count = 1, .reusable = true}, SHIFT(941), + [2442] = {.count = 1, .reusable = false}, SHIFT(941), + [2444] = {.count = 1, .reusable = true}, SHIFT(942), + [2446] = {.count = 1, .reusable = false}, SHIFT(942), + [2448] = {.count = 1, .reusable = true}, SHIFT(943), + [2450] = {.count = 1, .reusable = false}, SHIFT(943), + [2452] = {.count = 1, .reusable = true}, SHIFT(944), + [2454] = {.count = 1, .reusable = false}, SHIFT(944), + [2456] = {.count = 1, .reusable = true}, SHIFT(945), + [2458] = {.count = 1, .reusable = false}, SHIFT(945), + [2460] = {.count = 1, .reusable = true}, SHIFT(946), + [2462] = {.count = 1, .reusable = false}, SHIFT(946), + [2464] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), + [2466] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), + [2468] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [2470] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [2472] = {.count = 1, .reusable = false}, SHIFT(948), + [2474] = {.count = 1, .reusable = false}, SHIFT(949), + [2476] = {.count = 1, .reusable = false}, SHIFT(950), + [2478] = {.count = 1, .reusable = false}, SHIFT(951), + [2480] = {.count = 1, .reusable = false}, SHIFT(952), + [2482] = {.count = 1, .reusable = false}, SHIFT(953), + [2484] = {.count = 1, .reusable = false}, SHIFT(954), + [2486] = {.count = 1, .reusable = true}, SHIFT(956), + [2488] = {.count = 1, .reusable = false}, SHIFT(957), + [2490] = {.count = 1, .reusable = true}, SHIFT(958), + [2492] = {.count = 1, .reusable = true}, SHIFT(959), + [2494] = {.count = 1, .reusable = true}, SHIFT(960), + [2496] = {.count = 1, .reusable = false}, SHIFT(960), + [2498] = {.count = 1, .reusable = true}, SHIFT(962), + [2500] = {.count = 1, .reusable = true}, SHIFT(963), + [2502] = {.count = 1, .reusable = false}, SHIFT(963), + [2504] = {.count = 1, .reusable = true}, SHIFT(964), + [2506] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), + [2508] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), + [2510] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 28), + [2512] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 28), + [2514] = {.count = 1, .reusable = true}, SHIFT(965), + [2516] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), + [2518] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), + [2520] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 29), + [2522] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 29), + [2524] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), + [2526] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), + [2528] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), + [2530] = {.count = 1, .reusable = true}, SHIFT(966), + [2532] = {.count = 1, .reusable = true}, SHIFT(967), + [2534] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), + [2536] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), + [2538] = {.count = 1, .reusable = true}, SHIFT(969), + [2540] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), + [2542] = {.count = 1, .reusable = true}, SHIFT(970), + [2544] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), + [2546] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), + [2548] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), + [2550] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), + [2552] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), + [2554] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), + [2556] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), + [2558] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), + [2560] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), + [2562] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), + [2564] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 30), + [2566] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 30), + [2568] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2570] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2572] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(22), + [2575] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [2577] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4, .dynamic_precedence = 1), + [2579] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(469), + [2582] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [2585] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(42), + [2589] = {.count = 1, .reusable = true}, SHIFT(973), + [2591] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), + [2593] = {.count = 1, .reusable = true}, SHIFT(974), + [2595] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), + [2597] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), + [2599] = {.count = 1, .reusable = true}, SHIFT(975), + [2601] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 31), + [2603] = {.count = 1, .reusable = true}, SHIFT(976), + [2605] = {.count = 1, .reusable = true}, SHIFT(977), + [2607] = {.count = 1, .reusable = false}, SHIFT(977), + [2609] = {.count = 1, .reusable = true}, SHIFT(979), + [2611] = {.count = 1, .reusable = true}, SHIFT(981), + [2613] = {.count = 1, .reusable = false}, SHIFT(981), + [2615] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(502), + [2618] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [2620] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(503), + [2623] = {.count = 1, .reusable = true}, SHIFT(983), + [2625] = {.count = 1, .reusable = true}, SHIFT(984), + [2627] = {.count = 1, .reusable = true}, SHIFT(985), + [2629] = {.count = 1, .reusable = true}, SHIFT(986), + [2631] = {.count = 1, .reusable = true}, SHIFT(987), + [2633] = {.count = 1, .reusable = true}, SHIFT(988), + [2635] = {.count = 1, .reusable = true}, SHIFT(989), + [2637] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), + [2639] = {.count = 1, .reusable = true}, SHIFT(990), + [2641] = {.count = 1, .reusable = true}, SHIFT(991), + [2643] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 32), + [2645] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 33), + [2647] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 14), + [2649] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 34), + [2651] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 34), + [2653] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 35), + [2655] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 35), + [2657] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 36), + [2659] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 36), + [2661] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 37), + [2663] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 37), + [2665] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 38), + [2667] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 38), + [2669] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 39), + [2671] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 39), + [2673] = {.count = 1, .reusable = true}, SHIFT(994), + [2675] = {.count = 1, .reusable = true}, SHIFT(995), + [2677] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), + [2679] = {.count = 1, .reusable = true}, SHIFT(996), + [2681] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), + [2683] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), + [2685] = {.count = 1, .reusable = true}, SHIFT(997), + [2687] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), + [2689] = {.count = 1, .reusable = true}, SHIFT(998), + [2691] = {.count = 1, .reusable = false}, SHIFT(999), + [2693] = {.count = 1, .reusable = false}, SHIFT(1003), + [2695] = {.count = 1, .reusable = false}, SHIFT(1007), + [2697] = {.count = 1, .reusable = false}, SHIFT(1011), + [2699] = {.count = 1, .reusable = true}, SHIFT(1012), + [2701] = {.count = 1, .reusable = true}, SHIFT(1013), + [2703] = {.count = 1, .reusable = true}, SHIFT(1016), + [2705] = {.count = 1, .reusable = false}, SHIFT(1016), + [2707] = {.count = 1, .reusable = true}, SHIFT(1017), + [2709] = {.count = 1, .reusable = true}, SHIFT(1020), + [2711] = {.count = 1, .reusable = true}, SHIFT(1021), + [2713] = {.count = 1, .reusable = true}, SHIFT(1022), + [2715] = {.count = 1, .reusable = false}, SHIFT(1022), + [2717] = {.count = 1, .reusable = true}, SHIFT(1023), + [2719] = {.count = 1, .reusable = true}, SHIFT(1024), + [2721] = {.count = 1, .reusable = true}, SHIFT(1025), + [2723] = {.count = 1, .reusable = true}, SHIFT(1026), + [2725] = {.count = 1, .reusable = true}, SHIFT(1027), + [2727] = {.count = 1, .reusable = true}, SHIFT(1028), + [2729] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 2, .alias_sequence_id = 6), + [2731] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 2, .alias_sequence_id = 14), + [2733] = {.count = 1, .reusable = false}, SHIFT(1033), + [2735] = {.count = 1, .reusable = false}, SHIFT(1034), + [2737] = {.count = 1, .reusable = false}, SHIFT(1035), + [2739] = {.count = 1, .reusable = false}, SHIFT(1036), + [2741] = {.count = 1, .reusable = false}, SHIFT(1037), + [2743] = {.count = 1, .reusable = false}, SHIFT(1038), + [2745] = {.count = 1, .reusable = false}, SHIFT(1039), + [2747] = {.count = 1, .reusable = false}, SHIFT(1041), + [2749] = {.count = 1, .reusable = true}, SHIFT(1043), + [2751] = {.count = 1, .reusable = false}, SHIFT(1044), + [2753] = {.count = 1, .reusable = true}, SHIFT(1048), + [2755] = {.count = 1, .reusable = true}, SHIFT(1049), + [2757] = {.count = 1, .reusable = true}, SHIFT(1050), + [2759] = {.count = 1, .reusable = false}, SHIFT(1050), + [2761] = {.count = 1, .reusable = true}, SHIFT(1051), + [2763] = {.count = 1, .reusable = true}, SHIFT(1052), + [2765] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 22), + [2767] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 22), + [2769] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), + [2771] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), + [2773] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 15), + [2775] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 15), + [2777] = {.count = 1, .reusable = true}, SHIFT(1054), + [2779] = {.count = 1, .reusable = true}, SHIFT(1055), + [2781] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(61), + [2784] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(62), + [2787] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(625), + [2790] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [2792] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(627), + [2795] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(628), + [2798] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(69), + [2801] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(631), + [2804] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(70), + [2807] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(322), + [2810] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(632), + [2813] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(633), + [2816] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(634), + [2819] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(635), + [2822] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(636), + [2825] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(637), + [2828] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(638), + [2831] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(639), + [2834] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(640), + [2837] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(641), + [2840] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(642), + [2843] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(649), + [2846] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(649), + [2849] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(643), + [2852] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), + [2854] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), + [2856] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), + [2858] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), + [2860] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 16), + [2862] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 16), + [2864] = {.count = 1, .reusable = true}, SHIFT(1056), + [2866] = {.count = 1, .reusable = true}, SHIFT(1057), + [2868] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 26), + [2870] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 26), + [2872] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 27), + [2874] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 27), + [2876] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 17), + [2878] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 17), + [2880] = {.count = 1, .reusable = true}, SHIFT(1058), + [2882] = {.count = 1, .reusable = true}, SHIFT(1059), + [2884] = {.count = 1, .reusable = true}, SHIFT(1060), + [2886] = {.count = 1, .reusable = true}, SHIFT(1061), + [2888] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), + [2890] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), + [2892] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), + [2894] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), + [2896] = {.count = 1, .reusable = true}, SHIFT(1063), + [2898] = {.count = 1, .reusable = false}, SHIFT(1064), + [2900] = {.count = 1, .reusable = true}, SHIFT(1065), + [2902] = {.count = 1, .reusable = true}, SHIFT(1066), + [2904] = {.count = 1, .reusable = false}, SHIFT(1066), + [2906] = {.count = 1, .reusable = true}, SHIFT(1068), + [2908] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), + [2910] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), + [2912] = {.count = 1, .reusable = true}, SHIFT(1069), + [2914] = {.count = 1, .reusable = true}, SHIFT(1072), + [2916] = {.count = 1, .reusable = false}, SHIFT(1072), + [2918] = {.count = 1, .reusable = true}, SHIFT(1073), + [2920] = {.count = 1, .reusable = true}, SHIFT(1075), + [2922] = {.count = 1, .reusable = true}, SHIFT(1076), + [2924] = {.count = 1, .reusable = true}, SHIFT(1077), + [2926] = {.count = 1, .reusable = true}, SHIFT(1078), + [2928] = {.count = 1, .reusable = true}, SHIFT(1079), + [2930] = {.count = 1, .reusable = true}, SHIFT(1080), + [2932] = {.count = 1, .reusable = false}, SHIFT(1080), + [2934] = {.count = 1, .reusable = true}, SHIFT(1081), + [2936] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4), + [2938] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4), + [2940] = {.count = 1, .reusable = true}, SHIFT(1082), + [2942] = {.count = 1, .reusable = true}, SHIFT(1083), + [2944] = {.count = 1, .reusable = false}, SHIFT(1083), + [2946] = {.count = 1, .reusable = true}, SHIFT(1084), + [2948] = {.count = 1, .reusable = true}, SHIFT(1085), + [2950] = {.count = 1, .reusable = false}, SHIFT(1085), + [2952] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), + [2954] = {.count = 1, .reusable = false}, SHIFT(230), + [2956] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), + [2958] = {.count = 1, .reusable = false}, SHIFT(242), + [2960] = {.count = 1, .reusable = true}, SHIFT(1086), + [2962] = {.count = 1, .reusable = false}, SHIFT(1086), + [2964] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), + [2966] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), + [2968] = {.count = 1, .reusable = true}, SHIFT(1087), + [2970] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), + [2972] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), + [2974] = {.count = 1, .reusable = true}, SHIFT(1089), + [2976] = {.count = 1, .reusable = false}, SHIFT(1089), + [2978] = {.count = 1, .reusable = false}, SHIFT(262), + [2980] = {.count = 1, .reusable = false}, SHIFT(264), + [2982] = {.count = 1, .reusable = true}, SHIFT(1091), + [2984] = {.count = 1, .reusable = false}, SHIFT(1091), + [2986] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), + [2988] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), + [2990] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), + [2992] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [2994] = {.count = 1, .reusable = true}, SHIFT(1092), + [2996] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1093), + [2999] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), + [3001] = {.count = 1, .reusable = false}, SHIFT(340), + [3003] = {.count = 1, .reusable = false}, SHIFT(341), + [3005] = {.count = 1, .reusable = true}, SHIFT(1094), + [3007] = {.count = 1, .reusable = false}, SHIFT(1094), + [3009] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 40), + [3011] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 41), + [3013] = {.count = 1, .reusable = false}, SHIFT(370), + [3015] = {.count = 1, .reusable = false}, SHIFT(371), + [3017] = {.count = 1, .reusable = true}, SHIFT(1095), + [3019] = {.count = 1, .reusable = false}, SHIFT(1095), + [3021] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), + [3023] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 6), + [3025] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 6), + [3027] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), + [3029] = {.count = 1, .reusable = true}, SHIFT(1096), + [3031] = {.count = 1, .reusable = true}, SHIFT(1097), + [3033] = {.count = 1, .reusable = false}, SHIFT(1098), + [3035] = {.count = 1, .reusable = true}, SHIFT(1101), + [3037] = {.count = 1, .reusable = true}, SHIFT(1102), + [3039] = {.count = 1, .reusable = false}, SHIFT(1103), + [3041] = {.count = 1, .reusable = true}, SHIFT(1106), + [3043] = {.count = 1, .reusable = true}, SHIFT(1107), + [3045] = {.count = 1, .reusable = false}, SHIFT(1108), + [3047] = {.count = 1, .reusable = false}, SHIFT(1111), + [3049] = {.count = 1, .reusable = false}, SHIFT(1115), + [3051] = {.count = 1, .reusable = false}, SHIFT(1119), + [3053] = {.count = 1, .reusable = false}, SHIFT(1123), + [3055] = {.count = 1, .reusable = false}, SHIFT(1124), + [3057] = {.count = 1, .reusable = false}, SHIFT(1125), + [3059] = {.count = 1, .reusable = false}, SHIFT(1126), + [3061] = {.count = 1, .reusable = false}, SHIFT(1127), + [3063] = {.count = 1, .reusable = false}, SHIFT(1128), + [3065] = {.count = 1, .reusable = false}, SHIFT(1129), + [3067] = {.count = 1, .reusable = false}, SHIFT(1131), + [3069] = {.count = 1, .reusable = true}, SHIFT(1133), + [3071] = {.count = 1, .reusable = false}, SHIFT(1134), + [3073] = {.count = 1, .reusable = true}, SHIFT(1138), + [3075] = {.count = 1, .reusable = true}, SHIFT(1139), + [3077] = {.count = 1, .reusable = true}, SHIFT(1140), + [3079] = {.count = 1, .reusable = false}, SHIFT(1140), + [3081] = {.count = 1, .reusable = true}, SHIFT(1141), + [3083] = {.count = 1, .reusable = true}, SHIFT(1142), + [3085] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(148), + [3088] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(149), + [3091] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(853), + [3094] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(854), + [3097] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(855), + [3100] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(153), + [3103] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(856), + [3106] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(154), + [3109] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(541), + [3112] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(857), + [3115] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(858), + [3118] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(859), + [3121] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(860), + [3124] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(861), + [3127] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(862), + [3130] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(863), + [3133] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(864), + [3136] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(865), + [3139] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(866), + [3142] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(867), + [3145] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(872), + [3148] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(872), + [3151] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(868), + [3154] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 32), + [3156] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 33), + [3158] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 14), + [3160] = {.count = 1, .reusable = true}, SHIFT(1148), + [3162] = {.count = 1, .reusable = false}, SHIFT(1148), + [3164] = {.count = 1, .reusable = true}, SHIFT(1149), + [3166] = {.count = 1, .reusable = true}, SHIFT(1151), + [3168] = {.count = 1, .reusable = true}, SHIFT(1152), + [3170] = {.count = 1, .reusable = false}, SHIFT(1153), + [3172] = {.count = 1, .reusable = true}, SHIFT(1155), + [3174] = {.count = 1, .reusable = true}, SHIFT(1157), + [3176] = {.count = 1, .reusable = true}, SHIFT(1158), + [3178] = {.count = 1, .reusable = false}, SHIFT(1158), + [3180] = {.count = 1, .reusable = true}, SHIFT(1159), + [3182] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 34), + [3184] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 34), + [3186] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 35), + [3188] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 35), + [3190] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 36), + [3192] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 36), + [3194] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 37), + [3196] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 37), + [3198] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 38), + [3200] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 38), + [3202] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 39), + [3204] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 39), + [3206] = {.count = 1, .reusable = false}, SHIFT(400), + [3208] = {.count = 1, .reusable = false}, SHIFT(401), + [3210] = {.count = 1, .reusable = true}, SHIFT(1160), + [3212] = {.count = 1, .reusable = false}, SHIFT(1160), + [3214] = {.count = 1, .reusable = false}, SHIFT(1161), + [3216] = {.count = 1, .reusable = true}, SHIFT(1162), + [3218] = {.count = 1, .reusable = true}, SHIFT(1163), + [3220] = {.count = 1, .reusable = false}, SHIFT(1163), + [3222] = {.count = 1, .reusable = true}, SHIFT(1164), + [3224] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [3226] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [3228] = {.count = 1, .reusable = false}, SHIFT(415), + [3230] = {.count = 1, .reusable = false}, SHIFT(416), + [3232] = {.count = 1, .reusable = true}, SHIFT(1165), + [3234] = {.count = 1, .reusable = false}, SHIFT(1165), + [3236] = {.count = 1, .reusable = true}, SHIFT(1167), + [3238] = {.count = 1, .reusable = false}, SHIFT(1168), + [3240] = {.count = 1, .reusable = true}, SHIFT(1169), + [3242] = {.count = 1, .reusable = true}, SHIFT(1170), + [3244] = {.count = 1, .reusable = false}, SHIFT(1170), + [3246] = {.count = 1, .reusable = true}, SHIFT(1171), + [3248] = {.count = 1, .reusable = true}, SHIFT(1172), + [3250] = {.count = 1, .reusable = false}, SHIFT(1172), + [3252] = {.count = 1, .reusable = true}, SHIFT(1173), + [3254] = {.count = 1, .reusable = true}, SHIFT(1174), + [3256] = {.count = 1, .reusable = false}, SHIFT(1174), + [3258] = {.count = 1, .reusable = true}, SHIFT(1176), + [3260] = {.count = 1, .reusable = true}, SHIFT(1178), + [3262] = {.count = 1, .reusable = false}, SHIFT(1178), + [3264] = {.count = 1, .reusable = true}, SHIFT(1179), + [3266] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3268] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), + [3270] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), + [3272] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(966), + [3275] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), + [3277] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), + [3279] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), + [3281] = {.count = 1, .reusable = true}, SHIFT(1180), + [3283] = {.count = 1, .reusable = true}, SHIFT(1181), + [3285] = {.count = 1, .reusable = true}, SHIFT(1182), + [3287] = {.count = 1, .reusable = true}, SHIFT(1183), + [3289] = {.count = 1, .reusable = true}, SHIFT(1184), + [3291] = {.count = 1, .reusable = true}, SHIFT(1185), + [3293] = {.count = 1, .reusable = true}, SHIFT(1186), + [3295] = {.count = 1, .reusable = true}, SHIFT(1187), + [3297] = {.count = 1, .reusable = false}, SHIFT(1188), + [3299] = {.count = 1, .reusable = true}, SHIFT(1191), + [3301] = {.count = 1, .reusable = true}, SHIFT(1192), + [3303] = {.count = 1, .reusable = false}, SHIFT(1193), + [3305] = {.count = 1, .reusable = true}, SHIFT(1196), + [3307] = {.count = 1, .reusable = true}, SHIFT(1197), + [3309] = {.count = 1, .reusable = false}, SHIFT(1198), + [3311] = {.count = 1, .reusable = true}, SHIFT(1203), + [3313] = {.count = 1, .reusable = false}, SHIFT(1203), + [3315] = {.count = 1, .reusable = true}, SHIFT(1204), + [3317] = {.count = 1, .reusable = true}, SHIFT(1206), + [3319] = {.count = 1, .reusable = true}, SHIFT(1207), + [3321] = {.count = 1, .reusable = false}, SHIFT(1208), + [3323] = {.count = 1, .reusable = true}, SHIFT(1210), + [3325] = {.count = 1, .reusable = true}, SHIFT(1212), + [3327] = {.count = 1, .reusable = true}, SHIFT(1213), + [3329] = {.count = 1, .reusable = false}, SHIFT(1213), + [3331] = {.count = 1, .reusable = true}, SHIFT(1214), + [3333] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 40), + [3335] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 41), + [3337] = {.count = 1, .reusable = true}, SHIFT(1216), + [3339] = {.count = 1, .reusable = false}, SHIFT(1217), + [3341] = {.count = 1, .reusable = true}, SHIFT(1218), + [3343] = {.count = 1, .reusable = true}, SHIFT(1219), + [3345] = {.count = 1, .reusable = false}, SHIFT(1219), + [3347] = {.count = 1, .reusable = true}, SHIFT(1221), + [3349] = {.count = 1, .reusable = false}, SHIFT(1221), + [3351] = {.count = 1, .reusable = true}, SHIFT(1223), + [3353] = {.count = 1, .reusable = true}, SHIFT(1224), + [3355] = {.count = 1, .reusable = false}, SHIFT(1224), + [3357] = {.count = 1, .reusable = true}, SHIFT(1225), + [3359] = {.count = 1, .reusable = true}, SHIFT(1226), + [3361] = {.count = 1, .reusable = false}, SHIFT(1226), + [3363] = {.count = 1, .reusable = true}, SHIFT(1227), + [3365] = {.count = 1, .reusable = true}, SHIFT(1228), + [3367] = {.count = 1, .reusable = false}, SHIFT(1228), + [3369] = {.count = 1, .reusable = true}, SHIFT(1229), + [3371] = {.count = 1, .reusable = true}, SHIFT(1230), + [3373] = {.count = 1, .reusable = false}, SHIFT(1230), + [3375] = {.count = 1, .reusable = true}, SHIFT(1231), + [3377] = {.count = 1, .reusable = true}, SHIFT(1232), + [3379] = {.count = 1, .reusable = true}, SHIFT(1233), + [3381] = {.count = 1, .reusable = false}, SHIFT(1233), + [3383] = {.count = 1, .reusable = true}, SHIFT(1234), + [3385] = {.count = 1, .reusable = true}, SHIFT(1235), + [3387] = {.count = 1, .reusable = true}, SHIFT(1237), + [3389] = {.count = 1, .reusable = false}, SHIFT(1237), + [3391] = {.count = 1, .reusable = true}, SHIFT(1238), + [3393] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [3395] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [3397] = {.count = 1, .reusable = true}, SHIFT(1240), + [3399] = {.count = 1, .reusable = true}, SHIFT(1242), + [3401] = {.count = 1, .reusable = false}, SHIFT(1242), + [3403] = {.count = 1, .reusable = true}, SHIFT(1243), + [3405] = {.count = 1, .reusable = true}, SHIFT(1244), + [3407] = {.count = 1, .reusable = true}, SHIFT(1245), + [3409] = {.count = 1, .reusable = true}, SHIFT(1246), + [3411] = {.count = 1, .reusable = true}, SHIFT(1247), + [3413] = {.count = 1, .reusable = true}, SHIFT(1248), + [3415] = {.count = 1, .reusable = true}, SHIFT(1250), + [3417] = {.count = 1, .reusable = false}, SHIFT(1251), + [3419] = {.count = 1, .reusable = true}, SHIFT(1252), + [3421] = {.count = 1, .reusable = true}, SHIFT(1253), + [3423] = {.count = 1, .reusable = false}, SHIFT(1253), + [3425] = {.count = 1, .reusable = true}, SHIFT(1255), + [3427] = {.count = 1, .reusable = false}, SHIFT(1255), + [3429] = {.count = 1, .reusable = true}, SHIFT(1257), + [3431] = {.count = 1, .reusable = true}, SHIFT(1258), + [3433] = {.count = 1, .reusable = false}, SHIFT(1258), + [3435] = {.count = 1, .reusable = true}, SHIFT(1259), + [3437] = {.count = 1, .reusable = true}, SHIFT(1260), + [3439] = {.count = 1, .reusable = false}, SHIFT(1260), + [3441] = {.count = 1, .reusable = false}, SHIFT(1261), + [3443] = {.count = 1, .reusable = true}, SHIFT(1262), + [3445] = {.count = 1, .reusable = true}, SHIFT(1263), + [3447] = {.count = 1, .reusable = false}, SHIFT(1263), + [3449] = {.count = 1, .reusable = true}, SHIFT(1264), + [3451] = {.count = 1, .reusable = true}, SHIFT(1265), + [3453] = {.count = 1, .reusable = true}, SHIFT(1267), + [3455] = {.count = 1, .reusable = true}, SHIFT(1269), + [3457] = {.count = 1, .reusable = false}, SHIFT(1269), + [3459] = {.count = 1, .reusable = true}, SHIFT(1270), + [3461] = {.count = 1, .reusable = true}, SHIFT(1271), + [3463] = {.count = 1, .reusable = true}, SHIFT(1273), + [3465] = {.count = 1, .reusable = false}, SHIFT(1273), + [3467] = {.count = 1, .reusable = true}, SHIFT(1274), + [3469] = {.count = 1, .reusable = true}, SHIFT(1275), + [3471] = {.count = 1, .reusable = true}, SHIFT(1276), + [3473] = {.count = 1, .reusable = false}, SHIFT(1276), + [3475] = {.count = 1, .reusable = true}, SHIFT(1277), + [3477] = {.count = 1, .reusable = true}, SHIFT(1278), + [3479] = {.count = 1, .reusable = false}, SHIFT(1278), + [3481] = {.count = 1, .reusable = true}, SHIFT(1279), + [3483] = {.count = 1, .reusable = true}, SHIFT(1281), + [3485] = {.count = 1, .reusable = false}, SHIFT(1281), + [3487] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), + [3489] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), + [3491] = {.count = 1, .reusable = true}, SHIFT(1283), + [3493] = {.count = 1, .reusable = false}, SHIFT(1285), + [3495] = {.count = 1, .reusable = true}, SHIFT(1286), + [3497] = {.count = 1, .reusable = true}, SHIFT(1287), + [3499] = {.count = 1, .reusable = false}, SHIFT(1287), + [3501] = {.count = 1, .reusable = true}, SHIFT(1288), + [3503] = {.count = 1, .reusable = true}, SHIFT(1289), + [3505] = {.count = 1, .reusable = true}, SHIFT(1291), + [3507] = {.count = 1, .reusable = true}, SHIFT(1293), + [3509] = {.count = 1, .reusable = false}, SHIFT(1293), + [3511] = {.count = 1, .reusable = true}, SHIFT(1294), + [3513] = {.count = 1, .reusable = true}, SHIFT(1295), + [3515] = {.count = 1, .reusable = true}, SHIFT(1296), + [3517] = {.count = 1, .reusable = false}, SHIFT(1296), + [3519] = {.count = 1, .reusable = true}, SHIFT(1297), + [3521] = {.count = 1, .reusable = true}, SHIFT(1298), + [3523] = {.count = 1, .reusable = false}, SHIFT(1298), + [3525] = {.count = 1, .reusable = true}, SHIFT(1300), + [3527] = {.count = 1, .reusable = true}, SHIFT(1302), + [3529] = {.count = 1, .reusable = false}, SHIFT(1302), + [3531] = {.count = 1, .reusable = true}, SHIFT(1303), + [3533] = {.count = 1, .reusable = true}, SHIFT(1305), + [3535] = {.count = 1, .reusable = false}, SHIFT(1305), + [3537] = {.count = 1, .reusable = true}, SHIFT(1306), + [3539] = {.count = 1, .reusable = true}, SHIFT(1308), + [3541] = {.count = 1, .reusable = false}, SHIFT(1308), + [3543] = {.count = 1, .reusable = true}, SHIFT(1309), + [3545] = {.count = 1, .reusable = true}, SHIFT(1310), + [3547] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), + [3549] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), + [3551] = {.count = 1, .reusable = true}, SHIFT(1313), + [3553] = {.count = 1, .reusable = true}, SHIFT(1314), + [3555] = {.count = 1, .reusable = true}, SHIFT(1315), + [3557] = {.count = 1, .reusable = false}, SHIFT(1315), + [3559] = {.count = 1, .reusable = true}, SHIFT(1316), + [3561] = {.count = 1, .reusable = true}, SHIFT(1317), + [3563] = {.count = 1, .reusable = false}, SHIFT(1317), + [3565] = {.count = 1, .reusable = true}, SHIFT(1319), + [3567] = {.count = 1, .reusable = true}, SHIFT(1321), + [3569] = {.count = 1, .reusable = false}, SHIFT(1321), + [3571] = {.count = 1, .reusable = true}, SHIFT(1322), + [3573] = {.count = 1, .reusable = true}, SHIFT(1324), + [3575] = {.count = 1, .reusable = false}, SHIFT(1324), + [3577] = {.count = 1, .reusable = true}, SHIFT(1325), + [3579] = {.count = 1, .reusable = true}, SHIFT(1327), + [3581] = {.count = 1, .reusable = true}, SHIFT(1329), + [3583] = {.count = 1, .reusable = true}, SHIFT(1331), + [3585] = {.count = 1, .reusable = true}, SHIFT(1333), + [3587] = {.count = 1, .reusable = false}, SHIFT(1333), + [3589] = {.count = 1, .reusable = true}, SHIFT(1334), + [3591] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), + [3593] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), + [3595] = {.count = 1, .reusable = true}, SHIFT(1336), + [3597] = {.count = 1, .reusable = true}, SHIFT(1338), + [3599] = {.count = 1, .reusable = false}, SHIFT(1338), + [3601] = {.count = 1, .reusable = true}, SHIFT(1339), + [3603] = {.count = 1, .reusable = true}, SHIFT(1341), + [3605] = {.count = 1, .reusable = true}, SHIFT(1343), + [3607] = {.count = 1, .reusable = true}, SHIFT(1345), + [3609] = {.count = 1, .reusable = false}, SHIFT(1345), + [3611] = {.count = 1, .reusable = true}, SHIFT(1347), + [3613] = {.count = 1, .reusable = true}, SHIFT(1348), + [3615] = {.count = 1, .reusable = true}, SHIFT(1349), + [3617] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), + [3619] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), + [3621] = {.count = 1, .reusable = true}, SHIFT(1351), + [3623] = {.count = 1, .reusable = true}, SHIFT(1353), + [3625] = {.count = 1, .reusable = false}, SHIFT(1353), + [3627] = {.count = 1, .reusable = true}, SHIFT(1355), + [3629] = {.count = 1, .reusable = true}, SHIFT(1356), + [3631] = {.count = 1, .reusable = true}, SHIFT(1359), + [3633] = {.count = 1, .reusable = true}, SHIFT(1360), + [3635] = {.count = 1, .reusable = true}, SHIFT(1363), + [3637] = {.count = 1, .reusable = true}, SHIFT(1364), }; #ifdef _WIN32