diff --git a/corpus/statements.txt b/corpus/statements.txt index 075938c..e880db2 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -110,6 +110,49 @@ recur: (call_expression (field_expression (identifier) (field_identifier)) (argument_list))))) (if_statement (parenthesized_expression (identifier)) (goto_statement (statement_identifier)))))) +============================================ +Switch statements +============================================ + +void foo(int a) { + switch (a) { + puts("entered switch!"); + + case 3: + case 5: + if (b) { + c(); + } + break; + + default: + c(); + break; + } +} + +--- + +(translation_unit + (function_definition + (primitive_type) + (function_declarator (identifier) (parameter_list + (parameter_declaration (primitive_type) (identifier)))) + (compound_statement + (switch_statement + (parenthesized_expression (identifier)) + (compound_statement + (expression_statement (call_expression (identifier) (argument_list (string_literal)))) + (case_statement (number_literal)) + (case_statement (number_literal) + (if_statement + (parenthesized_expression (identifier)) + (compound_statement (expression_statement (call_expression (identifier) (argument_list))))) + (break_statement)) + (case_statement + (expression_statement (call_expression (identifier) (argument_list))) + (break_statement))))))) + ============================================ Comments with asterisks ============================================ diff --git a/grammar.js b/grammar.js index 6635b31..a367379 100644 --- a/grammar.js +++ b/grammar.js @@ -392,7 +392,6 @@ module.exports = grammar({ $.expression_statement, $.if_statement, $.switch_statement, - $.case_statement, $.do_statement, $.while_statement, $.for_statement, @@ -429,21 +428,27 @@ module.exports = grammar({ switch_statement: $ => seq( 'switch', $.parenthesized_expression, - $._statement + alias($.switch_body, $.compound_statement) + ), + + switch_body: $ => seq( + '{', + repeat(choice($.case_statement, $._statement)), + '}' ), - case_statement: $ => seq( + case_statement: $ => prec.right(seq( choice( seq('case', $._expression), 'default' ), ':', - choice( + repeat(choice( $._statement, $.declaration, $.type_definition - ) - ), + )) + )), while_statement: $ => seq( 'while', diff --git a/src/grammar.json b/src/grammar.json index 622e2f8..7b47de1 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2469,10 +2469,6 @@ "type": "SYMBOL", "name": "switch_statement" }, - { - "type": "SYMBOL", - "name": "case_statement" - }, { "type": "SYMBOL", "name": "do_statement" @@ -2604,58 +2600,99 @@ "name": "parenthesized_expression" }, { - "type": "SYMBOL", - "name": "_statement" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "switch_body" + }, + "named": true, + "value": "compound_statement" } ] }, - "case_statement": { + "switch_body": { "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "case_statement" + }, + { + "type": "SYMBOL", + "name": "_statement" + } + ] + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "case_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "case" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + { + "type": "STRING", + "value": "default" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "case" + "type": "SYMBOL", + "name": "_statement" }, { "type": "SYMBOL", - "name": "_expression" + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "type_definition" } ] - }, - { - "type": "STRING", - "value": "default" - } - ] - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "SYMBOL", - "name": "declaration" - }, - { - "type": "SYMBOL", - "name": "type_definition" } - ] - } - ] + } + ] + } }, "while_statement": { "type": "SEQ", diff --git a/src/parser.c b/src/parser.c index 0d59931..d95adfa 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,8 +6,8 @@ #endif #define LANGUAGE_VERSION 9 -#define STATE_COUNT 1306 -#define SYMBOL_COUNT 214 +#define STATE_COUNT 1362 +#define SYMBOL_COUNT 217 #define ALIAS_COUNT 3 #define TOKEN_COUNT 101 #define EXTERNAL_TOKEN_COUNT 0 @@ -174,62 +174,65 @@ enum { sym_expression_statement = 158, sym_if_statement = 159, sym_switch_statement = 160, - sym_case_statement = 161, - sym_while_statement = 162, - sym_do_statement = 163, - sym_for_statement = 164, - sym_return_statement = 165, - sym_break_statement = 166, - sym_continue_statement = 167, - sym_goto_statement = 168, - sym__expression = 169, - sym_comma_expression = 170, - sym_conditional_expression = 171, - sym_assignment_expression = 172, - sym_pointer_expression = 173, - sym_logical_expression = 174, - sym_bitwise_expression = 175, - sym_equality_expression = 176, - sym_relational_expression = 177, - sym_shift_expression = 178, - sym_math_expression = 179, - sym_cast_expression = 180, - sym_type_descriptor = 181, - sym_sizeof_expression = 182, - sym_subscript_expression = 183, - sym_call_expression = 184, - sym_argument_list = 185, - sym_field_expression = 186, - sym_compound_literal_expression = 187, - sym_parenthesized_expression = 188, - sym_initializer_list = 189, - sym_initializer_pair = 190, - sym_subscript_designator = 191, - sym_field_designator = 192, - sym_char_literal = 193, - sym_concatenated_string = 194, - sym_string_literal = 195, - sym__empty_declaration = 196, - sym_macro_type_specifier = 197, - aux_sym_translation_unit_repeat1 = 198, - aux_sym_preproc_params_repeat1 = 199, - aux_sym_preproc_if_in_compound_statement_repeat1 = 200, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 201, - aux_sym_declaration_repeat1 = 202, - aux_sym_type_definition_repeat1 = 203, - aux_sym__declaration_specifiers_repeat1 = 204, - aux_sym_sized_type_specifier_repeat1 = 205, - aux_sym_enumerator_list_repeat1 = 206, - aux_sym_field_declaration_repeat1 = 207, - aux_sym_parameter_list_repeat1 = 208, - aux_sym_for_statement_repeat1 = 209, - aux_sym_initializer_list_repeat1 = 210, - aux_sym_initializer_pair_repeat1 = 211, - aux_sym_concatenated_string_repeat1 = 212, - aux_sym_string_literal_repeat1 = 213, - alias_sym_field_identifier = 214, - alias_sym_statement_identifier = 215, - alias_sym_type_identifier = 216, + sym_switch_body = 161, + sym_case_statement = 162, + sym_while_statement = 163, + sym_do_statement = 164, + sym_for_statement = 165, + sym_return_statement = 166, + sym_break_statement = 167, + sym_continue_statement = 168, + sym_goto_statement = 169, + sym__expression = 170, + sym_comma_expression = 171, + sym_conditional_expression = 172, + sym_assignment_expression = 173, + sym_pointer_expression = 174, + sym_logical_expression = 175, + sym_bitwise_expression = 176, + sym_equality_expression = 177, + sym_relational_expression = 178, + sym_shift_expression = 179, + sym_math_expression = 180, + sym_cast_expression = 181, + sym_type_descriptor = 182, + sym_sizeof_expression = 183, + sym_subscript_expression = 184, + sym_call_expression = 185, + sym_argument_list = 186, + sym_field_expression = 187, + sym_compound_literal_expression = 188, + sym_parenthesized_expression = 189, + sym_initializer_list = 190, + sym_initializer_pair = 191, + sym_subscript_designator = 192, + sym_field_designator = 193, + sym_char_literal = 194, + sym_concatenated_string = 195, + sym_string_literal = 196, + sym__empty_declaration = 197, + sym_macro_type_specifier = 198, + aux_sym_translation_unit_repeat1 = 199, + aux_sym_preproc_params_repeat1 = 200, + aux_sym_preproc_if_in_compound_statement_repeat1 = 201, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 202, + aux_sym_declaration_repeat1 = 203, + aux_sym_type_definition_repeat1 = 204, + aux_sym__declaration_specifiers_repeat1 = 205, + aux_sym_sized_type_specifier_repeat1 = 206, + aux_sym_enumerator_list_repeat1 = 207, + aux_sym_field_declaration_repeat1 = 208, + aux_sym_parameter_list_repeat1 = 209, + aux_sym_switch_body_repeat1 = 210, + aux_sym_case_statement_repeat1 = 211, + aux_sym_for_statement_repeat1 = 212, + aux_sym_initializer_list_repeat1 = 213, + aux_sym_initializer_pair_repeat1 = 214, + aux_sym_concatenated_string_repeat1 = 215, + aux_sym_string_literal_repeat1 = 216, + alias_sym_field_identifier = 217, + alias_sym_statement_identifier = 218, + alias_sym_type_identifier = 219, }; static const char *ts_symbol_names[] = { @@ -394,6 +397,7 @@ static const char *ts_symbol_names[] = { [sym_expression_statement] = "expression_statement", [sym_if_statement] = "if_statement", [sym_switch_statement] = "switch_statement", + [sym_switch_body] = "compound_statement", [sym_case_statement] = "case_statement", [sym_while_statement] = "while_statement", [sym_do_statement] = "do_statement", @@ -442,6 +446,8 @@ static const char *ts_symbol_names[] = { [aux_sym_enumerator_list_repeat1] = "enumerator_list_repeat1", [aux_sym_field_declaration_repeat1] = "field_declaration_repeat1", [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", + [aux_sym_switch_body_repeat1] = "switch_body_repeat1", + [aux_sym_case_statement_repeat1] = "case_statement_repeat1", [aux_sym_for_statement_repeat1] = "for_statement_repeat1", [aux_sym_initializer_list_repeat1] = "initializer_list_repeat1", [aux_sym_initializer_pair_repeat1] = "initializer_pair_repeat1", @@ -1097,6 +1103,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_switch_body] = { + .visible = true, + .named = true, + }, [sym_case_statement] = { .visible = true, .named = true, @@ -1289,6 +1299,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_switch_body_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_case_statement_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_for_statement_repeat1] = { .visible = false, .named = false, @@ -2651,6 +2669,83 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(114); END_STATE(); case 145: + if (lookahead == '\n') + SKIP(146); + if (lookahead == '/') + ADVANCE(147); + if (lookahead == '\\') + ADVANCE(148); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(149); + if (lookahead != 0 && + lookahead != '\'') + ADVANCE(149); + END_STATE(); + case 146: + if (lookahead == '/') + ADVANCE(122); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(146); + END_STATE(); + case 147: + ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); + if (lookahead == '*') + ADVANCE(60); + if (lookahead == '/') + ADVANCE(63); + END_STATE(); + case 148: + ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); + if (lookahead == 'U') + ADVANCE(89); + if (lookahead == 'u') + ADVANCE(93); + if (lookahead == 'x') + ADVANCE(98); + if (('0' <= lookahead && lookahead <= '9')) + ADVANCE(101); + if (lookahead != 0) + ADVANCE(97); + END_STATE(); + case 149: + ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); + END_STATE(); + case 150: + if (lookahead == '\n') + SKIP(151); + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '/') + ADVANCE(152); + if (lookahead == '\\') + ADVANCE(88); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(152); + if (lookahead != 0) + ADVANCE(152); + END_STATE(); + case 151: + if (lookahead == '\"') + ADVANCE(4); + if (lookahead == '/') + ADVANCE(122); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(151); + END_STATE(); + case 152: + ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH); + END_STATE(); + case 153: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -2703,7 +2798,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(145); + SKIP(153); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(73); if (('A' <= lookahead && lookahead <= 'Z') || @@ -2711,83 +2806,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(114); END_STATE(); - case 146: - if (lookahead == '\n') - SKIP(147); - if (lookahead == '/') - ADVANCE(148); - if (lookahead == '\\') - ADVANCE(149); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(150); - if (lookahead != 0 && - lookahead != '\'') - ADVANCE(150); - END_STATE(); - case 147: - if (lookahead == '/') - ADVANCE(122); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(147); - END_STATE(); - case 148: - ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); - if (lookahead == '*') - ADVANCE(60); - if (lookahead == '/') - ADVANCE(63); - END_STATE(); - case 149: - ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); - if (lookahead == 'U') - ADVANCE(89); - if (lookahead == 'u') - ADVANCE(93); - if (lookahead == 'x') - ADVANCE(98); - if (('0' <= lookahead && lookahead <= '9')) - ADVANCE(101); - if (lookahead != 0) - ADVANCE(97); - END_STATE(); - case 150: - ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH); - END_STATE(); - case 151: - if (lookahead == '\n') - SKIP(152); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '/') - ADVANCE(153); - if (lookahead == '\\') - ADVANCE(88); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(153); - if (lookahead != 0) - ADVANCE(153); - END_STATE(); - case 152: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '/') - ADVANCE(122); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(152); - END_STATE(); - case 153: - ACCEPT_TOKEN(aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH); - END_STATE(); case 154: if (lookahead == 0) ADVANCE(1); @@ -4322,7 +4340,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [18] = {.lex_state = 115}, [19] = {.lex_state = 115}, [20] = {.lex_state = 115}, - [21] = {.lex_state = 145}, + [21] = {.lex_state = 115}, [22] = {.lex_state = 115}, [23] = {.lex_state = 115}, [24] = {.lex_state = 115}, @@ -4332,1281 +4350,1337 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [28] = {.lex_state = 115}, [29] = {.lex_state = 115}, [30] = {.lex_state = 115}, - [31] = {.lex_state = 115}, - [32] = {.lex_state = 115}, - [33] = {.lex_state = 146}, - [34] = {.lex_state = 151}, - [35] = {.lex_state = 145}, - [36] = {.lex_state = 154}, - [37] = {.lex_state = 115}, + [31] = {.lex_state = 145}, + [32] = {.lex_state = 150}, + [33] = {.lex_state = 153}, + [34] = {.lex_state = 154}, + [35] = {.lex_state = 115}, + [36] = {.lex_state = 115}, + [37] = {.lex_state = 153}, [38] = {.lex_state = 115}, - [39] = {.lex_state = 145}, + [39] = {.lex_state = 153}, [40] = {.lex_state = 115}, - [41] = {.lex_state = 145}, + [41] = {.lex_state = 115}, [42] = {.lex_state = 115}, - [43] = {.lex_state = 115}, - [44] = {.lex_state = 115}, - [45] = {.lex_state = 151}, - [46] = {.lex_state = 140}, - [47] = {.lex_state = 155}, - [48] = {.lex_state = 156}, - [49] = {.lex_state = 156}, - [50] = {.lex_state = 140}, - [51] = {.lex_state = 157}, - [52] = {.lex_state = 141}, + [43] = {.lex_state = 150}, + [44] = {.lex_state = 140}, + [45] = {.lex_state = 155}, + [46] = {.lex_state = 156}, + [47] = {.lex_state = 156}, + [48] = {.lex_state = 140}, + [49] = {.lex_state = 157}, + [50] = {.lex_state = 141}, + [51] = {.lex_state = 115}, + [52] = {.lex_state = 115}, [53] = {.lex_state = 115}, [54] = {.lex_state = 115}, - [55] = {.lex_state = 115}, + [55] = {.lex_state = 128}, [56] = {.lex_state = 115}, - [57] = {.lex_state = 128}, + [57] = {.lex_state = 140}, [58] = {.lex_state = 115}, - [59] = {.lex_state = 140}, + [59] = {.lex_state = 115}, [60] = {.lex_state = 115}, - [61] = {.lex_state = 115}, + [61] = {.lex_state = 153}, [62] = {.lex_state = 115}, - [63] = {.lex_state = 145}, + [63] = {.lex_state = 140}, [64] = {.lex_state = 115}, [65] = {.lex_state = 115}, - [66] = {.lex_state = 145}, + [66] = {.lex_state = 115}, [67] = {.lex_state = 115}, - [68] = {.lex_state = 140}, + [68] = {.lex_state = 115}, [69] = {.lex_state = 115}, - [70] = {.lex_state = 115}, - [71] = {.lex_state = 115}, - [72] = {.lex_state = 115}, - [73] = {.lex_state = 115}, - [74] = {.lex_state = 115}, + [70] = {.lex_state = 158}, + [71] = {.lex_state = 158}, + [72] = {.lex_state = 158}, + [73] = {.lex_state = 158}, + [74] = {.lex_state = 158}, [75] = {.lex_state = 158}, - [76] = {.lex_state = 158}, + [76] = {.lex_state = 115}, [77] = {.lex_state = 158}, - [78] = {.lex_state = 158}, - [79] = {.lex_state = 158}, - [80] = {.lex_state = 158}, - [81] = {.lex_state = 115}, - [82] = {.lex_state = 158}, - [83] = {.lex_state = 159}, - [84] = {.lex_state = 161}, + [78] = {.lex_state = 159}, + [79] = {.lex_state = 161}, + [80] = {.lex_state = 141}, + [81] = {.lex_state = 141}, + [82] = {.lex_state = 162}, + [83] = {.lex_state = 141}, + [84] = {.lex_state = 141}, [85] = {.lex_state = 141}, [86] = {.lex_state = 141}, - [87] = {.lex_state = 162}, - [88] = {.lex_state = 141}, - [89] = {.lex_state = 141}, - [90] = {.lex_state = 141}, - [91] = {.lex_state = 141}, + [87] = {.lex_state = 115}, + [88] = {.lex_state = 115}, + [89] = {.lex_state = 115}, + [90] = {.lex_state = 115}, + [91] = {.lex_state = 115}, [92] = {.lex_state = 115}, [93] = {.lex_state = 115}, [94] = {.lex_state = 115}, [95] = {.lex_state = 115}, - [96] = {.lex_state = 115}, + [96] = {.lex_state = 153}, [97] = {.lex_state = 115}, [98] = {.lex_state = 115}, - [99] = {.lex_state = 115}, + [99] = {.lex_state = 140}, [100] = {.lex_state = 115}, - [101] = {.lex_state = 145}, - [102] = {.lex_state = 145}, + [101] = {.lex_state = 115}, + [102] = {.lex_state = 115}, [103] = {.lex_state = 115}, [104] = {.lex_state = 115}, [105] = {.lex_state = 115}, - [106] = {.lex_state = 115}, - [107] = {.lex_state = 115}, - [108] = {.lex_state = 145}, - [109] = {.lex_state = 115}, + [106] = {.lex_state = 153}, + [107] = {.lex_state = 153}, + [108] = {.lex_state = 140}, + [109] = {.lex_state = 140}, [110] = {.lex_state = 115}, - [111] = {.lex_state = 115}, - [112] = {.lex_state = 145}, - [113] = {.lex_state = 115}, + [111] = {.lex_state = 159}, + [112] = {.lex_state = 159}, + [113] = {.lex_state = 159}, [114] = {.lex_state = 115}, - [115] = {.lex_state = 140}, + [115] = {.lex_state = 153}, [116] = {.lex_state = 115}, - [117] = {.lex_state = 115}, - [118] = {.lex_state = 115}, + [117] = {.lex_state = 159}, + [118] = {.lex_state = 150}, [119] = {.lex_state = 115}, [120] = {.lex_state = 115}, - [121] = {.lex_state = 115}, - [122] = {.lex_state = 145}, - [123] = {.lex_state = 145}, - [124] = {.lex_state = 140}, - [125] = {.lex_state = 140}, + [121] = {.lex_state = 140}, + [122] = {.lex_state = 115}, + [123] = {.lex_state = 115}, + [124] = {.lex_state = 153}, + [125] = {.lex_state = 153}, [126] = {.lex_state = 115}, - [127] = {.lex_state = 159}, - [128] = {.lex_state = 159}, - [129] = {.lex_state = 159}, + [127] = {.lex_state = 115}, + [128] = {.lex_state = 140}, + [129] = {.lex_state = 173}, [130] = {.lex_state = 115}, - [131] = {.lex_state = 145}, + [131] = {.lex_state = 115}, [132] = {.lex_state = 115}, - [133] = {.lex_state = 159}, - [134] = {.lex_state = 151}, + [133] = {.lex_state = 115}, + [134] = {.lex_state = 115}, [135] = {.lex_state = 115}, [136] = {.lex_state = 115}, - [137] = {.lex_state = 140}, + [137] = {.lex_state = 115}, [138] = {.lex_state = 115}, [139] = {.lex_state = 115}, - [140] = {.lex_state = 145}, - [141] = {.lex_state = 145}, + [140] = {.lex_state = 115}, + [141] = {.lex_state = 115}, [142] = {.lex_state = 115}, - [143] = {.lex_state = 115}, - [144] = {.lex_state = 140}, - [145] = {.lex_state = 173}, - [146] = {.lex_state = 115}, + [143] = {.lex_state = 159}, + [144] = {.lex_state = 115}, + [145] = {.lex_state = 159}, + [146] = {.lex_state = 153}, [147] = {.lex_state = 115}, [148] = {.lex_state = 115}, [149] = {.lex_state = 115}, - [150] = {.lex_state = 115}, - [151] = {.lex_state = 115}, + [150] = {.lex_state = 141}, + [151] = {.lex_state = 141}, [152] = {.lex_state = 115}, - [153] = {.lex_state = 115}, - [154] = {.lex_state = 115}, - [155] = {.lex_state = 115}, - [156] = {.lex_state = 115}, - [157] = {.lex_state = 115}, - [158] = {.lex_state = 115}, - [159] = {.lex_state = 159}, + [153] = {.lex_state = 140}, + [154] = {.lex_state = 150}, + [155] = {.lex_state = 140}, + [156] = {.lex_state = 174}, + [157] = {.lex_state = 157}, + [158] = {.lex_state = 137}, + [159] = {.lex_state = 123}, [160] = {.lex_state = 115}, - [161] = {.lex_state = 159}, - [162] = {.lex_state = 145}, + [161] = {.lex_state = 128}, + [162] = {.lex_state = 140}, [163] = {.lex_state = 115}, - [164] = {.lex_state = 115}, - [165] = {.lex_state = 115}, - [166] = {.lex_state = 141}, - [167] = {.lex_state = 141}, + [164] = {.lex_state = 176}, + [165] = {.lex_state = 128}, + [166] = {.lex_state = 137}, + [167] = {.lex_state = 156}, [168] = {.lex_state = 115}, - [169] = {.lex_state = 140}, - [170] = {.lex_state = 151}, - [171] = {.lex_state = 140}, - [172] = {.lex_state = 174}, - [173] = {.lex_state = 157}, - [174] = {.lex_state = 137}, - [175] = {.lex_state = 123}, + [169] = {.lex_state = 115}, + [170] = {.lex_state = 140}, + [171] = {.lex_state = 115}, + [172] = {.lex_state = 115}, + [173] = {.lex_state = 115}, + [174] = {.lex_state = 115}, + [175] = {.lex_state = 115}, [176] = {.lex_state = 115}, - [177] = {.lex_state = 128}, - [178] = {.lex_state = 140}, + [177] = {.lex_state = 115}, + [178] = {.lex_state = 115}, [179] = {.lex_state = 115}, - [180] = {.lex_state = 176}, - [181] = {.lex_state = 128}, - [182] = {.lex_state = 137}, - [183] = {.lex_state = 156}, + [180] = {.lex_state = 153}, + [181] = {.lex_state = 179}, + [182] = {.lex_state = 115}, + [183] = {.lex_state = 153}, [184] = {.lex_state = 115}, - [185] = {.lex_state = 115}, + [185] = {.lex_state = 156}, [186] = {.lex_state = 140}, - [187] = {.lex_state = 115}, - [188] = {.lex_state = 115}, - [189] = {.lex_state = 115}, - [190] = {.lex_state = 145}, + [187] = {.lex_state = 179}, + [188] = {.lex_state = 156}, + [189] = {.lex_state = 140}, + [190] = {.lex_state = 115}, [191] = {.lex_state = 115}, - [192] = {.lex_state = 115}, - [193] = {.lex_state = 115}, + [192] = {.lex_state = 191}, + [193] = {.lex_state = 153}, [194] = {.lex_state = 115}, [195] = {.lex_state = 115}, [196] = {.lex_state = 115}, - [197] = {.lex_state = 115}, - [198] = {.lex_state = 145}, - [199] = {.lex_state = 179}, + [197] = {.lex_state = 140}, + [198] = {.lex_state = 140}, + [199] = {.lex_state = 115}, [200] = {.lex_state = 115}, - [201] = {.lex_state = 145}, + [201] = {.lex_state = 115}, [202] = {.lex_state = 115}, [203] = {.lex_state = 156}, - [204] = {.lex_state = 140}, - [205] = {.lex_state = 179}, - [206] = {.lex_state = 156}, - [207] = {.lex_state = 140}, + [204] = {.lex_state = 156}, + [205] = {.lex_state = 115}, + [206] = {.lex_state = 115}, + [207] = {.lex_state = 115}, [208] = {.lex_state = 115}, [209] = {.lex_state = 115}, - [210] = {.lex_state = 191}, - [211] = {.lex_state = 145}, - [212] = {.lex_state = 115}, - [213] = {.lex_state = 115}, + [210] = {.lex_state = 153}, + [211] = {.lex_state = 140}, + [212] = {.lex_state = 140}, + [213] = {.lex_state = 158}, [214] = {.lex_state = 115}, - [215] = {.lex_state = 140}, - [216] = {.lex_state = 140}, - [217] = {.lex_state = 115}, - [218] = {.lex_state = 115}, - [219] = {.lex_state = 115}, - [220] = {.lex_state = 115}, - [221] = {.lex_state = 156}, - [222] = {.lex_state = 156}, + [215] = {.lex_state = 158}, + [216] = {.lex_state = 174}, + [217] = {.lex_state = 158}, + [218] = {.lex_state = 192}, + [219] = {.lex_state = 158}, + [220] = {.lex_state = 158}, + [221] = {.lex_state = 115}, + [222] = {.lex_state = 159}, [223] = {.lex_state = 115}, [224] = {.lex_state = 115}, - [225] = {.lex_state = 145}, + [225] = {.lex_state = 115}, [226] = {.lex_state = 115}, [227] = {.lex_state = 115}, [228] = {.lex_state = 115}, [229] = {.lex_state = 115}, [230] = {.lex_state = 115}, - [231] = {.lex_state = 145}, - [232] = {.lex_state = 140}, - [233] = {.lex_state = 140}, - [234] = {.lex_state = 158}, + [231] = {.lex_state = 115}, + [232] = {.lex_state = 115}, + [233] = {.lex_state = 115}, + [234] = {.lex_state = 115}, [235] = {.lex_state = 115}, [236] = {.lex_state = 158}, - [237] = {.lex_state = 174}, + [237] = {.lex_state = 158}, [238] = {.lex_state = 158}, - [239] = {.lex_state = 192}, - [240] = {.lex_state = 158}, - [241] = {.lex_state = 158}, - [242] = {.lex_state = 115}, - [243] = {.lex_state = 159}, - [244] = {.lex_state = 115}, + [239] = {.lex_state = 140}, + [240] = {.lex_state = 141}, + [241] = {.lex_state = 161}, + [242] = {.lex_state = 161}, + [243] = {.lex_state = 141}, + [244] = {.lex_state = 128}, [245] = {.lex_state = 115}, - [246] = {.lex_state = 115}, - [247] = {.lex_state = 115}, - [248] = {.lex_state = 115}, - [249] = {.lex_state = 115}, + [246] = {.lex_state = 141}, + [247] = {.lex_state = 153}, + [248] = {.lex_state = 153}, + [249] = {.lex_state = 162}, [250] = {.lex_state = 115}, - [251] = {.lex_state = 115}, - [252] = {.lex_state = 115}, - [253] = {.lex_state = 115}, - [254] = {.lex_state = 115}, - [255] = {.lex_state = 115}, + [251] = {.lex_state = 153}, + [252] = {.lex_state = 141}, + [253] = {.lex_state = 141}, + [254] = {.lex_state = 158}, + [255] = {.lex_state = 158}, [256] = {.lex_state = 115}, - [257] = {.lex_state = 158}, - [258] = {.lex_state = 158}, - [259] = {.lex_state = 158}, - [260] = {.lex_state = 140}, - [261] = {.lex_state = 141}, - [262] = {.lex_state = 161}, - [263] = {.lex_state = 161}, - [264] = {.lex_state = 141}, - [265] = {.lex_state = 128}, + [257] = {.lex_state = 115}, + [258] = {.lex_state = 115}, + [259] = {.lex_state = 153}, + [260] = {.lex_state = 115}, + [261] = {.lex_state = 140}, + [262] = {.lex_state = 140}, + [263] = {.lex_state = 153}, + [264] = {.lex_state = 140}, + [265] = {.lex_state = 115}, [266] = {.lex_state = 115}, - [267] = {.lex_state = 141}, - [268] = {.lex_state = 145}, - [269] = {.lex_state = 145}, - [270] = {.lex_state = 162}, + [267] = {.lex_state = 115}, + [268] = {.lex_state = 115}, + [269] = {.lex_state = 115}, + [270] = {.lex_state = 115}, [271] = {.lex_state = 115}, - [272] = {.lex_state = 145}, - [273] = {.lex_state = 141}, - [274] = {.lex_state = 141}, + [272] = {.lex_state = 153}, + [273] = {.lex_state = 115}, + [274] = {.lex_state = 153}, [275] = {.lex_state = 158}, - [276] = {.lex_state = 158}, - [277] = {.lex_state = 115}, - [278] = {.lex_state = 115}, + [276] = {.lex_state = 115}, + [277] = {.lex_state = 153}, + [278] = {.lex_state = 140}, [279] = {.lex_state = 115}, - [280] = {.lex_state = 145}, + [280] = {.lex_state = 115}, [281] = {.lex_state = 115}, [282] = {.lex_state = 115}, - [283] = {.lex_state = 145}, + [283] = {.lex_state = 115}, [284] = {.lex_state = 115}, - [285] = {.lex_state = 145}, - [286] = {.lex_state = 140}, - [287] = {.lex_state = 158}, + [285] = {.lex_state = 115}, + [286] = {.lex_state = 115}, + [287] = {.lex_state = 115}, [288] = {.lex_state = 115}, - [289] = {.lex_state = 145}, + [289] = {.lex_state = 115}, [290] = {.lex_state = 115}, - [291] = {.lex_state = 115}, - [292] = {.lex_state = 115}, - [293] = {.lex_state = 115}, - [294] = {.lex_state = 115}, - [295] = {.lex_state = 115}, - [296] = {.lex_state = 115}, - [297] = {.lex_state = 115}, - [298] = {.lex_state = 115}, + [291] = {.lex_state = 153}, + [292] = {.lex_state = 140}, + [293] = {.lex_state = 158}, + [294] = {.lex_state = 159}, + [295] = {.lex_state = 159}, + [296] = {.lex_state = 150}, + [297] = {.lex_state = 158}, + [298] = {.lex_state = 140}, [299] = {.lex_state = 115}, - [300] = {.lex_state = 115}, - [301] = {.lex_state = 115}, + [300] = {.lex_state = 158}, + [301] = {.lex_state = 191}, [302] = {.lex_state = 115}, - [303] = {.lex_state = 145}, - [304] = {.lex_state = 145}, - [305] = {.lex_state = 140}, - [306] = {.lex_state = 115}, - [307] = {.lex_state = 140}, - [308] = {.lex_state = 115}, - [309] = {.lex_state = 115}, - [310] = {.lex_state = 145}, + [303] = {.lex_state = 115}, + [304] = {.lex_state = 140}, + [305] = {.lex_state = 174}, + [306] = {.lex_state = 192}, + [307] = {.lex_state = 115}, + [308] = {.lex_state = 140}, + [309] = {.lex_state = 191}, + [310] = {.lex_state = 153}, [311] = {.lex_state = 115}, - [312] = {.lex_state = 115}, - [313] = {.lex_state = 115}, - [314] = {.lex_state = 115}, - [315] = {.lex_state = 115}, - [316] = {.lex_state = 115}, + [312] = {.lex_state = 153}, + [313] = {.lex_state = 191}, + [314] = {.lex_state = 159}, + [315] = {.lex_state = 158}, + [316] = {.lex_state = 159}, [317] = {.lex_state = 115}, - [318] = {.lex_state = 145}, - [319] = {.lex_state = 145}, - [320] = {.lex_state = 158}, + [318] = {.lex_state = 115}, + [319] = {.lex_state = 115}, + [320] = {.lex_state = 115}, [321] = {.lex_state = 115}, - [322] = {.lex_state = 145}, - [323] = {.lex_state = 140}, - [324] = {.lex_state = 115}, - [325] = {.lex_state = 115}, + [322] = {.lex_state = 115}, + [323] = {.lex_state = 193}, + [324] = {.lex_state = 193}, + [325] = {.lex_state = 153}, [326] = {.lex_state = 115}, [327] = {.lex_state = 115}, [328] = {.lex_state = 115}, [329] = {.lex_state = 115}, [330] = {.lex_state = 115}, [331] = {.lex_state = 115}, - [332] = {.lex_state = 115}, - [333] = {.lex_state = 115}, - [334] = {.lex_state = 115}, - [335] = {.lex_state = 115}, - [336] = {.lex_state = 145}, - [337] = {.lex_state = 140}, - [338] = {.lex_state = 158}, - [339] = {.lex_state = 159}, - [340] = {.lex_state = 159}, - [341] = {.lex_state = 151}, - [342] = {.lex_state = 158}, - [343] = {.lex_state = 140}, - [344] = {.lex_state = 115}, - [345] = {.lex_state = 158}, - [346] = {.lex_state = 191}, - [347] = {.lex_state = 115}, - [348] = {.lex_state = 115}, + [332] = {.lex_state = 153}, + [333] = {.lex_state = 153}, + [334] = {.lex_state = 153}, + [335] = {.lex_state = 153}, + [336] = {.lex_state = 153}, + [337] = {.lex_state = 153}, + [338] = {.lex_state = 153}, + [339] = {.lex_state = 153}, + [340] = {.lex_state = 153}, + [341] = {.lex_state = 153}, + [342] = {.lex_state = 153}, + [343] = {.lex_state = 159}, + [344] = {.lex_state = 153}, + [345] = {.lex_state = 115}, + [346] = {.lex_state = 140}, + [347] = {.lex_state = 158}, + [348] = {.lex_state = 137}, [349] = {.lex_state = 140}, - [350] = {.lex_state = 174}, - [351] = {.lex_state = 192}, - [352] = {.lex_state = 115}, - [353] = {.lex_state = 140}, - [354] = {.lex_state = 191}, - [355] = {.lex_state = 145}, - [356] = {.lex_state = 115}, - [357] = {.lex_state = 145}, - [358] = {.lex_state = 191}, - [359] = {.lex_state = 159}, - [360] = {.lex_state = 158}, - [361] = {.lex_state = 159}, - [362] = {.lex_state = 115}, + [350] = {.lex_state = 140}, + [351] = {.lex_state = 157}, + [352] = {.lex_state = 150}, + [353] = {.lex_state = 156}, + [354] = {.lex_state = 155}, + [355] = {.lex_state = 156}, + [356] = {.lex_state = 156}, + [357] = {.lex_state = 123}, + [358] = {.lex_state = 115}, + [359] = {.lex_state = 128}, + [360] = {.lex_state = 115}, + [361] = {.lex_state = 137}, + [362] = {.lex_state = 176}, [363] = {.lex_state = 115}, [364] = {.lex_state = 115}, - [365] = {.lex_state = 115}, + [365] = {.lex_state = 140}, [366] = {.lex_state = 115}, [367] = {.lex_state = 115}, - [368] = {.lex_state = 193}, - [369] = {.lex_state = 193}, - [370] = {.lex_state = 145}, - [371] = {.lex_state = 145}, - [372] = {.lex_state = 145}, - [373] = {.lex_state = 145}, - [374] = {.lex_state = 145}, - [375] = {.lex_state = 145}, - [376] = {.lex_state = 145}, - [377] = {.lex_state = 145}, - [378] = {.lex_state = 145}, - [379] = {.lex_state = 145}, - [380] = {.lex_state = 145}, - [381] = {.lex_state = 159}, - [382] = {.lex_state = 145}, + [368] = {.lex_state = 115}, + [369] = {.lex_state = 115}, + [370] = {.lex_state = 115}, + [371] = {.lex_state = 115}, + [372] = {.lex_state = 115}, + [373] = {.lex_state = 115}, + [374] = {.lex_state = 115}, + [375] = {.lex_state = 153}, + [376] = {.lex_state = 115}, + [377] = {.lex_state = 153}, + [378] = {.lex_state = 115}, + [379] = {.lex_state = 176}, + [380] = {.lex_state = 156}, + [381] = {.lex_state = 156}, + [382] = {.lex_state = 157}, [383] = {.lex_state = 115}, - [384] = {.lex_state = 140}, - [385] = {.lex_state = 158}, - [386] = {.lex_state = 137}, + [384] = {.lex_state = 115}, + [385] = {.lex_state = 115}, + [386] = {.lex_state = 156}, [387] = {.lex_state = 140}, - [388] = {.lex_state = 140}, - [389] = {.lex_state = 157}, - [390] = {.lex_state = 151}, - [391] = {.lex_state = 156}, - [392] = {.lex_state = 155}, + [388] = {.lex_state = 115}, + [389] = {.lex_state = 115}, + [390] = {.lex_state = 115}, + [391] = {.lex_state = 115}, + [392] = {.lex_state = 115}, [393] = {.lex_state = 156}, - [394] = {.lex_state = 156}, - [395] = {.lex_state = 123}, - [396] = {.lex_state = 115}, - [397] = {.lex_state = 128}, + [394] = {.lex_state = 153}, + [395] = {.lex_state = 156}, + [396] = {.lex_state = 156}, + [397] = {.lex_state = 115}, [398] = {.lex_state = 115}, - [399] = {.lex_state = 137}, - [400] = {.lex_state = 176}, - [401] = {.lex_state = 115}, - [402] = {.lex_state = 115}, - [403] = {.lex_state = 140}, - [404] = {.lex_state = 115}, - [405] = {.lex_state = 115}, - [406] = {.lex_state = 115}, - [407] = {.lex_state = 145}, + [399] = {.lex_state = 140}, + [400] = {.lex_state = 156}, + [401] = {.lex_state = 153}, + [402] = {.lex_state = 153}, + [403] = {.lex_state = 156}, + [404] = {.lex_state = 179}, + [405] = {.lex_state = 156}, + [406] = {.lex_state = 140}, + [407] = {.lex_state = 179}, [408] = {.lex_state = 115}, - [409] = {.lex_state = 115}, - [410] = {.lex_state = 115}, + [409] = {.lex_state = 158}, + [410] = {.lex_state = 191}, [411] = {.lex_state = 115}, - [412] = {.lex_state = 115}, - [413] = {.lex_state = 115}, - [414] = {.lex_state = 115}, - [415] = {.lex_state = 145}, - [416] = {.lex_state = 115}, - [417] = {.lex_state = 145}, + [412] = {.lex_state = 140}, + [413] = {.lex_state = 192}, + [414] = {.lex_state = 191}, + [415] = {.lex_state = 153}, + [416] = {.lex_state = 140}, + [417] = {.lex_state = 140}, [418] = {.lex_state = 115}, - [419] = {.lex_state = 176}, - [420] = {.lex_state = 156}, - [421] = {.lex_state = 156}, - [422] = {.lex_state = 157}, + [419] = {.lex_state = 115}, + [420] = {.lex_state = 115}, + [421] = {.lex_state = 128}, + [422] = {.lex_state = 140}, [423] = {.lex_state = 115}, - [424] = {.lex_state = 115}, - [425] = {.lex_state = 115}, - [426] = {.lex_state = 156}, - [427] = {.lex_state = 140}, - [428] = {.lex_state = 115}, - [429] = {.lex_state = 115}, - [430] = {.lex_state = 145}, - [431] = {.lex_state = 115}, + [424] = {.lex_state = 176}, + [425] = {.lex_state = 128}, + [426] = {.lex_state = 179}, + [427] = {.lex_state = 115}, + [428] = {.lex_state = 156}, + [429] = {.lex_state = 140}, + [430] = {.lex_state = 179}, + [431] = {.lex_state = 156}, [432] = {.lex_state = 115}, [433] = {.lex_state = 115}, [434] = {.lex_state = 115}, - [435] = {.lex_state = 156}, - [436] = {.lex_state = 145}, - [437] = {.lex_state = 156}, - [438] = {.lex_state = 156}, - [439] = {.lex_state = 115}, + [435] = {.lex_state = 153}, + [436] = {.lex_state = 140}, + [437] = {.lex_state = 153}, + [438] = {.lex_state = 115}, + [439] = {.lex_state = 153}, [440] = {.lex_state = 115}, - [441] = {.lex_state = 140}, - [442] = {.lex_state = 156}, - [443] = {.lex_state = 145}, - [444] = {.lex_state = 145}, - [445] = {.lex_state = 156}, - [446] = {.lex_state = 179}, - [447] = {.lex_state = 156}, - [448] = {.lex_state = 140}, - [449] = {.lex_state = 179}, - [450] = {.lex_state = 115}, + [441] = {.lex_state = 115}, + [442] = {.lex_state = 158}, + [443] = {.lex_state = 158}, + [444] = {.lex_state = 141}, + [445] = {.lex_state = 158}, + [446] = {.lex_state = 158}, + [447] = {.lex_state = 158}, + [448] = {.lex_state = 115}, + [449] = {.lex_state = 158}, + [450] = {.lex_state = 158}, [451] = {.lex_state = 158}, - [452] = {.lex_state = 191}, - [453] = {.lex_state = 115}, - [454] = {.lex_state = 140}, + [452] = {.lex_state = 192}, + [453] = {.lex_state = 158}, + [454] = {.lex_state = 193}, [455] = {.lex_state = 192}, - [456] = {.lex_state = 191}, - [457] = {.lex_state = 145}, - [458] = {.lex_state = 140}, - [459] = {.lex_state = 140}, - [460] = {.lex_state = 115}, - [461] = {.lex_state = 115}, - [462] = {.lex_state = 115}, - [463] = {.lex_state = 128}, - [464] = {.lex_state = 140}, - [465] = {.lex_state = 115}, - [466] = {.lex_state = 176}, - [467] = {.lex_state = 128}, - [468] = {.lex_state = 179}, - [469] = {.lex_state = 115}, - [470] = {.lex_state = 156}, - [471] = {.lex_state = 140}, - [472] = {.lex_state = 179}, - [473] = {.lex_state = 156}, - [474] = {.lex_state = 115}, - [475] = {.lex_state = 115}, + [456] = {.lex_state = 192}, + [457] = {.lex_state = 158}, + [458] = {.lex_state = 158}, + [459] = {.lex_state = 158}, + [460] = {.lex_state = 153}, + [461] = {.lex_state = 158}, + [462] = {.lex_state = 158}, + [463] = {.lex_state = 158}, + [464] = {.lex_state = 158}, + [465] = {.lex_state = 158}, + [466] = {.lex_state = 158}, + [467] = {.lex_state = 158}, + [468] = {.lex_state = 158}, + [469] = {.lex_state = 158}, + [470] = {.lex_state = 161}, + [471] = {.lex_state = 159}, + [472] = {.lex_state = 159}, + [473] = {.lex_state = 158}, + [474] = {.lex_state = 158}, + [475] = {.lex_state = 141}, [476] = {.lex_state = 115}, - [477] = {.lex_state = 145}, - [478] = {.lex_state = 115}, - [479] = {.lex_state = 115}, - [480] = {.lex_state = 145}, - [481] = {.lex_state = 140}, - [482] = {.lex_state = 145}, + [477] = {.lex_state = 140}, + [478] = {.lex_state = 161}, + [479] = {.lex_state = 179}, + [480] = {.lex_state = 179}, + [481] = {.lex_state = 194}, + [482] = {.lex_state = 115}, [483] = {.lex_state = 115}, - [484] = {.lex_state = 145}, - [485] = {.lex_state = 115}, - [486] = {.lex_state = 145}, - [487] = {.lex_state = 115}, - [488] = {.lex_state = 115}, - [489] = {.lex_state = 158}, - [490] = {.lex_state = 158}, - [491] = {.lex_state = 141}, - [492] = {.lex_state = 158}, - [493] = {.lex_state = 158}, - [494] = {.lex_state = 158}, + [484] = {.lex_state = 115}, + [485] = {.lex_state = 141}, + [486] = {.lex_state = 153}, + [487] = {.lex_state = 153}, + [488] = {.lex_state = 141}, + [489] = {.lex_state = 162}, + [490] = {.lex_state = 153}, + [491] = {.lex_state = 153}, + [492] = {.lex_state = 140}, + [493] = {.lex_state = 115}, + [494] = {.lex_state = 115}, [495] = {.lex_state = 115}, - [496] = {.lex_state = 158}, - [497] = {.lex_state = 158}, - [498] = {.lex_state = 158}, - [499] = {.lex_state = 192}, - [500] = {.lex_state = 158}, - [501] = {.lex_state = 193}, - [502] = {.lex_state = 192}, - [503] = {.lex_state = 192}, - [504] = {.lex_state = 158}, - [505] = {.lex_state = 158}, - [506] = {.lex_state = 158}, - [507] = {.lex_state = 145}, - [508] = {.lex_state = 158}, - [509] = {.lex_state = 158}, - [510] = {.lex_state = 158}, - [511] = {.lex_state = 158}, - [512] = {.lex_state = 158}, - [513] = {.lex_state = 158}, - [514] = {.lex_state = 158}, - [515] = {.lex_state = 158}, - [516] = {.lex_state = 158}, - [517] = {.lex_state = 161}, - [518] = {.lex_state = 159}, - [519] = {.lex_state = 159}, - [520] = {.lex_state = 158}, - [521] = {.lex_state = 158}, - [522] = {.lex_state = 141}, - [523] = {.lex_state = 115}, - [524] = {.lex_state = 140}, - [525] = {.lex_state = 161}, - [526] = {.lex_state = 179}, - [527] = {.lex_state = 179}, - [528] = {.lex_state = 194}, - [529] = {.lex_state = 115}, - [530] = {.lex_state = 115}, - [531] = {.lex_state = 115}, - [532] = {.lex_state = 141}, - [533] = {.lex_state = 145}, - [534] = {.lex_state = 145}, - [535] = {.lex_state = 141}, - [536] = {.lex_state = 162}, - [537] = {.lex_state = 145}, - [538] = {.lex_state = 145}, - [539] = {.lex_state = 140}, - [540] = {.lex_state = 115}, - [541] = {.lex_state = 115}, - [542] = {.lex_state = 145}, - [543] = {.lex_state = 115}, - [544] = {.lex_state = 115}, - [545] = {.lex_state = 115}, - [546] = {.lex_state = 115}, - [547] = {.lex_state = 115}, + [496] = {.lex_state = 115}, + [497] = {.lex_state = 115}, + [498] = {.lex_state = 140}, + [499] = {.lex_state = 115}, + [500] = {.lex_state = 115}, + [501] = {.lex_state = 153}, + [502] = {.lex_state = 115}, + [503] = {.lex_state = 115}, + [504] = {.lex_state = 153}, + [505] = {.lex_state = 140}, + [506] = {.lex_state = 115}, + [507] = {.lex_state = 115}, + [508] = {.lex_state = 115}, + [509] = {.lex_state = 153}, + [510] = {.lex_state = 115}, + [511] = {.lex_state = 115}, + [512] = {.lex_state = 115}, + [513] = {.lex_state = 153}, + [514] = {.lex_state = 140}, + [515] = {.lex_state = 173}, + [516] = {.lex_state = 153}, + [517] = {.lex_state = 115}, + [518] = {.lex_state = 115}, + [519] = {.lex_state = 158}, + [520] = {.lex_state = 153}, + [521] = {.lex_state = 153}, + [522] = {.lex_state = 153}, + [523] = {.lex_state = 153}, + [524] = {.lex_state = 153}, + [525] = {.lex_state = 153}, + [526] = {.lex_state = 153}, + [527] = {.lex_state = 153}, + [528] = {.lex_state = 153}, + [529] = {.lex_state = 153}, + [530] = {.lex_state = 153}, + [531] = {.lex_state = 153}, + [532] = {.lex_state = 153}, + [533] = {.lex_state = 141}, + [534] = {.lex_state = 115}, + [535] = {.lex_state = 191}, + [536] = {.lex_state = 191}, + [537] = {.lex_state = 115}, + [538] = {.lex_state = 153}, + [539] = {.lex_state = 153}, + [540] = {.lex_state = 192}, + [541] = {.lex_state = 191}, + [542] = {.lex_state = 193}, + [543] = {.lex_state = 192}, + [544] = {.lex_state = 153}, + [545] = {.lex_state = 153}, + [546] = {.lex_state = 140}, + [547] = {.lex_state = 153}, [548] = {.lex_state = 115}, - [549] = {.lex_state = 158}, - [550] = {.lex_state = 145}, - [551] = {.lex_state = 140}, - [552] = {.lex_state = 145}, - [553] = {.lex_state = 145}, - [554] = {.lex_state = 145}, - [555] = {.lex_state = 145}, - [556] = {.lex_state = 145}, - [557] = {.lex_state = 145}, - [558] = {.lex_state = 145}, - [559] = {.lex_state = 145}, - [560] = {.lex_state = 145}, - [561] = {.lex_state = 145}, - [562] = {.lex_state = 145}, + [549] = {.lex_state = 159}, + [550] = {.lex_state = 158}, + [551] = {.lex_state = 158}, + [552] = {.lex_state = 115}, + [553] = {.lex_state = 193}, + [554] = {.lex_state = 115}, + [555] = {.lex_state = 159}, + [556] = {.lex_state = 115}, + [557] = {.lex_state = 115}, + [558] = {.lex_state = 115}, + [559] = {.lex_state = 115}, + [560] = {.lex_state = 115}, + [561] = {.lex_state = 115}, + [562] = {.lex_state = 115}, [563] = {.lex_state = 115}, [564] = {.lex_state = 115}, [565] = {.lex_state = 115}, - [566] = {.lex_state = 145}, - [567] = {.lex_state = 115}, - [568] = {.lex_state = 115}, - [569] = {.lex_state = 145}, - [570] = {.lex_state = 115}, + [566] = {.lex_state = 115}, + [567] = {.lex_state = 193}, + [568] = {.lex_state = 158}, + [569] = {.lex_state = 115}, + [570] = {.lex_state = 153}, [571] = {.lex_state = 115}, - [572] = {.lex_state = 145}, + [572] = {.lex_state = 115}, [573] = {.lex_state = 115}, [574] = {.lex_state = 115}, - [575] = {.lex_state = 145}, - [576] = {.lex_state = 140}, - [577] = {.lex_state = 173}, - [578] = {.lex_state = 145}, + [575] = {.lex_state = 115}, + [576] = {.lex_state = 115}, + [577] = {.lex_state = 115}, + [578] = {.lex_state = 115}, [579] = {.lex_state = 115}, [580] = {.lex_state = 115}, - [581] = {.lex_state = 158}, - [582] = {.lex_state = 145}, - [583] = {.lex_state = 145}, - [584] = {.lex_state = 145}, - [585] = {.lex_state = 145}, - [586] = {.lex_state = 145}, - [587] = {.lex_state = 145}, - [588] = {.lex_state = 145}, - [589] = {.lex_state = 145}, - [590] = {.lex_state = 145}, - [591] = {.lex_state = 145}, - [592] = {.lex_state = 145}, - [593] = {.lex_state = 145}, - [594] = {.lex_state = 145}, - [595] = {.lex_state = 141}, - [596] = {.lex_state = 115}, - [597] = {.lex_state = 191}, - [598] = {.lex_state = 191}, - [599] = {.lex_state = 115}, - [600] = {.lex_state = 145}, - [601] = {.lex_state = 145}, - [602] = {.lex_state = 192}, - [603] = {.lex_state = 191}, - [604] = {.lex_state = 193}, - [605] = {.lex_state = 192}, - [606] = {.lex_state = 145}, - [607] = {.lex_state = 145}, - [608] = {.lex_state = 140}, - [609] = {.lex_state = 145}, - [610] = {.lex_state = 115}, - [611] = {.lex_state = 159}, - [612] = {.lex_state = 158}, - [613] = {.lex_state = 158}, + [581] = {.lex_state = 115}, + [582] = {.lex_state = 115}, + [583] = {.lex_state = 115}, + [584] = {.lex_state = 153}, + [585] = {.lex_state = 174}, + [586] = {.lex_state = 137}, + [587] = {.lex_state = 158}, + [588] = {.lex_state = 140}, + [589] = {.lex_state = 156}, + [590] = {.lex_state = 150}, + [591] = {.lex_state = 156}, + [592] = {.lex_state = 157}, + [593] = {.lex_state = 137}, + [594] = {.lex_state = 156}, + [595] = {.lex_state = 179}, + [596] = {.lex_state = 156}, + [597] = {.lex_state = 156}, + [598] = {.lex_state = 179}, + [599] = {.lex_state = 156}, + [600] = {.lex_state = 150}, + [601] = {.lex_state = 176}, + [602] = {.lex_state = 155}, + [603] = {.lex_state = 156}, + [604] = {.lex_state = 156}, + [605] = {.lex_state = 176}, + [606] = {.lex_state = 157}, + [607] = {.lex_state = 115}, + [608] = {.lex_state = 115}, + [609] = {.lex_state = 115}, + [610] = {.lex_state = 176}, + [611] = {.lex_state = 140}, + [612] = {.lex_state = 115}, + [613] = {.lex_state = 115}, [614] = {.lex_state = 115}, - [615] = {.lex_state = 193}, + [615] = {.lex_state = 115}, [616] = {.lex_state = 115}, - [617] = {.lex_state = 159}, - [618] = {.lex_state = 115}, - [619] = {.lex_state = 115}, - [620] = {.lex_state = 115}, + [617] = {.lex_state = 176}, + [618] = {.lex_state = 153}, + [619] = {.lex_state = 176}, + [620] = {.lex_state = 176}, [621] = {.lex_state = 115}, [622] = {.lex_state = 115}, - [623] = {.lex_state = 115}, - [624] = {.lex_state = 115}, - [625] = {.lex_state = 115}, - [626] = {.lex_state = 115}, - [627] = {.lex_state = 115}, - [628] = {.lex_state = 115}, - [629] = {.lex_state = 193}, - [630] = {.lex_state = 115}, - [631] = {.lex_state = 174}, - [632] = {.lex_state = 137}, - [633] = {.lex_state = 158}, - [634] = {.lex_state = 140}, - [635] = {.lex_state = 156}, - [636] = {.lex_state = 151}, - [637] = {.lex_state = 156}, - [638] = {.lex_state = 157}, - [639] = {.lex_state = 137}, - [640] = {.lex_state = 156}, - [641] = {.lex_state = 179}, - [642] = {.lex_state = 156}, + [623] = {.lex_state = 176}, + [624] = {.lex_state = 153}, + [625] = {.lex_state = 153}, + [626] = {.lex_state = 176}, + [627] = {.lex_state = 176}, + [628] = {.lex_state = 179}, + [629] = {.lex_state = 156}, + [630] = {.lex_state = 156}, + [631] = {.lex_state = 153}, + [632] = {.lex_state = 115}, + [633] = {.lex_state = 140}, + [634] = {.lex_state = 156}, + [635] = {.lex_state = 115}, + [636] = {.lex_state = 156}, + [637] = {.lex_state = 115}, + [638] = {.lex_state = 115}, + [639] = {.lex_state = 115}, + [640] = {.lex_state = 153}, + [641] = {.lex_state = 156}, + [642] = {.lex_state = 140}, [643] = {.lex_state = 156}, - [644] = {.lex_state = 179}, + [644] = {.lex_state = 153}, [645] = {.lex_state = 156}, - [646] = {.lex_state = 151}, - [647] = {.lex_state = 176}, - [648] = {.lex_state = 155}, + [646] = {.lex_state = 115}, + [647] = {.lex_state = 115}, + [648] = {.lex_state = 153}, [649] = {.lex_state = 156}, [650] = {.lex_state = 156}, - [651] = {.lex_state = 176}, - [652] = {.lex_state = 157}, - [653] = {.lex_state = 115}, - [654] = {.lex_state = 115}, - [655] = {.lex_state = 115}, - [656] = {.lex_state = 176}, - [657] = {.lex_state = 140}, - [658] = {.lex_state = 115}, - [659] = {.lex_state = 115}, - [660] = {.lex_state = 145}, - [661] = {.lex_state = 115}, - [662] = {.lex_state = 115}, - [663] = {.lex_state = 115}, - [664] = {.lex_state = 115}, - [665] = {.lex_state = 176}, - [666] = {.lex_state = 145}, - [667] = {.lex_state = 176}, - [668] = {.lex_state = 176}, - [669] = {.lex_state = 115}, - [670] = {.lex_state = 115}, - [671] = {.lex_state = 176}, - [672] = {.lex_state = 145}, - [673] = {.lex_state = 145}, + [651] = {.lex_state = 156}, + [652] = {.lex_state = 156}, + [653] = {.lex_state = 156}, + [654] = {.lex_state = 153}, + [655] = {.lex_state = 140}, + [656] = {.lex_state = 140}, + [657] = {.lex_state = 115}, + [658] = {.lex_state = 191}, + [659] = {.lex_state = 191}, + [660] = {.lex_state = 192}, + [661] = {.lex_state = 191}, + [662] = {.lex_state = 193}, + [663] = {.lex_state = 192}, + [664] = {.lex_state = 140}, + [665] = {.lex_state = 140}, + [666] = {.lex_state = 140}, + [667] = {.lex_state = 115}, + [668] = {.lex_state = 115}, + [669] = {.lex_state = 156}, + [670] = {.lex_state = 156}, + [671] = {.lex_state = 128}, + [672] = {.lex_state = 115}, + [673] = {.lex_state = 115}, [674] = {.lex_state = 176}, - [675] = {.lex_state = 176}, - [676] = {.lex_state = 179}, - [677] = {.lex_state = 156}, - [678] = {.lex_state = 156}, - [679] = {.lex_state = 145}, - [680] = {.lex_state = 115}, - [681] = {.lex_state = 140}, - [682] = {.lex_state = 156}, + [675] = {.lex_state = 156}, + [676] = {.lex_state = 140}, + [677] = {.lex_state = 153}, + [678] = {.lex_state = 179}, + [679] = {.lex_state = 156}, + [680] = {.lex_state = 140}, + [681] = {.lex_state = 179}, + [682] = {.lex_state = 115}, [683] = {.lex_state = 115}, - [684] = {.lex_state = 156}, + [684] = {.lex_state = 115}, [685] = {.lex_state = 115}, [686] = {.lex_state = 115}, - [687] = {.lex_state = 115}, - [688] = {.lex_state = 145}, + [687] = {.lex_state = 173}, + [688] = {.lex_state = 153}, [689] = {.lex_state = 115}, - [690] = {.lex_state = 115}, - [691] = {.lex_state = 145}, - [692] = {.lex_state = 156}, - [693] = {.lex_state = 145}, - [694] = {.lex_state = 156}, - [695] = {.lex_state = 115}, - [696] = {.lex_state = 145}, - [697] = {.lex_state = 156}, - [698] = {.lex_state = 115}, - [699] = {.lex_state = 156}, - [700] = {.lex_state = 115}, - [701] = {.lex_state = 115}, - [702] = {.lex_state = 145}, - [703] = {.lex_state = 156}, - [704] = {.lex_state = 156}, - [705] = {.lex_state = 156}, - [706] = {.lex_state = 156}, - [707] = {.lex_state = 156}, - [708] = {.lex_state = 145}, - [709] = {.lex_state = 140}, + [690] = {.lex_state = 158}, + [691] = {.lex_state = 174}, + [692] = {.lex_state = 141}, + [693] = {.lex_state = 158}, + [694] = {.lex_state = 174}, + [695] = {.lex_state = 158}, + [696] = {.lex_state = 158}, + [697] = {.lex_state = 158}, + [698] = {.lex_state = 158}, + [699] = {.lex_state = 158}, + [700] = {.lex_state = 158}, + [701] = {.lex_state = 158}, + [702] = {.lex_state = 158}, + [703] = {.lex_state = 158}, + [704] = {.lex_state = 158}, + [705] = {.lex_state = 192}, + [706] = {.lex_state = 193}, + [707] = {.lex_state = 192}, + [708] = {.lex_state = 192}, + [709] = {.lex_state = 115}, [710] = {.lex_state = 140}, - [711] = {.lex_state = 115}, - [712] = {.lex_state = 191}, - [713] = {.lex_state = 191}, - [714] = {.lex_state = 192}, - [715] = {.lex_state = 191}, - [716] = {.lex_state = 193}, - [717] = {.lex_state = 192}, - [718] = {.lex_state = 140}, - [719] = {.lex_state = 140}, - [720] = {.lex_state = 140}, - [721] = {.lex_state = 115}, - [722] = {.lex_state = 115}, - [723] = {.lex_state = 156}, - [724] = {.lex_state = 156}, - [725] = {.lex_state = 128}, - [726] = {.lex_state = 115}, - [727] = {.lex_state = 115}, - [728] = {.lex_state = 176}, - [729] = {.lex_state = 156}, - [730] = {.lex_state = 140}, - [731] = {.lex_state = 145}, + [711] = {.lex_state = 159}, + [712] = {.lex_state = 115}, + [713] = {.lex_state = 115}, + [714] = {.lex_state = 115}, + [715] = {.lex_state = 115}, + [716] = {.lex_state = 115}, + [717] = {.lex_state = 115}, + [718] = {.lex_state = 115}, + [719] = {.lex_state = 115}, + [720] = {.lex_state = 195}, + [721] = {.lex_state = 161}, + [722] = {.lex_state = 195}, + [723] = {.lex_state = 141}, + [724] = {.lex_state = 195}, + [725] = {.lex_state = 141}, + [726] = {.lex_state = 161}, + [727] = {.lex_state = 140}, + [728] = {.lex_state = 161}, + [729] = {.lex_state = 194}, + [730] = {.lex_state = 179}, + [731] = {.lex_state = 128}, [732] = {.lex_state = 179}, - [733] = {.lex_state = 156}, - [734] = {.lex_state = 140}, + [733] = {.lex_state = 179}, + [734] = {.lex_state = 194}, [735] = {.lex_state = 179}, - [736] = {.lex_state = 115}, + [736] = {.lex_state = 179}, [737] = {.lex_state = 115}, - [738] = {.lex_state = 145}, - [739] = {.lex_state = 115}, + [738] = {.lex_state = 158}, + [739] = {.lex_state = 141}, [740] = {.lex_state = 115}, - [741] = {.lex_state = 115}, + [741] = {.lex_state = 153}, [742] = {.lex_state = 115}, - [743] = {.lex_state = 115}, - [744] = {.lex_state = 173}, - [745] = {.lex_state = 145}, - [746] = {.lex_state = 115}, - [747] = {.lex_state = 158}, - [748] = {.lex_state = 174}, - [749] = {.lex_state = 141}, - [750] = {.lex_state = 158}, - [751] = {.lex_state = 174}, - [752] = {.lex_state = 158}, - [753] = {.lex_state = 158}, - [754] = {.lex_state = 158}, - [755] = {.lex_state = 158}, - [756] = {.lex_state = 158}, - [757] = {.lex_state = 158}, - [758] = {.lex_state = 158}, - [759] = {.lex_state = 158}, - [760] = {.lex_state = 158}, - [761] = {.lex_state = 158}, - [762] = {.lex_state = 192}, - [763] = {.lex_state = 193}, - [764] = {.lex_state = 192}, - [765] = {.lex_state = 192}, + [743] = {.lex_state = 194}, + [744] = {.lex_state = 192}, + [745] = {.lex_state = 115}, + [746] = {.lex_state = 141}, + [747] = {.lex_state = 153}, + [748] = {.lex_state = 153}, + [749] = {.lex_state = 153}, + [750] = {.lex_state = 115}, + [751] = {.lex_state = 115}, + [752] = {.lex_state = 153}, + [753] = {.lex_state = 140}, + [754] = {.lex_state = 115}, + [755] = {.lex_state = 153}, + [756] = {.lex_state = 140}, + [757] = {.lex_state = 115}, + [758] = {.lex_state = 115}, + [759] = {.lex_state = 115}, + [760] = {.lex_state = 140}, + [761] = {.lex_state = 140}, + [762] = {.lex_state = 115}, + [763] = {.lex_state = 115}, + [764] = {.lex_state = 115}, + [765] = {.lex_state = 115}, [766] = {.lex_state = 115}, - [767] = {.lex_state = 140}, - [768] = {.lex_state = 159}, + [767] = {.lex_state = 173}, + [768] = {.lex_state = 153}, [769] = {.lex_state = 115}, [770] = {.lex_state = 115}, - [771] = {.lex_state = 115}, - [772] = {.lex_state = 115}, - [773] = {.lex_state = 115}, - [774] = {.lex_state = 115}, + [771] = {.lex_state = 158}, + [772] = {.lex_state = 173}, + [773] = {.lex_state = 153}, + [774] = {.lex_state = 153}, [775] = {.lex_state = 115}, - [776] = {.lex_state = 115}, - [777] = {.lex_state = 195}, - [778] = {.lex_state = 161}, - [779] = {.lex_state = 195}, - [780] = {.lex_state = 141}, - [781] = {.lex_state = 195}, - [782] = {.lex_state = 141}, - [783] = {.lex_state = 161}, - [784] = {.lex_state = 140}, - [785] = {.lex_state = 161}, - [786] = {.lex_state = 194}, - [787] = {.lex_state = 179}, - [788] = {.lex_state = 128}, - [789] = {.lex_state = 179}, - [790] = {.lex_state = 179}, - [791] = {.lex_state = 194}, - [792] = {.lex_state = 179}, - [793] = {.lex_state = 179}, - [794] = {.lex_state = 115}, - [795] = {.lex_state = 158}, - [796] = {.lex_state = 141}, - [797] = {.lex_state = 115}, - [798] = {.lex_state = 145}, - [799] = {.lex_state = 115}, - [800] = {.lex_state = 194}, - [801] = {.lex_state = 192}, - [802] = {.lex_state = 115}, - [803] = {.lex_state = 141}, - [804] = {.lex_state = 145}, - [805] = {.lex_state = 145}, - [806] = {.lex_state = 145}, - [807] = {.lex_state = 115}, - [808] = {.lex_state = 115}, - [809] = {.lex_state = 145}, - [810] = {.lex_state = 115}, - [811] = {.lex_state = 145}, - [812] = {.lex_state = 140}, - [813] = {.lex_state = 145}, - [814] = {.lex_state = 115}, - [815] = {.lex_state = 115}, - [816] = {.lex_state = 115}, - [817] = {.lex_state = 145}, - [818] = {.lex_state = 115}, - [819] = {.lex_state = 115}, - [820] = {.lex_state = 115}, - [821] = {.lex_state = 115}, - [822] = {.lex_state = 115}, - [823] = {.lex_state = 115}, - [824] = {.lex_state = 173}, - [825] = {.lex_state = 145}, - [826] = {.lex_state = 115}, - [827] = {.lex_state = 115}, - [828] = {.lex_state = 158}, - [829] = {.lex_state = 173}, - [830] = {.lex_state = 145}, - [831] = {.lex_state = 145}, - [832] = {.lex_state = 115}, - [833] = {.lex_state = 191}, - [834] = {.lex_state = 192}, - [835] = {.lex_state = 193}, - [836] = {.lex_state = 158}, - [837] = {.lex_state = 159}, - [838] = {.lex_state = 158}, - [839] = {.lex_state = 115}, - [840] = {.lex_state = 158}, - [841] = {.lex_state = 193}, - [842] = {.lex_state = 145}, - [843] = {.lex_state = 193}, - [844] = {.lex_state = 193}, - [845] = {.lex_state = 193}, - [846] = {.lex_state = 193}, - [847] = {.lex_state = 193}, - [848] = {.lex_state = 193}, - [849] = {.lex_state = 193}, - [850] = {.lex_state = 193}, - [851] = {.lex_state = 193}, - [852] = {.lex_state = 193}, - [853] = {.lex_state = 145}, - [854] = {.lex_state = 158}, - [855] = {.lex_state = 137}, - [856] = {.lex_state = 158}, - [857] = {.lex_state = 156}, - [858] = {.lex_state = 156}, + [776] = {.lex_state = 191}, + [777] = {.lex_state = 192}, + [778] = {.lex_state = 193}, + [779] = {.lex_state = 158}, + [780] = {.lex_state = 159}, + [781] = {.lex_state = 158}, + [782] = {.lex_state = 115}, + [783] = {.lex_state = 158}, + [784] = {.lex_state = 193}, + [785] = {.lex_state = 153}, + [786] = {.lex_state = 193}, + [787] = {.lex_state = 193}, + [788] = {.lex_state = 193}, + [789] = {.lex_state = 193}, + [790] = {.lex_state = 193}, + [791] = {.lex_state = 193}, + [792] = {.lex_state = 193}, + [793] = {.lex_state = 193}, + [794] = {.lex_state = 193}, + [795] = {.lex_state = 193}, + [796] = {.lex_state = 115}, + [797] = {.lex_state = 158}, + [798] = {.lex_state = 153}, + [799] = {.lex_state = 153}, + [800] = {.lex_state = 153}, + [801] = {.lex_state = 153}, + [802] = {.lex_state = 153}, + [803] = {.lex_state = 153}, + [804] = {.lex_state = 153}, + [805] = {.lex_state = 153}, + [806] = {.lex_state = 153}, + [807] = {.lex_state = 153}, + [808] = {.lex_state = 153}, + [809] = {.lex_state = 153}, + [810] = {.lex_state = 153}, + [811] = {.lex_state = 158}, + [812] = {.lex_state = 137}, + [813] = {.lex_state = 158}, + [814] = {.lex_state = 156}, + [815] = {.lex_state = 156}, + [816] = {.lex_state = 156}, + [817] = {.lex_state = 157}, + [818] = {.lex_state = 156}, + [819] = {.lex_state = 179}, + [820] = {.lex_state = 156}, + [821] = {.lex_state = 179}, + [822] = {.lex_state = 176}, + [823] = {.lex_state = 150}, + [824] = {.lex_state = 176}, + [825] = {.lex_state = 157}, + [826] = {.lex_state = 137}, + [827] = {.lex_state = 176}, + [828] = {.lex_state = 179}, + [829] = {.lex_state = 156}, + [830] = {.lex_state = 176}, + [831] = {.lex_state = 179}, + [832] = {.lex_state = 156}, + [833] = {.lex_state = 176}, + [834] = {.lex_state = 153}, + [835] = {.lex_state = 115}, + [836] = {.lex_state = 140}, + [837] = {.lex_state = 176}, + [838] = {.lex_state = 115}, + [839] = {.lex_state = 176}, + [840] = {.lex_state = 115}, + [841] = {.lex_state = 115}, + [842] = {.lex_state = 115}, + [843] = {.lex_state = 153}, + [844] = {.lex_state = 176}, + [845] = {.lex_state = 140}, + [846] = {.lex_state = 176}, + [847] = {.lex_state = 153}, + [848] = {.lex_state = 176}, + [849] = {.lex_state = 115}, + [850] = {.lex_state = 115}, + [851] = {.lex_state = 153}, + [852] = {.lex_state = 176}, + [853] = {.lex_state = 176}, + [854] = {.lex_state = 176}, + [855] = {.lex_state = 176}, + [856] = {.lex_state = 176}, + [857] = {.lex_state = 153}, + [858] = {.lex_state = 179}, [859] = {.lex_state = 156}, - [860] = {.lex_state = 157}, + [860] = {.lex_state = 153}, [861] = {.lex_state = 156}, - [862] = {.lex_state = 179}, - [863] = {.lex_state = 156}, - [864] = {.lex_state = 179}, - [865] = {.lex_state = 176}, - [866] = {.lex_state = 151}, - [867] = {.lex_state = 176}, - [868] = {.lex_state = 157}, - [869] = {.lex_state = 137}, - [870] = {.lex_state = 176}, - [871] = {.lex_state = 179}, - [872] = {.lex_state = 156}, - [873] = {.lex_state = 176}, - [874] = {.lex_state = 179}, + [862] = {.lex_state = 140}, + [863] = {.lex_state = 115}, + [864] = {.lex_state = 115}, + [865] = {.lex_state = 115}, + [866] = {.lex_state = 115}, + [867] = {.lex_state = 115}, + [868] = {.lex_state = 156}, + [869] = {.lex_state = 140}, + [870] = {.lex_state = 115}, + [871] = {.lex_state = 156}, + [872] = {.lex_state = 173}, + [873] = {.lex_state = 153}, + [874] = {.lex_state = 115}, [875] = {.lex_state = 156}, - [876] = {.lex_state = 176}, - [877] = {.lex_state = 145}, - [878] = {.lex_state = 115}, - [879] = {.lex_state = 140}, - [880] = {.lex_state = 176}, - [881] = {.lex_state = 115}, - [882] = {.lex_state = 176}, - [883] = {.lex_state = 115}, - [884] = {.lex_state = 115}, - [885] = {.lex_state = 115}, - [886] = {.lex_state = 145}, - [887] = {.lex_state = 115}, - [888] = {.lex_state = 115}, - [889] = {.lex_state = 145}, - [890] = {.lex_state = 176}, - [891] = {.lex_state = 145}, - [892] = {.lex_state = 176}, - [893] = {.lex_state = 115}, - [894] = {.lex_state = 145}, - [895] = {.lex_state = 176}, + [876] = {.lex_state = 191}, + [877] = {.lex_state = 192}, + [878] = {.lex_state = 193}, + [879] = {.lex_state = 156}, + [880] = {.lex_state = 179}, + [881] = {.lex_state = 156}, + [882] = {.lex_state = 156}, + [883] = {.lex_state = 179}, + [884] = {.lex_state = 156}, + [885] = {.lex_state = 156}, + [886] = {.lex_state = 156}, + [887] = {.lex_state = 153}, + [888] = {.lex_state = 176}, + [889] = {.lex_state = 179}, + [890] = {.lex_state = 156}, + [891] = {.lex_state = 140}, + [892] = {.lex_state = 140}, + [893] = {.lex_state = 140}, + [894] = {.lex_state = 115}, + [895] = {.lex_state = 153}, [896] = {.lex_state = 115}, - [897] = {.lex_state = 176}, - [898] = {.lex_state = 115}, - [899] = {.lex_state = 115}, - [900] = {.lex_state = 145}, - [901] = {.lex_state = 176}, - [902] = {.lex_state = 176}, - [903] = {.lex_state = 176}, - [904] = {.lex_state = 176}, - [905] = {.lex_state = 176}, - [906] = {.lex_state = 145}, - [907] = {.lex_state = 179}, - [908] = {.lex_state = 156}, - [909] = {.lex_state = 145}, - [910] = {.lex_state = 156}, - [911] = {.lex_state = 140}, - [912] = {.lex_state = 115}, - [913] = {.lex_state = 115}, - [914] = {.lex_state = 145}, + [897] = {.lex_state = 158}, + [898] = {.lex_state = 173}, + [899] = {.lex_state = 153}, + [900] = {.lex_state = 158}, + [901] = {.lex_state = 141}, + [902] = {.lex_state = 158}, + [903] = {.lex_state = 158}, + [904] = {.lex_state = 158}, + [905] = {.lex_state = 158}, + [906] = {.lex_state = 158}, + [907] = {.lex_state = 158}, + [908] = {.lex_state = 158}, + [909] = {.lex_state = 192}, + [910] = {.lex_state = 193}, + [911] = {.lex_state = 158}, + [912] = {.lex_state = 159}, + [913] = {.lex_state = 158}, + [914] = {.lex_state = 193}, [915] = {.lex_state = 115}, - [916] = {.lex_state = 115}, - [917] = {.lex_state = 115}, - [918] = {.lex_state = 115}, + [916] = {.lex_state = 195}, + [917] = {.lex_state = 141}, + [918] = {.lex_state = 161}, [919] = {.lex_state = 115}, - [920] = {.lex_state = 156}, + [920] = {.lex_state = 115}, [921] = {.lex_state = 115}, - [922] = {.lex_state = 156}, - [923] = {.lex_state = 173}, - [924] = {.lex_state = 145}, + [922] = {.lex_state = 115}, + [923] = {.lex_state = 115}, + [924] = {.lex_state = 115}, [925] = {.lex_state = 115}, - [926] = {.lex_state = 156}, - [927] = {.lex_state = 191}, - [928] = {.lex_state = 192}, - [929] = {.lex_state = 193}, - [930] = {.lex_state = 156}, - [931] = {.lex_state = 179}, - [932] = {.lex_state = 156}, - [933] = {.lex_state = 156}, - [934] = {.lex_state = 179}, - [935] = {.lex_state = 156}, - [936] = {.lex_state = 156}, - [937] = {.lex_state = 156}, - [938] = {.lex_state = 145}, - [939] = {.lex_state = 176}, + [926] = {.lex_state = 115}, + [927] = {.lex_state = 115}, + [928] = {.lex_state = 115}, + [929] = {.lex_state = 115}, + [930] = {.lex_state = 115}, + [931] = {.lex_state = 161}, + [932] = {.lex_state = 195}, + [933] = {.lex_state = 115}, + [934] = {.lex_state = 141}, + [935] = {.lex_state = 141}, + [936] = {.lex_state = 115}, + [937] = {.lex_state = 179}, + [938] = {.lex_state = 179}, + [939] = {.lex_state = 194}, [940] = {.lex_state = 179}, - [941] = {.lex_state = 156}, - [942] = {.lex_state = 140}, - [943] = {.lex_state = 140}, - [944] = {.lex_state = 140}, - [945] = {.lex_state = 115}, - [946] = {.lex_state = 145}, - [947] = {.lex_state = 115}, - [948] = {.lex_state = 145}, - [949] = {.lex_state = 115}, - [950] = {.lex_state = 158}, - [951] = {.lex_state = 173}, - [952] = {.lex_state = 145}, - [953] = {.lex_state = 158}, - [954] = {.lex_state = 141}, - [955] = {.lex_state = 158}, - [956] = {.lex_state = 158}, - [957] = {.lex_state = 158}, - [958] = {.lex_state = 158}, - [959] = {.lex_state = 158}, - [960] = {.lex_state = 158}, - [961] = {.lex_state = 158}, - [962] = {.lex_state = 192}, - [963] = {.lex_state = 193}, - [964] = {.lex_state = 158}, - [965] = {.lex_state = 159}, - [966] = {.lex_state = 158}, - [967] = {.lex_state = 193}, + [941] = {.lex_state = 179}, + [942] = {.lex_state = 194}, + [943] = {.lex_state = 179}, + [944] = {.lex_state = 115}, + [945] = {.lex_state = 141}, + [946] = {.lex_state = 141}, + [947] = {.lex_state = 194}, + [948] = {.lex_state = 153}, + [949] = {.lex_state = 192}, + [950] = {.lex_state = 141}, + [951] = {.lex_state = 193}, + [952] = {.lex_state = 192}, + [953] = {.lex_state = 153}, + [954] = {.lex_state = 115}, + [955] = {.lex_state = 153}, + [956] = {.lex_state = 115}, + [957] = {.lex_state = 173}, + [958] = {.lex_state = 153}, + [959] = {.lex_state = 115}, + [960] = {.lex_state = 115}, + [961] = {.lex_state = 115}, + [962] = {.lex_state = 115}, + [963] = {.lex_state = 153}, + [964] = {.lex_state = 140}, + [965] = {.lex_state = 140}, + [966] = {.lex_state = 115}, + [967] = {.lex_state = 115}, [968] = {.lex_state = 115}, - [969] = {.lex_state = 195}, - [970] = {.lex_state = 141}, - [971] = {.lex_state = 161}, - [972] = {.lex_state = 115}, + [969] = {.lex_state = 153}, + [970] = {.lex_state = 140}, + [971] = {.lex_state = 115}, + [972] = {.lex_state = 153}, [973] = {.lex_state = 115}, [974] = {.lex_state = 115}, - [975] = {.lex_state = 115}, + [975] = {.lex_state = 153}, [976] = {.lex_state = 115}, - [977] = {.lex_state = 115}, - [978] = {.lex_state = 115}, - [979] = {.lex_state = 115}, - [980] = {.lex_state = 115}, + [977] = {.lex_state = 158}, + [978] = {.lex_state = 173}, + [979] = {.lex_state = 153}, + [980] = {.lex_state = 140}, [981] = {.lex_state = 115}, - [982] = {.lex_state = 115}, - [983] = {.lex_state = 115}, - [984] = {.lex_state = 161}, - [985] = {.lex_state = 195}, - [986] = {.lex_state = 115}, - [987] = {.lex_state = 141}, - [988] = {.lex_state = 141}, - [989] = {.lex_state = 115}, - [990] = {.lex_state = 179}, - [991] = {.lex_state = 179}, - [992] = {.lex_state = 194}, - [993] = {.lex_state = 179}, - [994] = {.lex_state = 179}, - [995] = {.lex_state = 194}, - [996] = {.lex_state = 179}, - [997] = {.lex_state = 115}, - [998] = {.lex_state = 141}, - [999] = {.lex_state = 141}, - [1000] = {.lex_state = 194}, - [1001] = {.lex_state = 145}, - [1002] = {.lex_state = 192}, - [1003] = {.lex_state = 141}, - [1004] = {.lex_state = 193}, - [1005] = {.lex_state = 192}, - [1006] = {.lex_state = 145}, + [982] = {.lex_state = 158}, + [983] = {.lex_state = 158}, + [984] = {.lex_state = 173}, + [985] = {.lex_state = 153}, + [986] = {.lex_state = 191}, + [987] = {.lex_state = 193}, + [988] = {.lex_state = 115}, + [989] = {.lex_state = 153}, + [990] = {.lex_state = 115}, + [991] = {.lex_state = 156}, + [992] = {.lex_state = 156}, + [993] = {.lex_state = 156}, + [994] = {.lex_state = 176}, + [995] = {.lex_state = 176}, + [996] = {.lex_state = 176}, + [997] = {.lex_state = 157}, + [998] = {.lex_state = 176}, + [999] = {.lex_state = 179}, + [1000] = {.lex_state = 176}, + [1001] = {.lex_state = 179}, + [1002] = {.lex_state = 176}, + [1003] = {.lex_state = 153}, + [1004] = {.lex_state = 176}, + [1005] = {.lex_state = 140}, + [1006] = {.lex_state = 115}, [1007] = {.lex_state = 115}, - [1008] = {.lex_state = 145}, + [1008] = {.lex_state = 115}, [1009] = {.lex_state = 115}, - [1010] = {.lex_state = 173}, - [1011] = {.lex_state = 145}, - [1012] = {.lex_state = 115}, - [1013] = {.lex_state = 145}, - [1014] = {.lex_state = 115}, - [1015] = {.lex_state = 115}, - [1016] = {.lex_state = 145}, + [1010] = {.lex_state = 115}, + [1011] = {.lex_state = 176}, + [1012] = {.lex_state = 140}, + [1013] = {.lex_state = 115}, + [1014] = {.lex_state = 176}, + [1015] = {.lex_state = 173}, + [1016] = {.lex_state = 153}, [1017] = {.lex_state = 115}, - [1018] = {.lex_state = 145}, - [1019] = {.lex_state = 115}, - [1020] = {.lex_state = 158}, - [1021] = {.lex_state = 173}, - [1022] = {.lex_state = 145}, - [1023] = {.lex_state = 140}, - [1024] = {.lex_state = 115}, - [1025] = {.lex_state = 158}, + [1018] = {.lex_state = 176}, + [1019] = {.lex_state = 156}, + [1020] = {.lex_state = 156}, + [1021] = {.lex_state = 156}, + [1022] = {.lex_state = 115}, + [1023] = {.lex_state = 153}, + [1024] = {.lex_state = 156}, + [1025] = {.lex_state = 156}, [1026] = {.lex_state = 158}, - [1027] = {.lex_state = 173}, - [1028] = {.lex_state = 145}, - [1029] = {.lex_state = 191}, - [1030] = {.lex_state = 193}, - [1031] = {.lex_state = 115}, - [1032] = {.lex_state = 156}, + [1027] = {.lex_state = 158}, + [1028] = {.lex_state = 115}, + [1029] = {.lex_state = 158}, + [1030] = {.lex_state = 173}, + [1031] = {.lex_state = 153}, + [1032] = {.lex_state = 191}, [1033] = {.lex_state = 156}, - [1034] = {.lex_state = 156}, - [1035] = {.lex_state = 176}, - [1036] = {.lex_state = 176}, + [1034] = {.lex_state = 179}, + [1035] = {.lex_state = 156}, + [1036] = {.lex_state = 179}, [1037] = {.lex_state = 176}, - [1038] = {.lex_state = 157}, - [1039] = {.lex_state = 176}, - [1040] = {.lex_state = 179}, - [1041] = {.lex_state = 176}, - [1042] = {.lex_state = 179}, - [1043] = {.lex_state = 176}, - [1044] = {.lex_state = 145}, - [1045] = {.lex_state = 176}, - [1046] = {.lex_state = 140}, + [1038] = {.lex_state = 179}, + [1039] = {.lex_state = 156}, + [1040] = {.lex_state = 176}, + [1041] = {.lex_state = 179}, + [1042] = {.lex_state = 156}, + [1043] = {.lex_state = 179}, + [1044] = {.lex_state = 115}, + [1045] = {.lex_state = 173}, + [1046] = {.lex_state = 153}, [1047] = {.lex_state = 115}, [1048] = {.lex_state = 115}, - [1049] = {.lex_state = 145}, - [1050] = {.lex_state = 115}, - [1051] = {.lex_state = 115}, - [1052] = {.lex_state = 115}, - [1053] = {.lex_state = 115}, - [1054] = {.lex_state = 115}, - [1055] = {.lex_state = 176}, - [1056] = {.lex_state = 115}, - [1057] = {.lex_state = 176}, - [1058] = {.lex_state = 173}, - [1059] = {.lex_state = 145}, - [1060] = {.lex_state = 115}, - [1061] = {.lex_state = 176}, - [1062] = {.lex_state = 156}, - [1063] = {.lex_state = 156}, - [1064] = {.lex_state = 156}, - [1065] = {.lex_state = 115}, - [1066] = {.lex_state = 145}, - [1067] = {.lex_state = 115}, - [1068] = {.lex_state = 145}, - [1069] = {.lex_state = 156}, - [1070] = {.lex_state = 158}, - [1071] = {.lex_state = 158}, - [1072] = {.lex_state = 115}, - [1073] = {.lex_state = 158}, - [1074] = {.lex_state = 173}, - [1075] = {.lex_state = 145}, - [1076] = {.lex_state = 191}, - [1077] = {.lex_state = 156}, + [1049] = {.lex_state = 158}, + [1050] = {.lex_state = 158}, + [1051] = {.lex_state = 173}, + [1052] = {.lex_state = 158}, + [1053] = {.lex_state = 158}, + [1054] = {.lex_state = 158}, + [1055] = {.lex_state = 115}, + [1056] = {.lex_state = 141}, + [1057] = {.lex_state = 158}, + [1058] = {.lex_state = 159}, + [1059] = {.lex_state = 195}, + [1060] = {.lex_state = 161}, + [1061] = {.lex_state = 195}, + [1062] = {.lex_state = 153}, + [1063] = {.lex_state = 195}, + [1064] = {.lex_state = 195}, + [1065] = {.lex_state = 195}, + [1066] = {.lex_state = 195}, + [1067] = {.lex_state = 195}, + [1068] = {.lex_state = 195}, + [1069] = {.lex_state = 195}, + [1070] = {.lex_state = 195}, + [1071] = {.lex_state = 195}, + [1072] = {.lex_state = 161}, + [1073] = {.lex_state = 161}, + [1074] = {.lex_state = 195}, + [1075] = {.lex_state = 195}, + [1076] = {.lex_state = 161}, + [1077] = {.lex_state = 179}, [1078] = {.lex_state = 179}, - [1079] = {.lex_state = 156}, - [1080] = {.lex_state = 179}, - [1081] = {.lex_state = 176}, - [1082] = {.lex_state = 179}, - [1083] = {.lex_state = 156}, - [1084] = {.lex_state = 176}, - [1085] = {.lex_state = 179}, - [1086] = {.lex_state = 156}, - [1087] = {.lex_state = 179}, - [1088] = {.lex_state = 115}, + [1079] = {.lex_state = 179}, + [1080] = {.lex_state = 194}, + [1081] = {.lex_state = 194}, + [1082] = {.lex_state = 141}, + [1083] = {.lex_state = 192}, + [1084] = {.lex_state = 193}, + [1085] = {.lex_state = 194}, + [1086] = {.lex_state = 153}, + [1087] = {.lex_state = 115}, + [1088] = {.lex_state = 158}, [1089] = {.lex_state = 173}, - [1090] = {.lex_state = 145}, + [1090] = {.lex_state = 153}, [1091] = {.lex_state = 115}, [1092] = {.lex_state = 115}, - [1093] = {.lex_state = 158}, - [1094] = {.lex_state = 158}, - [1095] = {.lex_state = 173}, - [1096] = {.lex_state = 158}, - [1097] = {.lex_state = 158}, - [1098] = {.lex_state = 158}, + [1093] = {.lex_state = 115}, + [1094] = {.lex_state = 115}, + [1095] = {.lex_state = 115}, + [1096] = {.lex_state = 140}, + [1097] = {.lex_state = 115}, + [1098] = {.lex_state = 115}, [1099] = {.lex_state = 115}, - [1100] = {.lex_state = 141}, - [1101] = {.lex_state = 158}, - [1102] = {.lex_state = 159}, - [1103] = {.lex_state = 195}, - [1104] = {.lex_state = 161}, - [1105] = {.lex_state = 195}, - [1106] = {.lex_state = 145}, - [1107] = {.lex_state = 195}, - [1108] = {.lex_state = 195}, - [1109] = {.lex_state = 195}, - [1110] = {.lex_state = 195}, - [1111] = {.lex_state = 195}, - [1112] = {.lex_state = 195}, - [1113] = {.lex_state = 195}, - [1114] = {.lex_state = 195}, - [1115] = {.lex_state = 195}, - [1116] = {.lex_state = 161}, - [1117] = {.lex_state = 161}, - [1118] = {.lex_state = 195}, - [1119] = {.lex_state = 195}, - [1120] = {.lex_state = 161}, - [1121] = {.lex_state = 179}, - [1122] = {.lex_state = 179}, - [1123] = {.lex_state = 179}, - [1124] = {.lex_state = 194}, - [1125] = {.lex_state = 194}, - [1126] = {.lex_state = 141}, - [1127] = {.lex_state = 192}, - [1128] = {.lex_state = 193}, - [1129] = {.lex_state = 194}, - [1130] = {.lex_state = 145}, + [1100] = {.lex_state = 115}, + [1101] = {.lex_state = 140}, + [1102] = {.lex_state = 173}, + [1103] = {.lex_state = 153}, + [1104] = {.lex_state = 115}, + [1105] = {.lex_state = 115}, + [1106] = {.lex_state = 173}, + [1107] = {.lex_state = 153}, + [1108] = {.lex_state = 115}, + [1109] = {.lex_state = 115}, + [1110] = {.lex_state = 158}, + [1111] = {.lex_state = 158}, + [1112] = {.lex_state = 173}, + [1113] = {.lex_state = 140}, + [1114] = {.lex_state = 115}, + [1115] = {.lex_state = 158}, + [1116] = {.lex_state = 158}, + [1117] = {.lex_state = 193}, + [1118] = {.lex_state = 153}, + [1119] = {.lex_state = 176}, + [1120] = {.lex_state = 176}, + [1121] = {.lex_state = 176}, + [1122] = {.lex_state = 176}, + [1123] = {.lex_state = 176}, + [1124] = {.lex_state = 176}, + [1125] = {.lex_state = 115}, + [1126] = {.lex_state = 153}, + [1127] = {.lex_state = 176}, + [1128] = {.lex_state = 176}, + [1129] = {.lex_state = 158}, + [1130] = {.lex_state = 158}, [1131] = {.lex_state = 115}, [1132] = {.lex_state = 158}, [1133] = {.lex_state = 173}, - [1134] = {.lex_state = 145}, + [1134] = {.lex_state = 153}, [1135] = {.lex_state = 115}, [1136] = {.lex_state = 173}, - [1137] = {.lex_state = 145}, + [1137] = {.lex_state = 153}, [1138] = {.lex_state = 115}, - [1139] = {.lex_state = 115}, - [1140] = {.lex_state = 158}, - [1141] = {.lex_state = 158}, - [1142] = {.lex_state = 173}, - [1143] = {.lex_state = 140}, - [1144] = {.lex_state = 115}, - [1145] = {.lex_state = 158}, - [1146] = {.lex_state = 158}, - [1147] = {.lex_state = 193}, - [1148] = {.lex_state = 176}, + [1139] = {.lex_state = 156}, + [1140] = {.lex_state = 156}, + [1141] = {.lex_state = 115}, + [1142] = {.lex_state = 158}, + [1143] = {.lex_state = 158}, + [1144] = {.lex_state = 173}, + [1145] = {.lex_state = 156}, + [1146] = {.lex_state = 156}, + [1147] = {.lex_state = 176}, + [1148] = {.lex_state = 179}, [1149] = {.lex_state = 176}, - [1150] = {.lex_state = 176}, - [1151] = {.lex_state = 176}, - [1152] = {.lex_state = 176}, - [1153] = {.lex_state = 176}, - [1154] = {.lex_state = 115}, - [1155] = {.lex_state = 145}, - [1156] = {.lex_state = 115}, - [1157] = {.lex_state = 145}, - [1158] = {.lex_state = 176}, - [1159] = {.lex_state = 158}, - [1160] = {.lex_state = 158}, - [1161] = {.lex_state = 115}, - [1162] = {.lex_state = 158}, - [1163] = {.lex_state = 173}, - [1164] = {.lex_state = 145}, - [1165] = {.lex_state = 115}, - [1166] = {.lex_state = 173}, - [1167] = {.lex_state = 145}, - [1168] = {.lex_state = 115}, - [1169] = {.lex_state = 156}, - [1170] = {.lex_state = 156}, + [1150] = {.lex_state = 179}, + [1151] = {.lex_state = 115}, + [1152] = {.lex_state = 158}, + [1153] = {.lex_state = 173}, + [1154] = {.lex_state = 153}, + [1155] = {.lex_state = 115}, + [1156] = {.lex_state = 158}, + [1157] = {.lex_state = 158}, + [1158] = {.lex_state = 158}, + [1159] = {.lex_state = 195}, + [1160] = {.lex_state = 115}, + [1161] = {.lex_state = 159}, + [1162] = {.lex_state = 141}, + [1163] = {.lex_state = 179}, + [1164] = {.lex_state = 141}, + [1165] = {.lex_state = 194}, + [1166] = {.lex_state = 115}, + [1167] = {.lex_state = 158}, + [1168] = {.lex_state = 158}, + [1169] = {.lex_state = 173}, + [1170] = {.lex_state = 140}, [1171] = {.lex_state = 115}, - [1172] = {.lex_state = 158}, - [1173] = {.lex_state = 158}, - [1174] = {.lex_state = 173}, - [1175] = {.lex_state = 156}, - [1176] = {.lex_state = 156}, - [1177] = {.lex_state = 176}, - [1178] = {.lex_state = 179}, - [1179] = {.lex_state = 176}, - [1180] = {.lex_state = 179}, + [1172] = {.lex_state = 153}, + [1173] = {.lex_state = 115}, + [1174] = {.lex_state = 115}, + [1175] = {.lex_state = 115}, + [1176] = {.lex_state = 153}, + [1177] = {.lex_state = 140}, + [1178] = {.lex_state = 153}, + [1179] = {.lex_state = 115}, + [1180] = {.lex_state = 153}, [1181] = {.lex_state = 115}, [1182] = {.lex_state = 158}, [1183] = {.lex_state = 173}, - [1184] = {.lex_state = 145}, + [1184] = {.lex_state = 153}, [1185] = {.lex_state = 115}, [1186] = {.lex_state = 158}, - [1187] = {.lex_state = 158}, - [1188] = {.lex_state = 158}, - [1189] = {.lex_state = 195}, - [1190] = {.lex_state = 115}, - [1191] = {.lex_state = 159}, - [1192] = {.lex_state = 141}, - [1193] = {.lex_state = 179}, - [1194] = {.lex_state = 141}, - [1195] = {.lex_state = 194}, - [1196] = {.lex_state = 115}, - [1197] = {.lex_state = 158}, - [1198] = {.lex_state = 158}, - [1199] = {.lex_state = 173}, - [1200] = {.lex_state = 115}, - [1201] = {.lex_state = 158}, - [1202] = {.lex_state = 173}, - [1203] = {.lex_state = 145}, - [1204] = {.lex_state = 115}, - [1205] = {.lex_state = 158}, + [1187] = {.lex_state = 173}, + [1188] = {.lex_state = 153}, + [1189] = {.lex_state = 115}, + [1190] = {.lex_state = 158}, + [1191] = {.lex_state = 158}, + [1192] = {.lex_state = 140}, + [1193] = {.lex_state = 115}, + [1194] = {.lex_state = 158}, + [1195] = {.lex_state = 115}, + [1196] = {.lex_state = 173}, + [1197] = {.lex_state = 153}, + [1198] = {.lex_state = 115}, + [1199] = {.lex_state = 176}, + [1200] = {.lex_state = 176}, + [1201] = {.lex_state = 115}, + [1202] = {.lex_state = 158}, + [1203] = {.lex_state = 158}, + [1204] = {.lex_state = 173}, + [1205] = {.lex_state = 115}, [1206] = {.lex_state = 158}, - [1207] = {.lex_state = 140}, - [1208] = {.lex_state = 115}, - [1209] = {.lex_state = 158}, + [1207] = {.lex_state = 173}, + [1208] = {.lex_state = 153}, + [1209] = {.lex_state = 156}, [1210] = {.lex_state = 115}, - [1211] = {.lex_state = 173}, - [1212] = {.lex_state = 145}, - [1213] = {.lex_state = 115}, + [1211] = {.lex_state = 158}, + [1212] = {.lex_state = 158}, + [1213] = {.lex_state = 176}, [1214] = {.lex_state = 176}, - [1215] = {.lex_state = 176}, - [1216] = {.lex_state = 115}, + [1215] = {.lex_state = 115}, + [1216] = {.lex_state = 158}, [1217] = {.lex_state = 158}, - [1218] = {.lex_state = 158}, - [1219] = {.lex_state = 173}, - [1220] = {.lex_state = 115}, - [1221] = {.lex_state = 158}, - [1222] = {.lex_state = 173}, - [1223] = {.lex_state = 145}, - [1224] = {.lex_state = 156}, + [1218] = {.lex_state = 173}, + [1219] = {.lex_state = 115}, + [1220] = {.lex_state = 158}, + [1221] = {.lex_state = 195}, + [1222] = {.lex_state = 115}, + [1223] = {.lex_state = 158}, + [1224] = {.lex_state = 158}, [1225] = {.lex_state = 115}, - [1226] = {.lex_state = 158}, - [1227] = {.lex_state = 158}, - [1228] = {.lex_state = 176}, - [1229] = {.lex_state = 176}, + [1226] = {.lex_state = 173}, + [1227] = {.lex_state = 153}, + [1228] = {.lex_state = 115}, + [1229] = {.lex_state = 115}, [1230] = {.lex_state = 115}, - [1231] = {.lex_state = 158}, - [1232] = {.lex_state = 158}, - [1233] = {.lex_state = 173}, - [1234] = {.lex_state = 115}, - [1235] = {.lex_state = 158}, - [1236] = {.lex_state = 195}, + [1231] = {.lex_state = 115}, + [1232] = {.lex_state = 115}, + [1233] = {.lex_state = 115}, + [1234] = {.lex_state = 173}, + [1235] = {.lex_state = 153}, + [1236] = {.lex_state = 115}, [1237] = {.lex_state = 115}, [1238] = {.lex_state = 158}, [1239] = {.lex_state = 158}, - [1240] = {.lex_state = 115}, - [1241] = {.lex_state = 158}, + [1240] = {.lex_state = 173}, + [1241] = {.lex_state = 115}, [1242] = {.lex_state = 158}, - [1243] = {.lex_state = 173}, - [1244] = {.lex_state = 115}, - [1245] = {.lex_state = 158}, - [1246] = {.lex_state = 140}, - [1247] = {.lex_state = 115}, + [1243] = {.lex_state = 158}, + [1244] = {.lex_state = 173}, + [1245] = {.lex_state = 115}, + [1246] = {.lex_state = 158}, + [1247] = {.lex_state = 140}, [1248] = {.lex_state = 115}, - [1249] = {.lex_state = 158}, - [1250] = {.lex_state = 173}, - [1251] = {.lex_state = 145}, - [1252] = {.lex_state = 176}, - [1253] = {.lex_state = 115}, - [1254] = {.lex_state = 158}, + [1249] = {.lex_state = 115}, + [1250] = {.lex_state = 158}, + [1251] = {.lex_state = 173}, + [1252] = {.lex_state = 153}, + [1253] = {.lex_state = 176}, + [1254] = {.lex_state = 115}, [1255] = {.lex_state = 158}, - [1256] = {.lex_state = 115}, - [1257] = {.lex_state = 158}, + [1256] = {.lex_state = 158}, + [1257] = {.lex_state = 115}, [1258] = {.lex_state = 158}, - [1259] = {.lex_state = 173}, - [1260] = {.lex_state = 156}, - [1261] = {.lex_state = 115}, - [1262] = {.lex_state = 158}, - [1263] = {.lex_state = 115}, - [1264] = {.lex_state = 158}, + [1259] = {.lex_state = 158}, + [1260] = {.lex_state = 173}, + [1261] = {.lex_state = 156}, + [1262] = {.lex_state = 115}, + [1263] = {.lex_state = 158}, + [1264] = {.lex_state = 115}, [1265] = {.lex_state = 158}, - [1266] = {.lex_state = 115}, + [1266] = {.lex_state = 158}, [1267] = {.lex_state = 115}, - [1268] = {.lex_state = 158}, - [1269] = {.lex_state = 115}, - [1270] = {.lex_state = 158}, + [1268] = {.lex_state = 115}, + [1269] = {.lex_state = 158}, + [1270] = {.lex_state = 115}, [1271] = {.lex_state = 158}, - [1272] = {.lex_state = 115}, - [1273] = {.lex_state = 140}, - [1274] = {.lex_state = 115}, - [1275] = {.lex_state = 158}, - [1276] = {.lex_state = 158}, - [1277] = {.lex_state = 173}, - [1278] = {.lex_state = 176}, - [1279] = {.lex_state = 115}, - [1280] = {.lex_state = 158}, + [1272] = {.lex_state = 173}, + [1273] = {.lex_state = 153}, + [1274] = {.lex_state = 140}, + [1275] = {.lex_state = 115}, + [1276] = {.lex_state = 153}, + [1277] = {.lex_state = 115}, + [1278] = {.lex_state = 158}, + [1279] = {.lex_state = 173}, + [1280] = {.lex_state = 153}, [1281] = {.lex_state = 115}, [1282] = {.lex_state = 158}, [1283] = {.lex_state = 158}, - [1284] = {.lex_state = 156}, - [1285] = {.lex_state = 115}, - [1286] = {.lex_state = 115}, - [1287] = {.lex_state = 158}, - [1288] = {.lex_state = 115}, + [1284] = {.lex_state = 115}, + [1285] = {.lex_state = 158}, + [1286] = {.lex_state = 158}, + [1287] = {.lex_state = 115}, + [1288] = {.lex_state = 140}, [1289] = {.lex_state = 115}, [1290] = {.lex_state = 158}, - [1291] = {.lex_state = 115}, - [1292] = {.lex_state = 158}, - [1293] = {.lex_state = 158}, - [1294] = {.lex_state = 176}, - [1295] = {.lex_state = 115}, + [1291] = {.lex_state = 158}, + [1292] = {.lex_state = 173}, + [1293] = {.lex_state = 176}, + [1294] = {.lex_state = 115}, + [1295] = {.lex_state = 158}, [1296] = {.lex_state = 115}, [1297] = {.lex_state = 158}, - [1298] = {.lex_state = 156}, - [1299] = {.lex_state = 115}, + [1298] = {.lex_state = 158}, + [1299] = {.lex_state = 156}, [1300] = {.lex_state = 115}, [1301] = {.lex_state = 115}, [1302] = {.lex_state = 158}, - [1303] = {.lex_state = 176}, + [1303] = {.lex_state = 115}, [1304] = {.lex_state = 115}, - [1305] = {.lex_state = 115}, + [1305] = {.lex_state = 158}, + [1306] = {.lex_state = 158}, + [1307] = {.lex_state = 173}, + [1308] = {.lex_state = 115}, + [1309] = {.lex_state = 173}, + [1310] = {.lex_state = 153}, + [1311] = {.lex_state = 115}, + [1312] = {.lex_state = 115}, + [1313] = {.lex_state = 158}, + [1314] = {.lex_state = 158}, + [1315] = {.lex_state = 173}, + [1316] = {.lex_state = 115}, + [1317] = {.lex_state = 158}, + [1318] = {.lex_state = 115}, + [1319] = {.lex_state = 158}, + [1320] = {.lex_state = 115}, + [1321] = {.lex_state = 158}, + [1322] = {.lex_state = 158}, + [1323] = {.lex_state = 176}, + [1324] = {.lex_state = 115}, + [1325] = {.lex_state = 115}, + [1326] = {.lex_state = 158}, + [1327] = {.lex_state = 156}, + [1328] = {.lex_state = 115}, + [1329] = {.lex_state = 115}, + [1330] = {.lex_state = 158}, + [1331] = {.lex_state = 158}, + [1332] = {.lex_state = 115}, + [1333] = {.lex_state = 158}, + [1334] = {.lex_state = 173}, + [1335] = {.lex_state = 153}, + [1336] = {.lex_state = 115}, + [1337] = {.lex_state = 158}, + [1338] = {.lex_state = 158}, + [1339] = {.lex_state = 115}, + [1340] = {.lex_state = 115}, + [1341] = {.lex_state = 115}, + [1342] = {.lex_state = 158}, + [1343] = {.lex_state = 176}, + [1344] = {.lex_state = 115}, + [1345] = {.lex_state = 115}, + [1346] = {.lex_state = 158}, + [1347] = {.lex_state = 115}, + [1348] = {.lex_state = 158}, + [1349] = {.lex_state = 158}, + [1350] = {.lex_state = 173}, + [1351] = {.lex_state = 115}, + [1352] = {.lex_state = 158}, + [1353] = {.lex_state = 115}, + [1354] = {.lex_state = 115}, + [1355] = {.lex_state = 115}, + [1356] = {.lex_state = 158}, + [1357] = {.lex_state = 158}, + [1358] = {.lex_state = 115}, + [1359] = {.lex_state = 115}, + [1360] = {.lex_state = 158}, + [1361] = {.lex_state = 115}, }; static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { @@ -5709,64 +5783,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(1), }, [1] = { - [sym_translation_unit] = STATE(36), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_specifiers] = STATE(37), - [sym_linkage_specification] = STATE(42), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(42), - [sym_expression_statement] = STATE(42), - [sym_if_statement] = STATE(42), - [sym_switch_statement] = STATE(42), - [sym_case_statement] = STATE(42), - [sym_while_statement] = STATE(42), - [sym_do_statement] = STATE(42), - [sym_for_statement] = STATE(42), - [sym_return_statement] = STATE(42), - [sym_break_statement] = STATE(42), - [sym_continue_statement] = STATE(42), - [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), + [sym_translation_unit] = STATE(34), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_specifiers] = STATE(35), + [sym_linkage_specification] = STATE(40), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), [ts_builtin_sym_end] = ACTIONS(5), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), @@ -5797,227 +5870,224 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(41), [anon_sym_if] = ACTIONS(43), [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_while] = ACTIONS(51), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(83), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(79), + [sym_comment] = ACTIONS(81), }, [2] = { - [sym_string_literal] = STATE(46), - [anon_sym_DQUOTE] = ACTIONS(87), - [sym_system_lib_string] = ACTIONS(89), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(44), + [anon_sym_DQUOTE] = ACTIONS(83), + [sym_system_lib_string] = ACTIONS(85), + [sym_comment] = ACTIONS(81), }, [3] = { - [sym_identifier] = ACTIONS(91), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(87), + [sym_comment] = ACTIONS(81), }, [4] = { - [sym_preproc_arg] = ACTIONS(93), - [sym_comment] = ACTIONS(95), + [sym_preproc_arg] = ACTIONS(89), + [sym_comment] = ACTIONS(91), }, [5] = { - [sym_identifier] = ACTIONS(97), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(93), + [sym_comment] = ACTIONS(81), }, [6] = { - [anon_sym_LF] = ACTIONS(99), - [sym_preproc_arg] = ACTIONS(101), - [sym_comment] = ACTIONS(95), + [anon_sym_LF] = ACTIONS(95), + [sym_preproc_arg] = ACTIONS(97), + [sym_comment] = ACTIONS(91), }, [7] = { - [ts_builtin_sym_end] = ACTIONS(103), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(105), - [sym_preproc_directive] = ACTIONS(105), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_typedef] = ACTIONS(105), - [anon_sym_extern] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_LPAREN2] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_static] = ACTIONS(105), - [anon_sym_auto] = ACTIONS(105), - [anon_sym_register] = ACTIONS(105), - [anon_sym_inline] = ACTIONS(105), - [anon_sym_const] = ACTIONS(105), - [anon_sym_restrict] = ACTIONS(105), - [anon_sym_volatile] = ACTIONS(105), - [anon_sym__Atomic] = ACTIONS(105), - [anon_sym_unsigned] = ACTIONS(105), - [anon_sym_long] = ACTIONS(105), - [anon_sym_short] = ACTIONS(105), - [sym_primitive_type] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(105), - [anon_sym_struct] = ACTIONS(105), - [anon_sym_union] = ACTIONS(105), - [anon_sym_if] = ACTIONS(105), - [anon_sym_else] = ACTIONS(105), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_case] = ACTIONS(105), - [anon_sym_default] = ACTIONS(105), - [anon_sym_while] = ACTIONS(105), - [anon_sym_do] = ACTIONS(105), - [anon_sym_for] = ACTIONS(105), - [anon_sym_return] = ACTIONS(105), - [anon_sym_break] = ACTIONS(105), - [anon_sym_continue] = ACTIONS(105), - [anon_sym_goto] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym_number_literal] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_identifier] = ACTIONS(105), - [sym_comment] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(99), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(101), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_static] = ACTIONS(101), + [anon_sym_auto] = ACTIONS(101), + [anon_sym_register] = ACTIONS(101), + [anon_sym_inline] = ACTIONS(101), + [anon_sym_const] = ACTIONS(101), + [anon_sym_restrict] = ACTIONS(101), + [anon_sym_volatile] = ACTIONS(101), + [anon_sym__Atomic] = ACTIONS(101), + [anon_sym_unsigned] = ACTIONS(101), + [anon_sym_long] = ACTIONS(101), + [anon_sym_short] = ACTIONS(101), + [sym_primitive_type] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(101), + [anon_sym_struct] = ACTIONS(101), + [anon_sym_union] = ACTIONS(101), + [anon_sym_if] = ACTIONS(101), + [anon_sym_else] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(101), + [anon_sym_case] = ACTIONS(101), + [anon_sym_default] = ACTIONS(101), + [anon_sym_while] = ACTIONS(101), + [anon_sym_do] = ACTIONS(101), + [anon_sym_for] = ACTIONS(101), + [anon_sym_return] = ACTIONS(101), + [anon_sym_break] = ACTIONS(101), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(101), + [sym_false] = ACTIONS(101), + [sym_null] = ACTIONS(101), + [sym_identifier] = ACTIONS(101), + [sym_comment] = ACTIONS(81), }, [8] = { - [sym_type_qualifier] = STATE(54), - [sym__type_specifier] = STATE(53), - [sym_sized_type_specifier] = STATE(53), - [sym_enum_specifier] = STATE(53), - [sym_struct_specifier] = STATE(53), - [sym_union_specifier] = STATE(53), - [sym_macro_type_specifier] = STATE(53), - [aux_sym_type_definition_repeat1] = STATE(54), - [aux_sym_sized_type_specifier_repeat1] = STATE(55), + [sym_type_qualifier] = STATE(52), + [sym__type_specifier] = STATE(51), + [sym_sized_type_specifier] = STATE(51), + [sym_enum_specifier] = STATE(51), + [sym_struct_specifier] = STATE(51), + [sym_union_specifier] = STATE(51), + [sym_macro_type_specifier] = STATE(51), + [aux_sym_type_definition_repeat1] = STATE(52), + [aux_sym_sized_type_specifier_repeat1] = STATE(53), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(107), - [anon_sym_long] = ACTIONS(107), - [anon_sym_short] = ACTIONS(107), - [sym_primitive_type] = ACTIONS(109), + [anon_sym_unsigned] = ACTIONS(103), + [anon_sym_long] = ACTIONS(103), + [anon_sym_short] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(105), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, [9] = { - [sym_string_literal] = STATE(56), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_static] = ACTIONS(113), - [anon_sym_auto] = ACTIONS(113), - [anon_sym_register] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_const] = ACTIONS(113), - [anon_sym_restrict] = ACTIONS(113), - [anon_sym_volatile] = ACTIONS(113), - [anon_sym__Atomic] = ACTIONS(113), - [anon_sym_unsigned] = ACTIONS(113), - [anon_sym_long] = ACTIONS(113), - [anon_sym_short] = ACTIONS(113), - [sym_primitive_type] = ACTIONS(113), - [anon_sym_enum] = ACTIONS(113), - [anon_sym_struct] = ACTIONS(113), - [anon_sym_union] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_identifier] = ACTIONS(113), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(54), + [anon_sym_extern] = ACTIONS(109), + [anon_sym_static] = ACTIONS(109), + [anon_sym_auto] = ACTIONS(109), + [anon_sym_register] = ACTIONS(109), + [anon_sym_inline] = ACTIONS(109), + [anon_sym_const] = ACTIONS(109), + [anon_sym_restrict] = ACTIONS(109), + [anon_sym_volatile] = ACTIONS(109), + [anon_sym__Atomic] = ACTIONS(109), + [anon_sym_unsigned] = ACTIONS(109), + [anon_sym_long] = ACTIONS(109), + [anon_sym_short] = ACTIONS(109), + [sym_primitive_type] = ACTIONS(109), + [anon_sym_enum] = ACTIONS(109), + [anon_sym_struct] = ACTIONS(109), + [anon_sym_union] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_identifier] = ACTIONS(109), + [sym_comment] = ACTIONS(81), }, [10] = { - [sym_preproc_include] = STATE(68), - [sym_preproc_def] = STATE(68), - [sym_preproc_function_def] = STATE(68), - [sym_preproc_call] = STATE(68), - [sym_preproc_if_in_compound_statement] = STATE(68), - [sym_preproc_ifdef_in_compound_statement] = STATE(68), - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_specifiers] = STATE(67), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_switch_statement] = STATE(68), - [sym_case_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(68), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(68), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), + [sym_preproc_include] = STATE(63), + [sym_preproc_def] = STATE(63), + [sym_preproc_function_def] = STATE(63), + [sym_preproc_call] = STATE(63), + [sym_preproc_if_in_compound_statement] = STATE(63), + [sym_preproc_ifdef_in_compound_statement] = STATE(63), + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_specifiers] = STATE(62), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(63), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(63), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(117), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(117), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(111), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(113), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(113), [sym_preproc_directive] = ACTIONS(15), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -6035,654 +6105,605 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(133), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(123), + [sym_comment] = ACTIONS(81), }, [11] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(76), - [sym_sized_type_specifier] = STATE(76), - [sym_enum_specifier] = STATE(76), - [sym_struct_specifier] = STATE(76), - [sym_union_specifier] = STATE(76), - [sym__expression] = STATE(77), - [sym_comma_expression] = STATE(78), - [sym_conditional_expression] = STATE(77), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_type_descriptor] = STATE(79), - [sym_sizeof_expression] = STATE(77), - [sym_subscript_expression] = STATE(77), - [sym_call_expression] = STATE(77), - [sym_field_expression] = STATE(77), - [sym_compound_literal_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(80), - [sym_macro_type_specifier] = STATE(76), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(82), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), + [sym_type_qualifier] = STATE(76), + [sym__type_specifier] = STATE(71), + [sym_sized_type_specifier] = STATE(71), + [sym_enum_specifier] = STATE(71), + [sym_struct_specifier] = STATE(71), + [sym_union_specifier] = STATE(71), + [sym__expression] = STATE(72), + [sym_comma_expression] = STATE(73), + [sym_conditional_expression] = STATE(72), + [sym_assignment_expression] = STATE(72), + [sym_pointer_expression] = STATE(72), + [sym_logical_expression] = STATE(72), + [sym_bitwise_expression] = STATE(72), + [sym_equality_expression] = STATE(72), + [sym_relational_expression] = STATE(72), + [sym_shift_expression] = STATE(72), + [sym_math_expression] = STATE(72), + [sym_cast_expression] = STATE(72), + [sym_type_descriptor] = STATE(74), + [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(72), + [sym_call_expression] = STATE(72), + [sym_field_expression] = STATE(72), + [sym_compound_literal_expression] = STATE(72), + [sym_parenthesized_expression] = STATE(72), + [sym_char_literal] = STATE(72), + [sym_concatenated_string] = STATE(72), + [sym_string_literal] = STATE(75), + [sym_macro_type_specifier] = STATE(71), + [aux_sym_type_definition_repeat1] = STATE(76), + [aux_sym_sized_type_specifier_repeat1] = STATE(77), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [sym_primitive_type] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(129), + [anon_sym_long] = ACTIONS(129), + [anon_sym_short] = ACTIONS(129), + [sym_primitive_type] = ACTIONS(131), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(155), - [sym_false] = ACTIONS(155), - [sym_null] = ACTIONS(155), - [sym_identifier] = ACTIONS(157), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_identifier] = ACTIONS(147), + [sym_comment] = ACTIONS(81), }, [12] = { - [sym__expression] = STATE(83), - [sym_conditional_expression] = STATE(83), - [sym_assignment_expression] = STATE(83), - [sym_pointer_expression] = STATE(83), - [sym_logical_expression] = STATE(83), - [sym_bitwise_expression] = STATE(83), - [sym_equality_expression] = STATE(83), - [sym_relational_expression] = STATE(83), - [sym_shift_expression] = STATE(83), - [sym_math_expression] = STATE(83), - [sym_cast_expression] = STATE(83), - [sym_sizeof_expression] = STATE(83), - [sym_subscript_expression] = STATE(83), - [sym_call_expression] = STATE(83), - [sym_field_expression] = STATE(83), - [sym_compound_literal_expression] = STATE(83), - [sym_parenthesized_expression] = STATE(83), - [sym_char_literal] = STATE(83), - [sym_concatenated_string] = STATE(83), - [sym_string_literal] = STATE(41), + [sym__expression] = STATE(78), + [sym_conditional_expression] = STATE(78), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(78), + [sym_call_expression] = STATE(78), + [sym_field_expression] = STATE(78), + [sym_compound_literal_expression] = STATE(78), + [sym_parenthesized_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_concatenated_string] = STATE(78), + [sym_string_literal] = STATE(39), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(151), + [sym_false] = ACTIONS(151), + [sym_null] = ACTIONS(151), + [sym_identifier] = ACTIONS(151), + [sym_comment] = ACTIONS(81), }, [13] = { - [anon_sym_COMMA] = ACTIONS(163), - [anon_sym_RPAREN] = ACTIONS(163), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_LPAREN2] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(163), - [anon_sym_LBRACK] = ACTIONS(163), - [anon_sym_static] = ACTIONS(113), - [anon_sym_auto] = ACTIONS(113), - [anon_sym_register] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_const] = ACTIONS(113), - [anon_sym_restrict] = ACTIONS(113), - [anon_sym_volatile] = ACTIONS(113), - [anon_sym__Atomic] = ACTIONS(113), - [anon_sym_unsigned] = ACTIONS(113), - [anon_sym_long] = ACTIONS(113), - [anon_sym_short] = ACTIONS(113), - [sym_primitive_type] = ACTIONS(113), - [anon_sym_enum] = ACTIONS(113), - [anon_sym_struct] = ACTIONS(113), - [anon_sym_union] = ACTIONS(113), - [anon_sym_COLON] = ACTIONS(163), - [sym_identifier] = ACTIONS(113), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(153), + [anon_sym_RPAREN] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_extern] = ACTIONS(109), + [anon_sym_LPAREN2] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_static] = ACTIONS(109), + [anon_sym_auto] = ACTIONS(109), + [anon_sym_register] = ACTIONS(109), + [anon_sym_inline] = ACTIONS(109), + [anon_sym_const] = ACTIONS(109), + [anon_sym_restrict] = ACTIONS(109), + [anon_sym_volatile] = ACTIONS(109), + [anon_sym__Atomic] = ACTIONS(109), + [anon_sym_unsigned] = ACTIONS(109), + [anon_sym_long] = ACTIONS(109), + [anon_sym_short] = ACTIONS(109), + [sym_primitive_type] = ACTIONS(109), + [anon_sym_enum] = ACTIONS(109), + [anon_sym_struct] = ACTIONS(109), + [anon_sym_union] = ACTIONS(109), + [anon_sym_COLON] = ACTIONS(153), + [sym_identifier] = ACTIONS(109), + [sym_comment] = ACTIONS(81), }, [14] = { - [anon_sym_COMMA] = ACTIONS(165), - [anon_sym_RPAREN] = ACTIONS(165), - [anon_sym_SEMI] = ACTIONS(165), - [anon_sym_extern] = ACTIONS(167), - [anon_sym_LPAREN2] = ACTIONS(165), - [anon_sym_STAR] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(165), - [anon_sym_RBRACK] = ACTIONS(165), - [anon_sym_static] = ACTIONS(167), - [anon_sym_auto] = ACTIONS(167), - [anon_sym_register] = ACTIONS(167), - [anon_sym_inline] = ACTIONS(167), - [anon_sym_const] = ACTIONS(167), - [anon_sym_restrict] = ACTIONS(167), - [anon_sym_volatile] = ACTIONS(167), - [anon_sym__Atomic] = ACTIONS(167), - [anon_sym_unsigned] = ACTIONS(167), - [anon_sym_long] = ACTIONS(167), - [anon_sym_short] = ACTIONS(167), - [sym_primitive_type] = ACTIONS(167), - [anon_sym_enum] = ACTIONS(167), - [anon_sym_struct] = ACTIONS(167), - [anon_sym_union] = ACTIONS(167), - [anon_sym_COLON] = ACTIONS(165), - [anon_sym_AMP] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_TILDE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_DASH_DASH] = ACTIONS(165), - [anon_sym_PLUS_PLUS] = ACTIONS(165), - [anon_sym_sizeof] = ACTIONS(167), - [sym_number_literal] = ACTIONS(165), - [anon_sym_SQUOTE] = ACTIONS(165), - [anon_sym_DQUOTE] = ACTIONS(165), - [sym_true] = ACTIONS(167), - [sym_false] = ACTIONS(167), - [sym_null] = ACTIONS(167), - [sym_identifier] = ACTIONS(167), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(155), + [anon_sym_extern] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(155), + [anon_sym_STAR] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_RBRACK] = ACTIONS(155), + [anon_sym_static] = ACTIONS(157), + [anon_sym_auto] = ACTIONS(157), + [anon_sym_register] = ACTIONS(157), + [anon_sym_inline] = ACTIONS(157), + [anon_sym_const] = ACTIONS(157), + [anon_sym_restrict] = ACTIONS(157), + [anon_sym_volatile] = ACTIONS(157), + [anon_sym__Atomic] = ACTIONS(157), + [anon_sym_unsigned] = ACTIONS(157), + [anon_sym_long] = ACTIONS(157), + [anon_sym_short] = ACTIONS(157), + [sym_primitive_type] = ACTIONS(157), + [anon_sym_enum] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(157), + [anon_sym_union] = ACTIONS(157), + [anon_sym_COLON] = ACTIONS(155), + [anon_sym_AMP] = ACTIONS(155), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_TILDE] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(157), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DASH_DASH] = ACTIONS(155), + [anon_sym_PLUS_PLUS] = ACTIONS(155), + [anon_sym_sizeof] = ACTIONS(157), + [sym_number_literal] = ACTIONS(155), + [anon_sym_SQUOTE] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(155), + [sym_true] = ACTIONS(157), + [sym_false] = ACTIONS(157), + [sym_null] = ACTIONS(157), + [sym_identifier] = ACTIONS(157), + [sym_comment] = ACTIONS(81), }, [15] = { - [sym_enumerator_list] = STATE(86), - [anon_sym_LBRACE] = ACTIONS(169), - [sym_identifier] = ACTIONS(171), - [sym_comment] = ACTIONS(85), + [sym_enumerator_list] = STATE(81), + [anon_sym_LBRACE] = ACTIONS(159), + [sym_identifier] = ACTIONS(161), + [sym_comment] = ACTIONS(81), }, [16] = { - [sym_field_declaration_list] = STATE(89), - [anon_sym_LBRACE] = ACTIONS(173), - [sym_identifier] = ACTIONS(175), - [sym_comment] = ACTIONS(85), + [sym_field_declaration_list] = STATE(84), + [anon_sym_LBRACE] = ACTIONS(163), + [sym_identifier] = ACTIONS(165), + [sym_comment] = ACTIONS(81), }, [17] = { - [sym_field_declaration_list] = STATE(91), - [anon_sym_LBRACE] = ACTIONS(173), - [sym_identifier] = ACTIONS(177), - [sym_comment] = ACTIONS(85), + [sym_field_declaration_list] = STATE(86), + [anon_sym_LBRACE] = ACTIONS(163), + [sym_identifier] = ACTIONS(167), + [sym_comment] = ACTIONS(81), }, [18] = { - [sym_parenthesized_expression] = STATE(93), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [sym_parenthesized_expression] = STATE(88), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, [19] = { - [sym_parenthesized_expression] = STATE(94), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [sym_parenthesized_expression] = STATE(90), + [anon_sym_LPAREN2] = ACTIONS(171), + [sym_comment] = ACTIONS(81), }, [20] = { - [sym__expression] = STATE(101), - [sym_conditional_expression] = STATE(101), - [sym_assignment_expression] = STATE(101), - [sym_pointer_expression] = STATE(101), - [sym_logical_expression] = STATE(101), - [sym_bitwise_expression] = STATE(101), - [sym_equality_expression] = STATE(101), - [sym_relational_expression] = STATE(101), - [sym_shift_expression] = STATE(101), - [sym_math_expression] = STATE(101), - [sym_cast_expression] = STATE(101), - [sym_sizeof_expression] = STATE(101), - [sym_subscript_expression] = STATE(101), - [sym_call_expression] = STATE(101), - [sym_field_expression] = STATE(101), - [sym_compound_literal_expression] = STATE(101), - [sym_parenthesized_expression] = STATE(101), - [sym_char_literal] = STATE(101), - [sym_concatenated_string] = STATE(101), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(197), - [sym_false] = ACTIONS(197), - [sym_null] = ACTIONS(197), - [sym_identifier] = ACTIONS(197), - [sym_comment] = ACTIONS(85), + [sym_parenthesized_expression] = STATE(91), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, [21] = { - [anon_sym_COLON] = ACTIONS(199), - [sym_comment] = ACTIONS(85), - }, - [22] = { - [sym_parenthesized_expression] = STATE(104), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), - }, - [23] = { - [sym_compound_statement] = STATE(113), - [sym_labeled_statement] = STATE(113), - [sym_expression_statement] = STATE(113), - [sym_if_statement] = STATE(113), - [sym_switch_statement] = STATE(113), - [sym_case_statement] = STATE(113), - [sym_while_statement] = STATE(113), - [sym_do_statement] = STATE(113), - [sym_for_statement] = STATE(113), - [sym_return_statement] = STATE(113), - [sym_break_statement] = STATE(113), - [sym_continue_statement] = STATE(113), - [sym_goto_statement] = STATE(113), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(201), - [anon_sym_switch] = ACTIONS(203), - [anon_sym_case] = ACTIONS(205), - [anon_sym_default] = ACTIONS(207), - [anon_sym_while] = ACTIONS(209), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(213), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(173), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(215), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(181), + [sym_comment] = ACTIONS(81), + }, + [22] = { + [anon_sym_LPAREN2] = ACTIONS(183), + [sym_comment] = ACTIONS(81), + }, + [23] = { + [sym__expression] = STATE(106), + [sym_conditional_expression] = STATE(106), + [sym_assignment_expression] = STATE(106), + [sym_pointer_expression] = STATE(106), + [sym_logical_expression] = STATE(106), + [sym_bitwise_expression] = STATE(106), + [sym_equality_expression] = STATE(106), + [sym_relational_expression] = STATE(106), + [sym_shift_expression] = STATE(106), + [sym_math_expression] = STATE(106), + [sym_cast_expression] = STATE(106), + [sym_sizeof_expression] = STATE(106), + [sym_subscript_expression] = STATE(106), + [sym_call_expression] = STATE(106), + [sym_field_expression] = STATE(106), + [sym_compound_literal_expression] = STATE(106), + [sym_parenthesized_expression] = STATE(106), + [sym_char_literal] = STATE(106), + [sym_concatenated_string] = STATE(106), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(203), + [sym_false] = ACTIONS(203), + [sym_null] = ACTIONS(203), + [sym_identifier] = ACTIONS(203), + [sym_comment] = ACTIONS(81), }, [24] = { - [anon_sym_LPAREN2] = ACTIONS(217), - [sym_comment] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(205), + [sym_comment] = ACTIONS(81), }, [25] = { - [sym__expression] = STATE(122), - [sym_conditional_expression] = STATE(122), - [sym_assignment_expression] = STATE(122), - [sym_pointer_expression] = STATE(122), - [sym_logical_expression] = STATE(122), - [sym_bitwise_expression] = STATE(122), - [sym_equality_expression] = STATE(122), - [sym_relational_expression] = STATE(122), - [sym_shift_expression] = STATE(122), - [sym_math_expression] = STATE(122), - [sym_cast_expression] = STATE(122), - [sym_sizeof_expression] = STATE(122), - [sym_subscript_expression] = STATE(122), - [sym_call_expression] = STATE(122), - [sym_field_expression] = STATE(122), - [sym_compound_literal_expression] = STATE(122), - [sym_parenthesized_expression] = STATE(122), - [sym_char_literal] = STATE(122), - [sym_concatenated_string] = STATE(122), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(219), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [sym_null] = ACTIONS(237), - [sym_identifier] = ACTIONS(237), - [sym_comment] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(207), + [sym_comment] = ACTIONS(81), }, [26] = { - [anon_sym_SEMI] = ACTIONS(239), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(209), + [sym_comment] = ACTIONS(81), }, [27] = { - [anon_sym_SEMI] = ACTIONS(241), - [sym_comment] = ACTIONS(85), + [sym__expression] = STATE(111), + [sym_conditional_expression] = STATE(111), + [sym_assignment_expression] = STATE(111), + [sym_pointer_expression] = STATE(111), + [sym_logical_expression] = STATE(111), + [sym_bitwise_expression] = STATE(111), + [sym_equality_expression] = STATE(111), + [sym_relational_expression] = STATE(111), + [sym_shift_expression] = STATE(111), + [sym_math_expression] = STATE(111), + [sym_cast_expression] = STATE(111), + [sym_sizeof_expression] = STATE(111), + [sym_subscript_expression] = STATE(111), + [sym_call_expression] = STATE(111), + [sym_field_expression] = STATE(111), + [sym_compound_literal_expression] = STATE(111), + [sym_parenthesized_expression] = STATE(111), + [sym_char_literal] = STATE(111), + [sym_concatenated_string] = STATE(111), + [sym_string_literal] = STATE(39), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [sym_null] = ACTIONS(213), + [sym_identifier] = ACTIONS(213), + [sym_comment] = ACTIONS(81), }, [28] = { - [sym_identifier] = ACTIONS(243), - [sym_comment] = ACTIONS(85), + [sym__expression] = STATE(112), + [sym_conditional_expression] = STATE(112), + [sym_assignment_expression] = STATE(112), + [sym_pointer_expression] = STATE(112), + [sym_logical_expression] = STATE(112), + [sym_bitwise_expression] = STATE(112), + [sym_equality_expression] = STATE(112), + [sym_relational_expression] = STATE(112), + [sym_shift_expression] = STATE(112), + [sym_math_expression] = STATE(112), + [sym_cast_expression] = STATE(112), + [sym_sizeof_expression] = STATE(112), + [sym_subscript_expression] = STATE(112), + [sym_call_expression] = STATE(112), + [sym_field_expression] = STATE(112), + [sym_compound_literal_expression] = STATE(112), + [sym_parenthesized_expression] = STATE(112), + [sym_char_literal] = STATE(112), + [sym_concatenated_string] = STATE(112), + [sym_string_literal] = STATE(39), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(215), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [sym_null] = ACTIONS(217), + [sym_identifier] = ACTIONS(217), + [sym_comment] = ACTIONS(81), }, [29] = { - [sym__expression] = STATE(127), - [sym_conditional_expression] = STATE(127), - [sym_assignment_expression] = STATE(127), - [sym_pointer_expression] = STATE(127), - [sym_logical_expression] = STATE(127), - [sym_bitwise_expression] = STATE(127), - [sym_equality_expression] = STATE(127), - [sym_relational_expression] = STATE(127), - [sym_shift_expression] = STATE(127), - [sym_math_expression] = STATE(127), - [sym_cast_expression] = STATE(127), - [sym_sizeof_expression] = STATE(127), - [sym_subscript_expression] = STATE(127), - [sym_call_expression] = STATE(127), - [sym_field_expression] = STATE(127), - [sym_compound_literal_expression] = STATE(127), - [sym_parenthesized_expression] = STATE(127), - [sym_char_literal] = STATE(127), - [sym_concatenated_string] = STATE(127), - [sym_string_literal] = STATE(41), + [sym__expression] = STATE(113), + [sym_conditional_expression] = STATE(113), + [sym_assignment_expression] = STATE(113), + [sym_pointer_expression] = STATE(113), + [sym_logical_expression] = STATE(113), + [sym_bitwise_expression] = STATE(113), + [sym_equality_expression] = STATE(113), + [sym_relational_expression] = STATE(113), + [sym_shift_expression] = STATE(113), + [sym_math_expression] = STATE(113), + [sym_cast_expression] = STATE(113), + [sym_sizeof_expression] = STATE(113), + [sym_subscript_expression] = STATE(113), + [sym_call_expression] = STATE(113), + [sym_field_expression] = STATE(113), + [sym_compound_literal_expression] = STATE(113), + [sym_parenthesized_expression] = STATE(113), + [sym_char_literal] = STATE(113), + [sym_concatenated_string] = STATE(113), + [sym_string_literal] = STATE(39), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(247), - [sym_false] = ACTIONS(247), - [sym_null] = ACTIONS(247), - [sym_identifier] = ACTIONS(247), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(219), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(221), + [sym_false] = ACTIONS(221), + [sym_null] = ACTIONS(221), + [sym_identifier] = ACTIONS(221), + [sym_comment] = ACTIONS(81), }, [30] = { - [sym__expression] = STATE(128), - [sym_conditional_expression] = STATE(128), - [sym_assignment_expression] = STATE(128), - [sym_pointer_expression] = STATE(128), - [sym_logical_expression] = STATE(128), - [sym_bitwise_expression] = STATE(128), - [sym_equality_expression] = STATE(128), - [sym_relational_expression] = STATE(128), - [sym_shift_expression] = STATE(128), - [sym_math_expression] = STATE(128), - [sym_cast_expression] = STATE(128), - [sym_sizeof_expression] = STATE(128), - [sym_subscript_expression] = STATE(128), - [sym_call_expression] = STATE(128), - [sym_field_expression] = STATE(128), - [sym_compound_literal_expression] = STATE(128), - [sym_parenthesized_expression] = STATE(128), - [sym_char_literal] = STATE(128), - [sym_concatenated_string] = STATE(128), - [sym_string_literal] = STATE(41), - [anon_sym_LPAREN2] = ACTIONS(25), + [sym__expression] = STATE(115), + [sym_conditional_expression] = STATE(115), + [sym_assignment_expression] = STATE(115), + [sym_pointer_expression] = STATE(115), + [sym_logical_expression] = STATE(115), + [sym_bitwise_expression] = STATE(115), + [sym_equality_expression] = STATE(115), + [sym_relational_expression] = STATE(115), + [sym_shift_expression] = STATE(115), + [sym_math_expression] = STATE(115), + [sym_cast_expression] = STATE(115), + [sym_sizeof_expression] = STATE(115), + [sym_subscript_expression] = STATE(115), + [sym_call_expression] = STATE(115), + [sym_field_expression] = STATE(115), + [sym_compound_literal_expression] = STATE(115), + [sym_parenthesized_expression] = STATE(115), + [sym_char_literal] = STATE(115), + [sym_concatenated_string] = STATE(115), + [sym_string_literal] = STATE(39), + [anon_sym_LPAREN2] = ACTIONS(223), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(251), - [sym_false] = ACTIONS(251), - [sym_null] = ACTIONS(251), - [sym_identifier] = ACTIONS(251), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(225), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(227), + [sym_false] = ACTIONS(227), + [sym_null] = ACTIONS(227), + [sym_identifier] = ACTIONS(227), + [sym_comment] = ACTIONS(81), }, [31] = { - [sym__expression] = STATE(129), - [sym_conditional_expression] = STATE(129), - [sym_assignment_expression] = STATE(129), - [sym_pointer_expression] = STATE(129), - [sym_logical_expression] = STATE(129), - [sym_bitwise_expression] = STATE(129), - [sym_equality_expression] = STATE(129), - [sym_relational_expression] = STATE(129), - [sym_shift_expression] = STATE(129), - [sym_math_expression] = STATE(129), - [sym_cast_expression] = STATE(129), - [sym_sizeof_expression] = STATE(129), - [sym_subscript_expression] = STATE(129), - [sym_call_expression] = STATE(129), - [sym_field_expression] = STATE(129), - [sym_compound_literal_expression] = STATE(129), - [sym_parenthesized_expression] = STATE(129), - [sym_char_literal] = STATE(129), - [sym_concatenated_string] = STATE(129), - [sym_string_literal] = STATE(41), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(253), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(255), - [sym_false] = ACTIONS(255), - [sym_null] = ACTIONS(255), - [sym_identifier] = ACTIONS(255), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH] = ACTIONS(229), + [sym_escape_sequence] = ACTIONS(231), + [sym_comment] = ACTIONS(91), }, [32] = { - [sym__expression] = STATE(131), - [sym_conditional_expression] = STATE(131), - [sym_assignment_expression] = STATE(131), - [sym_pointer_expression] = STATE(131), - [sym_logical_expression] = STATE(131), - [sym_bitwise_expression] = STATE(131), - [sym_equality_expression] = STATE(131), - [sym_relational_expression] = STATE(131), - [sym_shift_expression] = STATE(131), - [sym_math_expression] = STATE(131), - [sym_cast_expression] = STATE(131), - [sym_sizeof_expression] = STATE(131), - [sym_subscript_expression] = STATE(131), - [sym_call_expression] = STATE(131), - [sym_field_expression] = STATE(131), - [sym_compound_literal_expression] = STATE(131), - [sym_parenthesized_expression] = STATE(131), - [sym_char_literal] = STATE(131), - [sym_concatenated_string] = STATE(131), - [sym_string_literal] = STATE(41), - [anon_sym_LPAREN2] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(259), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(261), - [sym_false] = ACTIONS(261), - [sym_null] = ACTIONS(261), - [sym_identifier] = ACTIONS(261), - [sym_comment] = ACTIONS(85), + [aux_sym_string_literal_repeat1] = STATE(118), + [anon_sym_DQUOTE] = ACTIONS(233), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(235), + [sym_escape_sequence] = ACTIONS(235), + [sym_comment] = ACTIONS(91), }, [33] = { - [aux_sym_SLASH_LBRACK_CARET_BSLASHn_SQUOTE_RBRACK_SLASH] = ACTIONS(263), - [sym_escape_sequence] = ACTIONS(265), - [sym_comment] = ACTIONS(95), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(239), + [anon_sym_extern] = ACTIONS(242), + [anon_sym_LPAREN2] = ACTIONS(244), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_static] = ACTIONS(242), + [anon_sym_auto] = ACTIONS(242), + [anon_sym_register] = ACTIONS(242), + [anon_sym_inline] = ACTIONS(242), + [anon_sym_const] = ACTIONS(242), + [anon_sym_restrict] = ACTIONS(242), + [anon_sym_volatile] = ACTIONS(242), + [anon_sym__Atomic] = ACTIONS(242), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_identifier] = ACTIONS(242), + [sym_comment] = ACTIONS(81), }, [34] = { - [aux_sym_string_literal_repeat1] = STATE(134), - [anon_sym_DQUOTE] = ACTIONS(267), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(269), - [sym_escape_sequence] = ACTIONS(269), - [sym_comment] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(255), + [sym_comment] = ACTIONS(81), }, [35] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), + [sym__declarator] = STATE(124), + [sym_pointer_declarator] = STATE(124), + [sym_function_declarator] = STATE(124), + [sym_array_declarator] = STATE(124), + [sym_init_declarator] = STATE(125), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(261), + [sym_identifier] = ACTIONS(263), + [sym_comment] = ACTIONS(81), }, [36] = { - [ts_builtin_sym_end] = ACTIONS(289), - [sym_comment] = ACTIONS(85), - }, - [37] = { - [sym__declarator] = STATE(140), - [sym_pointer_declarator] = STATE(140), - [sym_function_declarator] = STATE(140), - [sym_array_declarator] = STATE(140), - [sym_init_declarator] = STATE(141), - [anon_sym_SEMI] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [sym_identifier] = ACTIONS(297), - [sym_comment] = ACTIONS(85), - }, - [38] = { - [sym_storage_class_specifier] = STATE(142), - [sym_type_qualifier] = STATE(142), - [aux_sym__declaration_specifiers_repeat1] = STATE(142), - [anon_sym_SEMI] = ACTIONS(299), + [sym_storage_class_specifier] = STATE(126), + [sym_type_qualifier] = STATE(126), + [aux_sym__declaration_specifiers_repeat1] = STATE(126), + [anon_sym_SEMI] = ACTIONS(265), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(299), + [anon_sym_LPAREN2] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(265), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -6691,158 +6712,157 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(301), - [sym_comment] = ACTIONS(85), - }, - [39] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_SEMI] = ACTIONS(305), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_STAR_EQ] = ACTIONS(317), - [anon_sym_SLASH_EQ] = ACTIONS(317), - [anon_sym_PERCENT_EQ] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(317), - [anon_sym_DASH_EQ] = ACTIONS(317), - [anon_sym_LT_LT_EQ] = ACTIONS(317), - [anon_sym_GT_GT_EQ] = ACTIONS(317), - [anon_sym_AMP_EQ] = ACTIONS(317), - [anon_sym_CARET_EQ] = ACTIONS(317), - [anon_sym_PIPE_EQ] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(319), - [anon_sym_PIPE_PIPE] = ACTIONS(321), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [40] = { - [anon_sym_SEMI] = ACTIONS(305), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(267), + [sym_comment] = ACTIONS(81), }, - [41] = { - [sym_string_literal] = STATE(162), - [aux_sym_concatenated_string_repeat1] = STATE(162), - [anon_sym_COMMA] = ACTIONS(271), + [37] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(269), [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(281), + [anon_sym_STAR_EQ] = ACTIONS(283), + [anon_sym_SLASH_EQ] = ACTIONS(283), + [anon_sym_PERCENT_EQ] = ACTIONS(283), + [anon_sym_PLUS_EQ] = ACTIONS(283), + [anon_sym_DASH_EQ] = ACTIONS(283), + [anon_sym_LT_LT_EQ] = ACTIONS(283), + [anon_sym_GT_GT_EQ] = ACTIONS(283), + [anon_sym_AMP_EQ] = ACTIONS(283), + [anon_sym_CARET_EQ] = ACTIONS(283), + [anon_sym_PIPE_EQ] = ACTIONS(283), [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_comment] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [42] = { - [sym_preproc_include] = STATE(163), - [sym_preproc_def] = STATE(163), - [sym_preproc_function_def] = STATE(163), - [sym_preproc_call] = STATE(163), - [sym_preproc_if] = STATE(163), - [sym_preproc_ifdef] = STATE(163), - [sym_function_definition] = STATE(163), - [sym_declaration] = STATE(163), - [sym_type_definition] = STATE(163), - [sym__declaration_specifiers] = STATE(37), - [sym_linkage_specification] = STATE(163), - [sym_compound_statement] = STATE(163), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(163), - [sym_expression_statement] = STATE(163), - [sym_if_statement] = STATE(163), - [sym_switch_statement] = STATE(163), - [sym_case_statement] = STATE(163), - [sym_while_statement] = STATE(163), - [sym_do_statement] = STATE(163), - [sym_for_statement] = STATE(163), - [sym_return_statement] = STATE(163), - [sym_break_statement] = STATE(163), - [sym_continue_statement] = STATE(163), - [sym_goto_statement] = STATE(163), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(163), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(163), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [ts_builtin_sym_end] = ACTIONS(343), + [38] = { + [anon_sym_SEMI] = ACTIONS(271), + [sym_comment] = ACTIONS(81), + }, + [39] = { + [sym_string_literal] = STATE(146), + [aux_sym_concatenated_string_repeat1] = STATE(146), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_comment] = ACTIONS(81), + }, + [40] = { + [sym_preproc_include] = STATE(147), + [sym_preproc_def] = STATE(147), + [sym_preproc_function_def] = STATE(147), + [sym_preproc_call] = STATE(147), + [sym_preproc_if] = STATE(147), + [sym_preproc_ifdef] = STATE(147), + [sym_function_definition] = STATE(147), + [sym_declaration] = STATE(147), + [sym_type_definition] = STATE(147), + [sym__declaration_specifiers] = STATE(35), + [sym_linkage_specification] = STATE(147), + [sym_compound_statement] = STATE(147), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(147), + [sym_expression_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_switch_statement] = STATE(147), + [sym_while_statement] = STATE(147), + [sym_do_statement] = STATE(147), + [sym_for_statement] = STATE(147), + [sym_return_statement] = STATE(147), + [sym_break_statement] = STATE(147), + [sym_continue_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(147), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(147), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [ts_builtin_sym_end] = ACTIONS(309), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), @@ -6872,43 +6892,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(41), [anon_sym_if] = ACTIONS(43), [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_while] = ACTIONS(51), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(83), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(79), + [sym_comment] = ACTIONS(81), }, - [43] = { - [sym_storage_class_specifier] = STATE(165), - [sym_type_qualifier] = STATE(165), - [sym__type_specifier] = STATE(164), - [sym_sized_type_specifier] = STATE(164), - [sym_enum_specifier] = STATE(164), - [sym_struct_specifier] = STATE(164), - [sym_union_specifier] = STATE(164), - [sym_macro_type_specifier] = STATE(164), - [aux_sym__declaration_specifiers_repeat1] = STATE(165), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), + [41] = { + [sym_storage_class_specifier] = STATE(149), + [sym_type_qualifier] = STATE(149), + [sym__type_specifier] = STATE(148), + [sym_sized_type_specifier] = STATE(148), + [sym_enum_specifier] = STATE(148), + [sym_struct_specifier] = STATE(148), + [sym_union_specifier] = STATE(148), + [sym_macro_type_specifier] = STATE(148), + [aux_sym__declaration_specifiers_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), [anon_sym_extern] = ACTIONS(29), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), @@ -6921,179 +6939,176 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(33), [anon_sym_long] = ACTIONS(33), [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(345), + [sym_primitive_type] = ACTIONS(311), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), + }, + [42] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(152), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_extern] = ACTIONS(315), + [anon_sym_LPAREN2] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(313), + [anon_sym_static] = ACTIONS(315), + [anon_sym_auto] = ACTIONS(315), + [anon_sym_register] = ACTIONS(315), + [anon_sym_inline] = ACTIONS(315), + [anon_sym_const] = ACTIONS(315), + [anon_sym_restrict] = ACTIONS(315), + [anon_sym_volatile] = ACTIONS(315), + [anon_sym__Atomic] = ACTIONS(315), + [anon_sym_unsigned] = ACTIONS(317), + [anon_sym_long] = ACTIONS(317), + [anon_sym_short] = ACTIONS(317), + [sym_primitive_type] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), + [sym_comment] = ACTIONS(81), + }, + [43] = { + [aux_sym_string_literal_repeat1] = STATE(154), + [anon_sym_DQUOTE] = ACTIONS(324), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(326), + [sym_escape_sequence] = ACTIONS(326), + [sym_comment] = ACTIONS(91), }, [44] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(168), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_extern] = ACTIONS(349), - [anon_sym_LPAREN2] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_static] = ACTIONS(349), - [anon_sym_auto] = ACTIONS(349), - [anon_sym_register] = ACTIONS(349), - [anon_sym_inline] = ACTIONS(349), - [anon_sym_const] = ACTIONS(349), - [anon_sym_restrict] = ACTIONS(349), - [anon_sym_volatile] = ACTIONS(349), - [anon_sym__Atomic] = ACTIONS(349), - [anon_sym_unsigned] = ACTIONS(351), - [anon_sym_long] = ACTIONS(351), - [anon_sym_short] = ACTIONS(351), - [sym_primitive_type] = ACTIONS(353), - [sym_identifier] = ACTIONS(355), - [sym_comment] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(328), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(330), + [sym_preproc_directive] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_typedef] = ACTIONS(330), + [anon_sym_extern] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(328), + [anon_sym_RBRACE] = ACTIONS(328), + [anon_sym_LPAREN2] = ACTIONS(328), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_static] = ACTIONS(330), + [anon_sym_auto] = ACTIONS(330), + [anon_sym_register] = ACTIONS(330), + [anon_sym_inline] = ACTIONS(330), + [anon_sym_const] = ACTIONS(330), + [anon_sym_restrict] = ACTIONS(330), + [anon_sym_volatile] = ACTIONS(330), + [anon_sym__Atomic] = ACTIONS(330), + [anon_sym_unsigned] = ACTIONS(330), + [anon_sym_long] = ACTIONS(330), + [anon_sym_short] = ACTIONS(330), + [sym_primitive_type] = ACTIONS(330), + [anon_sym_enum] = ACTIONS(330), + [anon_sym_struct] = ACTIONS(330), + [anon_sym_union] = ACTIONS(330), + [anon_sym_if] = ACTIONS(330), + [anon_sym_switch] = ACTIONS(330), + [anon_sym_while] = ACTIONS(330), + [anon_sym_do] = ACTIONS(330), + [anon_sym_for] = ACTIONS(330), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(330), + [anon_sym_continue] = ACTIONS(330), + [anon_sym_goto] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(328), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_sizeof] = ACTIONS(330), + [sym_number_literal] = ACTIONS(328), + [anon_sym_SQUOTE] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(328), + [sym_true] = ACTIONS(330), + [sym_false] = ACTIONS(330), + [sym_null] = ACTIONS(330), + [sym_identifier] = ACTIONS(330), + [sym_comment] = ACTIONS(81), }, [45] = { - [aux_sym_string_literal_repeat1] = STATE(170), - [anon_sym_DQUOTE] = ACTIONS(358), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(360), - [sym_escape_sequence] = ACTIONS(360), - [sym_comment] = ACTIONS(95), + [sym_preproc_params] = STATE(158), + [anon_sym_LF] = ACTIONS(332), + [anon_sym_LPAREN] = ACTIONS(334), + [sym_preproc_arg] = ACTIONS(336), + [sym_comment] = ACTIONS(91), }, [46] = { - [ts_builtin_sym_end] = ACTIONS(362), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(364), - [sym_preproc_directive] = ACTIONS(364), - [anon_sym_SEMI] = ACTIONS(362), - [anon_sym_typedef] = ACTIONS(364), - [anon_sym_extern] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_RBRACE] = ACTIONS(362), - [anon_sym_LPAREN2] = ACTIONS(362), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_static] = ACTIONS(364), - [anon_sym_auto] = ACTIONS(364), - [anon_sym_register] = ACTIONS(364), - [anon_sym_inline] = ACTIONS(364), - [anon_sym_const] = ACTIONS(364), - [anon_sym_restrict] = ACTIONS(364), - [anon_sym_volatile] = ACTIONS(364), - [anon_sym__Atomic] = ACTIONS(364), - [anon_sym_unsigned] = ACTIONS(364), - [anon_sym_long] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [sym_primitive_type] = ACTIONS(364), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_struct] = ACTIONS(364), - [anon_sym_union] = ACTIONS(364), - [anon_sym_if] = ACTIONS(364), - [anon_sym_switch] = ACTIONS(364), - [anon_sym_case] = ACTIONS(364), - [anon_sym_default] = ACTIONS(364), - [anon_sym_while] = ACTIONS(364), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(364), - [anon_sym_return] = ACTIONS(364), - [anon_sym_break] = ACTIONS(364), - [anon_sym_continue] = ACTIONS(364), - [anon_sym_goto] = ACTIONS(364), - [anon_sym_AMP] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(362), - [anon_sym_TILDE] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(364), - [anon_sym_DASH] = ACTIONS(364), - [anon_sym_DASH_DASH] = ACTIONS(362), - [anon_sym_PLUS_PLUS] = ACTIONS(362), - [anon_sym_sizeof] = ACTIONS(364), - [sym_number_literal] = ACTIONS(362), - [anon_sym_SQUOTE] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [sym_true] = ACTIONS(364), - [sym_false] = ACTIONS(364), - [sym_null] = ACTIONS(364), - [sym_identifier] = ACTIONS(364), - [sym_comment] = ACTIONS(85), - }, - [47] = { - [sym_preproc_params] = STATE(174), - [anon_sym_LF] = ACTIONS(366), - [anon_sym_LPAREN] = ACTIONS(368), - [sym_preproc_arg] = ACTIONS(370), - [sym_comment] = ACTIONS(95), - }, - [48] = { - [sym_preproc_include] = STATE(203), - [sym_preproc_def] = STATE(203), - [sym_preproc_function_def] = STATE(203), - [sym_preproc_call] = STATE(203), - [sym_preproc_if] = STATE(203), - [sym_preproc_ifdef] = STATE(203), - [sym_preproc_else] = STATE(199), - [sym_preproc_elif] = STATE(199), - [sym_function_definition] = STATE(203), - [sym_declaration] = STATE(203), - [sym_type_definition] = STATE(203), - [sym__declaration_specifiers] = STATE(200), - [sym_linkage_specification] = STATE(203), - [sym_compound_statement] = STATE(203), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(203), - [sym_expression_statement] = STATE(203), - [sym_if_statement] = STATE(203), - [sym_switch_statement] = STATE(203), - [sym_case_statement] = STATE(203), - [sym_while_statement] = STATE(203), - [sym_do_statement] = STATE(203), - [sym_for_statement] = STATE(203), - [sym_return_statement] = STATE(203), - [sym_break_statement] = STATE(203), - [sym_continue_statement] = STATE(203), - [sym_goto_statement] = STATE(203), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(203), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(203), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(378), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(384), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [sym_preproc_include] = STATE(185), + [sym_preproc_def] = STATE(185), + [sym_preproc_function_def] = STATE(185), + [sym_preproc_call] = STATE(185), + [sym_preproc_if] = STATE(185), + [sym_preproc_ifdef] = STATE(185), + [sym_preproc_else] = STATE(181), + [sym_preproc_elif] = STATE(181), + [sym_function_definition] = STATE(185), + [sym_declaration] = STATE(185), + [sym_type_definition] = STATE(185), + [sym__declaration_specifiers] = STATE(182), + [sym_linkage_specification] = STATE(185), + [sym_compound_statement] = STATE(185), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(185), + [sym_expression_statement] = STATE(185), + [sym_if_statement] = STATE(185), + [sym_switch_statement] = STATE(185), + [sym_while_statement] = STATE(185), + [sym_do_statement] = STATE(185), + [sym_for_statement] = STATE(185), + [sym_return_statement] = STATE(185), + [sym_break_statement] = STATE(185), + [sym_continue_statement] = STATE(185), + [sym_goto_statement] = STATE(185), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(185), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(185), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(348), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(350), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -7111,107 +7126,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [49] = { - [sym_preproc_include] = STATE(206), - [sym_preproc_def] = STATE(206), - [sym_preproc_function_def] = STATE(206), - [sym_preproc_call] = STATE(206), - [sym_preproc_if] = STATE(206), - [sym_preproc_ifdef] = STATE(206), - [sym_preproc_else] = STATE(205), - [sym_preproc_elif] = STATE(205), - [sym_function_definition] = STATE(206), - [sym_declaration] = STATE(206), - [sym_type_definition] = STATE(206), - [sym__declaration_specifiers] = STATE(200), - [sym_linkage_specification] = STATE(206), - [sym_compound_statement] = STATE(206), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(206), - [sym_expression_statement] = STATE(206), - [sym_if_statement] = STATE(206), - [sym_switch_statement] = STATE(206), - [sym_case_statement] = STATE(206), - [sym_while_statement] = STATE(206), - [sym_do_statement] = STATE(206), - [sym_for_statement] = STATE(206), - [sym_return_statement] = STATE(206), - [sym_break_statement] = STATE(206), - [sym_continue_statement] = STATE(206), - [sym_goto_statement] = STATE(206), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(206), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(206), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(424), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(384), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [47] = { + [sym_preproc_include] = STATE(188), + [sym_preproc_def] = STATE(188), + [sym_preproc_function_def] = STATE(188), + [sym_preproc_call] = STATE(188), + [sym_preproc_if] = STATE(188), + [sym_preproc_ifdef] = STATE(188), + [sym_preproc_else] = STATE(187), + [sym_preproc_elif] = STATE(187), + [sym_function_definition] = STATE(188), + [sym_declaration] = STATE(188), + [sym_type_definition] = STATE(188), + [sym__declaration_specifiers] = STATE(182), + [sym_linkage_specification] = STATE(188), + [sym_compound_statement] = STATE(188), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(188), + [sym_expression_statement] = STATE(188), + [sym_if_statement] = STATE(188), + [sym_switch_statement] = STATE(188), + [sym_while_statement] = STATE(188), + [sym_do_statement] = STATE(188), + [sym_for_statement] = STATE(188), + [sym_return_statement] = STATE(188), + [sym_break_statement] = STATE(188), + [sym_continue_statement] = STATE(188), + [sym_goto_statement] = STATE(188), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(188), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(188), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(386), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(348), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(350), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -7229,178 +7241,174 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), + }, + [48] = { + [ts_builtin_sym_end] = ACTIONS(388), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(390), + [sym_preproc_directive] = ACTIONS(390), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_typedef] = ACTIONS(390), + [anon_sym_extern] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_RBRACE] = ACTIONS(388), + [anon_sym_LPAREN2] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_static] = ACTIONS(390), + [anon_sym_auto] = ACTIONS(390), + [anon_sym_register] = ACTIONS(390), + [anon_sym_inline] = ACTIONS(390), + [anon_sym_const] = ACTIONS(390), + [anon_sym_restrict] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(390), + [anon_sym__Atomic] = ACTIONS(390), + [anon_sym_unsigned] = ACTIONS(390), + [anon_sym_long] = ACTIONS(390), + [anon_sym_short] = ACTIONS(390), + [sym_primitive_type] = ACTIONS(390), + [anon_sym_enum] = ACTIONS(390), + [anon_sym_struct] = ACTIONS(390), + [anon_sym_union] = ACTIONS(390), + [anon_sym_if] = ACTIONS(390), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_while] = ACTIONS(390), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(390), + [anon_sym_return] = ACTIONS(390), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [anon_sym_goto] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_DASH_DASH] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(388), + [anon_sym_sizeof] = ACTIONS(390), + [sym_number_literal] = ACTIONS(388), + [anon_sym_SQUOTE] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_identifier] = ACTIONS(390), + [sym_comment] = ACTIONS(81), + }, + [49] = { + [anon_sym_LF] = ACTIONS(392), + [sym_comment] = ACTIONS(91), }, [50] = { - [ts_builtin_sym_end] = ACTIONS(426), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(428), - [sym_preproc_directive] = ACTIONS(428), - [anon_sym_SEMI] = ACTIONS(426), - [anon_sym_typedef] = ACTIONS(428), - [anon_sym_extern] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(426), - [anon_sym_RBRACE] = ACTIONS(426), - [anon_sym_LPAREN2] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_static] = ACTIONS(428), - [anon_sym_auto] = ACTIONS(428), - [anon_sym_register] = ACTIONS(428), - [anon_sym_inline] = ACTIONS(428), - [anon_sym_const] = ACTIONS(428), - [anon_sym_restrict] = ACTIONS(428), - [anon_sym_volatile] = ACTIONS(428), - [anon_sym__Atomic] = ACTIONS(428), - [anon_sym_unsigned] = ACTIONS(428), - [anon_sym_long] = ACTIONS(428), - [anon_sym_short] = ACTIONS(428), - [sym_primitive_type] = ACTIONS(428), - [anon_sym_enum] = ACTIONS(428), - [anon_sym_struct] = ACTIONS(428), - [anon_sym_union] = ACTIONS(428), - [anon_sym_if] = ACTIONS(428), - [anon_sym_switch] = ACTIONS(428), - [anon_sym_case] = ACTIONS(428), - [anon_sym_default] = ACTIONS(428), - [anon_sym_while] = ACTIONS(428), - [anon_sym_do] = ACTIONS(428), - [anon_sym_for] = ACTIONS(428), - [anon_sym_return] = ACTIONS(428), - [anon_sym_break] = ACTIONS(428), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_goto] = ACTIONS(428), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_BANG] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(428), - [anon_sym_DASH] = ACTIONS(428), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(426), - [anon_sym_SQUOTE] = ACTIONS(426), - [anon_sym_DQUOTE] = ACTIONS(426), - [sym_true] = ACTIONS(428), - [sym_false] = ACTIONS(428), - [sym_null] = ACTIONS(428), - [sym_identifier] = ACTIONS(428), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(394), + [anon_sym_RPAREN] = ACTIONS(394), + [anon_sym_SEMI] = ACTIONS(394), + [anon_sym_extern] = ACTIONS(242), + [anon_sym_LPAREN2] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LBRACK] = ACTIONS(394), + [anon_sym_static] = ACTIONS(242), + [anon_sym_auto] = ACTIONS(242), + [anon_sym_register] = ACTIONS(242), + [anon_sym_inline] = ACTIONS(242), + [anon_sym_const] = ACTIONS(242), + [anon_sym_restrict] = ACTIONS(242), + [anon_sym_volatile] = ACTIONS(242), + [anon_sym__Atomic] = ACTIONS(242), + [anon_sym_COLON] = ACTIONS(394), + [sym_identifier] = ACTIONS(242), + [sym_comment] = ACTIONS(81), }, [51] = { - [anon_sym_LF] = ACTIONS(430), - [sym_comment] = ACTIONS(95), + [sym__type_declarator] = STATE(193), + [sym_pointer_type_declarator] = STATE(193), + [sym_function_type_declarator] = STATE(193), + [sym_array_type_declarator] = STATE(193), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(401), + [sym_identifier] = ACTIONS(403), + [sym_comment] = ACTIONS(81), }, [52] = { - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_RPAREN] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(432), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(434), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(432), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), - }, - [53] = { - [sym__type_declarator] = STATE(211), - [sym_pointer_type_declarator] = STATE(211), - [sym_function_type_declarator] = STATE(211), - [sym_array_type_declarator] = STATE(211), - [anon_sym_LPAREN2] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [sym_identifier] = ACTIONS(441), - [sym_comment] = ACTIONS(85), - }, - [54] = { - [sym_type_qualifier] = STATE(213), - [sym__type_specifier] = STATE(212), - [sym_sized_type_specifier] = STATE(212), - [sym_enum_specifier] = STATE(212), - [sym_struct_specifier] = STATE(212), - [sym_union_specifier] = STATE(212), - [sym_macro_type_specifier] = STATE(212), - [aux_sym_type_definition_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(55), + [sym_type_qualifier] = STATE(195), + [sym__type_specifier] = STATE(194), + [sym_sized_type_specifier] = STATE(194), + [sym_enum_specifier] = STATE(194), + [sym_struct_specifier] = STATE(194), + [sym_union_specifier] = STATE(194), + [sym_macro_type_specifier] = STATE(194), + [aux_sym_type_definition_repeat1] = STATE(195), + [aux_sym_sized_type_specifier_repeat1] = STATE(53), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(107), - [anon_sym_long] = ACTIONS(107), - [anon_sym_short] = ACTIONS(107), - [sym_primitive_type] = ACTIONS(443), + [anon_sym_unsigned] = ACTIONS(103), + [anon_sym_long] = ACTIONS(103), + [anon_sym_short] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(405), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [55] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(214), - [anon_sym_LPAREN2] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_unsigned] = ACTIONS(445), - [anon_sym_long] = ACTIONS(445), - [anon_sym_short] = ACTIONS(445), - [sym_primitive_type] = ACTIONS(353), - [sym_identifier] = ACTIONS(355), - [sym_comment] = ACTIONS(85), + [53] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(196), + [anon_sym_LPAREN2] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(313), + [anon_sym_unsigned] = ACTIONS(407), + [anon_sym_long] = ACTIONS(407), + [anon_sym_short] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), + [sym_comment] = ACTIONS(81), }, - [56] = { - [sym_function_definition] = STATE(216), - [sym_declaration] = STATE(216), - [sym__declaration_specifiers] = STATE(217), - [sym_declaration_list] = STATE(216), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), + [54] = { + [sym_function_definition] = STATE(198), + [sym_declaration] = STATE(198), + [sym__declaration_specifiers] = STATE(199), + [sym_declaration_list] = STATE(198), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(409), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -7409,277 +7417,227 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), + }, + [55] = { + [sym_preproc_arg] = ACTIONS(415), + [sym_comment] = ACTIONS(91), + }, + [56] = { + [sym_identifier] = ACTIONS(417), + [sym_comment] = ACTIONS(81), }, [57] = { - [sym_preproc_arg] = ACTIONS(453), - [sym_comment] = ACTIONS(95), + [ts_builtin_sym_end] = ACTIONS(419), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(421), + [sym_preproc_directive] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_typedef] = ACTIONS(421), + [anon_sym_extern] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_LPAREN2] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_static] = ACTIONS(421), + [anon_sym_auto] = ACTIONS(421), + [anon_sym_register] = ACTIONS(421), + [anon_sym_inline] = ACTIONS(421), + [anon_sym_const] = ACTIONS(421), + [anon_sym_restrict] = ACTIONS(421), + [anon_sym_volatile] = ACTIONS(421), + [anon_sym__Atomic] = ACTIONS(421), + [anon_sym_unsigned] = ACTIONS(421), + [anon_sym_long] = ACTIONS(421), + [anon_sym_short] = ACTIONS(421), + [sym_primitive_type] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(421), + [anon_sym_struct] = ACTIONS(421), + [anon_sym_union] = ACTIONS(421), + [anon_sym_if] = ACTIONS(421), + [anon_sym_else] = ACTIONS(421), + [anon_sym_switch] = ACTIONS(421), + [anon_sym_case] = ACTIONS(421), + [anon_sym_default] = ACTIONS(421), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(421), + [anon_sym_for] = ACTIONS(421), + [anon_sym_return] = ACTIONS(421), + [anon_sym_break] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_goto] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(419), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_DASH_DASH] = ACTIONS(419), + [anon_sym_PLUS_PLUS] = ACTIONS(419), + [anon_sym_sizeof] = ACTIONS(421), + [sym_number_literal] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [sym_true] = ACTIONS(421), + [sym_false] = ACTIONS(421), + [sym_null] = ACTIONS(421), + [sym_identifier] = ACTIONS(421), + [sym_comment] = ACTIONS(81), }, [58] = { - [sym_identifier] = ACTIONS(455), - [sym_comment] = ACTIONS(85), + [sym_parenthesized_expression] = STATE(205), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, [59] = { - [ts_builtin_sym_end] = ACTIONS(457), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(459), - [sym_preproc_directive] = ACTIONS(459), - [anon_sym_SEMI] = ACTIONS(457), - [anon_sym_typedef] = ACTIONS(459), - [anon_sym_extern] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(457), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_LPAREN2] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_static] = ACTIONS(459), - [anon_sym_auto] = ACTIONS(459), - [anon_sym_register] = ACTIONS(459), - [anon_sym_inline] = ACTIONS(459), - [anon_sym_const] = ACTIONS(459), - [anon_sym_restrict] = ACTIONS(459), - [anon_sym_volatile] = ACTIONS(459), - [anon_sym__Atomic] = ACTIONS(459), - [anon_sym_unsigned] = ACTIONS(459), - [anon_sym_long] = ACTIONS(459), - [anon_sym_short] = ACTIONS(459), - [sym_primitive_type] = ACTIONS(459), - [anon_sym_enum] = ACTIONS(459), - [anon_sym_struct] = ACTIONS(459), - [anon_sym_union] = ACTIONS(459), - [anon_sym_if] = ACTIONS(459), - [anon_sym_else] = ACTIONS(459), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_case] = ACTIONS(459), - [anon_sym_default] = ACTIONS(459), - [anon_sym_while] = ACTIONS(459), - [anon_sym_do] = ACTIONS(459), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(459), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(459), - [anon_sym_goto] = ACTIONS(459), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(457), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(457), - [anon_sym_sizeof] = ACTIONS(459), - [sym_number_literal] = ACTIONS(457), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_true] = ACTIONS(459), - [sym_false] = ACTIONS(459), - [sym_null] = ACTIONS(459), - [sym_identifier] = ACTIONS(459), - [sym_comment] = ACTIONS(85), + [sym_parenthesized_expression] = STATE(206), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, [60] = { - [sym_parenthesized_expression] = STATE(223), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [anon_sym_LPAREN2] = ACTIONS(423), + [sym_comment] = ACTIONS(81), }, [61] = { - [sym_parenthesized_expression] = STATE(224), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(239), + [anon_sym_extern] = ACTIONS(242), + [anon_sym_LPAREN2] = ACTIONS(244), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_static] = ACTIONS(242), + [anon_sym_auto] = ACTIONS(242), + [anon_sym_register] = ACTIONS(242), + [anon_sym_inline] = ACTIONS(242), + [anon_sym_const] = ACTIONS(242), + [anon_sym_restrict] = ACTIONS(242), + [anon_sym_volatile] = ACTIONS(242), + [anon_sym__Atomic] = ACTIONS(242), + [anon_sym_COLON] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_identifier] = ACTIONS(242), + [sym_comment] = ACTIONS(81), }, [62] = { - [sym__expression] = STATE(225), - [sym_conditional_expression] = STATE(225), - [sym_assignment_expression] = STATE(225), - [sym_pointer_expression] = STATE(225), - [sym_logical_expression] = STATE(225), - [sym_bitwise_expression] = STATE(225), - [sym_equality_expression] = STATE(225), - [sym_relational_expression] = STATE(225), - [sym_shift_expression] = STATE(225), - [sym_math_expression] = STATE(225), - [sym_cast_expression] = STATE(225), - [sym_sizeof_expression] = STATE(225), - [sym_subscript_expression] = STATE(225), - [sym_call_expression] = STATE(225), - [sym_field_expression] = STATE(225), - [sym_compound_literal_expression] = STATE(225), - [sym_parenthesized_expression] = STATE(225), - [sym_char_literal] = STATE(225), - [sym_concatenated_string] = STATE(225), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(461), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [sym_null] = ACTIONS(463), - [sym_identifier] = ACTIONS(463), - [sym_comment] = ACTIONS(85), + [sym__declarator] = STATE(210), + [sym_pointer_declarator] = STATE(210), + [sym_function_declarator] = STATE(210), + [sym_array_declarator] = STATE(210), + [sym_init_declarator] = STATE(125), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), + [sym_comment] = ACTIONS(81), }, [63] = { - [anon_sym_COLON] = ACTIONS(465), - [sym_comment] = ACTIONS(85), - }, - [64] = { - [sym_parenthesized_expression] = STATE(227), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), - }, - [65] = { - [anon_sym_LPAREN2] = ACTIONS(467), - [sym_comment] = ACTIONS(85), - }, - [66] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(469), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), - }, - [67] = { - [sym__declarator] = STATE(231), - [sym_pointer_declarator] = STATE(231), - [sym_function_declarator] = STATE(231), - [sym_array_declarator] = STATE(231), - [sym_init_declarator] = STATE(141), - [anon_sym_SEMI] = ACTIONS(291), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(471), - [sym_identifier] = ACTIONS(473), - [sym_comment] = ACTIONS(85), - }, - [68] = { - [sym_preproc_include] = STATE(233), - [sym_preproc_def] = STATE(233), - [sym_preproc_function_def] = STATE(233), - [sym_preproc_call] = STATE(233), - [sym_preproc_if_in_compound_statement] = STATE(233), - [sym_preproc_ifdef_in_compound_statement] = STATE(233), - [sym_declaration] = STATE(233), - [sym_type_definition] = STATE(233), - [sym__declaration_specifiers] = STATE(67), - [sym_compound_statement] = STATE(233), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(233), - [sym_expression_statement] = STATE(233), - [sym_if_statement] = STATE(233), - [sym_switch_statement] = STATE(233), - [sym_case_statement] = STATE(233), - [sym_while_statement] = STATE(233), - [sym_do_statement] = STATE(233), - [sym_for_statement] = STATE(233), - [sym_return_statement] = STATE(233), - [sym_break_statement] = STATE(233), - [sym_continue_statement] = STATE(233), - [sym_goto_statement] = STATE(233), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(233), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(233), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), + [sym_preproc_include] = STATE(212), + [sym_preproc_def] = STATE(212), + [sym_preproc_function_def] = STATE(212), + [sym_preproc_call] = STATE(212), + [sym_preproc_if_in_compound_statement] = STATE(212), + [sym_preproc_ifdef_in_compound_statement] = STATE(212), + [sym_declaration] = STATE(212), + [sym_type_definition] = STATE(212), + [sym__declaration_specifiers] = STATE(62), + [sym_compound_statement] = STATE(212), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_switch_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_goto_statement] = STATE(212), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(212), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(212), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(117), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(117), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(111), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(113), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(113), [sym_preproc_directive] = ACTIONS(15), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(431), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -7697,1274 +7655,1073 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(133), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(123), + [sym_comment] = ACTIONS(81), }, - [69] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(76), - [sym_sized_type_specifier] = STATE(76), - [sym_enum_specifier] = STATE(76), - [sym_struct_specifier] = STATE(76), - [sym_union_specifier] = STATE(76), - [sym__expression] = STATE(77), - [sym_comma_expression] = STATE(78), - [sym_conditional_expression] = STATE(77), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_type_descriptor] = STATE(234), - [sym_sizeof_expression] = STATE(77), - [sym_subscript_expression] = STATE(77), - [sym_call_expression] = STATE(77), - [sym_field_expression] = STATE(77), - [sym_compound_literal_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(80), - [sym_macro_type_specifier] = STATE(76), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(82), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), + [64] = { + [sym_type_qualifier] = STATE(76), + [sym__type_specifier] = STATE(71), + [sym_sized_type_specifier] = STATE(71), + [sym_enum_specifier] = STATE(71), + [sym_struct_specifier] = STATE(71), + [sym_union_specifier] = STATE(71), + [sym__expression] = STATE(72), + [sym_comma_expression] = STATE(73), + [sym_conditional_expression] = STATE(72), + [sym_assignment_expression] = STATE(72), + [sym_pointer_expression] = STATE(72), + [sym_logical_expression] = STATE(72), + [sym_bitwise_expression] = STATE(72), + [sym_equality_expression] = STATE(72), + [sym_relational_expression] = STATE(72), + [sym_shift_expression] = STATE(72), + [sym_math_expression] = STATE(72), + [sym_cast_expression] = STATE(72), + [sym_type_descriptor] = STATE(213), + [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(72), + [sym_call_expression] = STATE(72), + [sym_field_expression] = STATE(72), + [sym_compound_literal_expression] = STATE(72), + [sym_parenthesized_expression] = STATE(72), + [sym_char_literal] = STATE(72), + [sym_concatenated_string] = STATE(72), + [sym_string_literal] = STATE(75), + [sym_macro_type_specifier] = STATE(71), + [aux_sym_type_definition_repeat1] = STATE(76), + [aux_sym_sized_type_specifier_repeat1] = STATE(77), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [sym_primitive_type] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(129), + [anon_sym_long] = ACTIONS(129), + [anon_sym_short] = ACTIONS(129), + [sym_primitive_type] = ACTIONS(131), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(155), - [sym_false] = ACTIONS(155), - [sym_null] = ACTIONS(155), - [sym_identifier] = ACTIONS(157), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_identifier] = ACTIONS(147), + [sym_comment] = ACTIONS(81), + }, + [65] = { + [sym__expression] = STATE(78), + [sym_conditional_expression] = STATE(78), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(78), + [sym_call_expression] = STATE(78), + [sym_field_expression] = STATE(78), + [sym_compound_literal_expression] = STATE(78), + [sym_parenthesized_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_concatenated_string] = STATE(78), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(151), + [sym_false] = ACTIONS(151), + [sym_null] = ACTIONS(151), + [sym_identifier] = ACTIONS(151), + [sym_comment] = ACTIONS(81), + }, + [66] = { + [sym__expression] = STATE(111), + [sym_conditional_expression] = STATE(111), + [sym_assignment_expression] = STATE(111), + [sym_pointer_expression] = STATE(111), + [sym_logical_expression] = STATE(111), + [sym_bitwise_expression] = STATE(111), + [sym_equality_expression] = STATE(111), + [sym_relational_expression] = STATE(111), + [sym_shift_expression] = STATE(111), + [sym_math_expression] = STATE(111), + [sym_cast_expression] = STATE(111), + [sym_sizeof_expression] = STATE(111), + [sym_subscript_expression] = STATE(111), + [sym_call_expression] = STATE(111), + [sym_field_expression] = STATE(111), + [sym_compound_literal_expression] = STATE(111), + [sym_parenthesized_expression] = STATE(111), + [sym_char_literal] = STATE(111), + [sym_concatenated_string] = STATE(111), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [sym_null] = ACTIONS(213), + [sym_identifier] = ACTIONS(213), + [sym_comment] = ACTIONS(81), + }, + [67] = { + [sym__expression] = STATE(112), + [sym_conditional_expression] = STATE(112), + [sym_assignment_expression] = STATE(112), + [sym_pointer_expression] = STATE(112), + [sym_logical_expression] = STATE(112), + [sym_bitwise_expression] = STATE(112), + [sym_equality_expression] = STATE(112), + [sym_relational_expression] = STATE(112), + [sym_shift_expression] = STATE(112), + [sym_math_expression] = STATE(112), + [sym_cast_expression] = STATE(112), + [sym_sizeof_expression] = STATE(112), + [sym_subscript_expression] = STATE(112), + [sym_call_expression] = STATE(112), + [sym_field_expression] = STATE(112), + [sym_compound_literal_expression] = STATE(112), + [sym_parenthesized_expression] = STATE(112), + [sym_char_literal] = STATE(112), + [sym_concatenated_string] = STATE(112), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(215), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [sym_null] = ACTIONS(217), + [sym_identifier] = ACTIONS(217), + [sym_comment] = ACTIONS(81), + }, + [68] = { + [sym__expression] = STATE(113), + [sym_conditional_expression] = STATE(113), + [sym_assignment_expression] = STATE(113), + [sym_pointer_expression] = STATE(113), + [sym_logical_expression] = STATE(113), + [sym_bitwise_expression] = STATE(113), + [sym_equality_expression] = STATE(113), + [sym_relational_expression] = STATE(113), + [sym_shift_expression] = STATE(113), + [sym_math_expression] = STATE(113), + [sym_cast_expression] = STATE(113), + [sym_sizeof_expression] = STATE(113), + [sym_subscript_expression] = STATE(113), + [sym_call_expression] = STATE(113), + [sym_field_expression] = STATE(113), + [sym_compound_literal_expression] = STATE(113), + [sym_parenthesized_expression] = STATE(113), + [sym_char_literal] = STATE(113), + [sym_concatenated_string] = STATE(113), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(219), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(221), + [sym_false] = ACTIONS(221), + [sym_null] = ACTIONS(221), + [sym_identifier] = ACTIONS(221), + [sym_comment] = ACTIONS(81), + }, + [69] = { + [sym__expression] = STATE(215), + [sym_conditional_expression] = STATE(215), + [sym_assignment_expression] = STATE(215), + [sym_pointer_expression] = STATE(215), + [sym_logical_expression] = STATE(215), + [sym_bitwise_expression] = STATE(215), + [sym_equality_expression] = STATE(215), + [sym_relational_expression] = STATE(215), + [sym_shift_expression] = STATE(215), + [sym_math_expression] = STATE(215), + [sym_cast_expression] = STATE(215), + [sym_sizeof_expression] = STATE(215), + [sym_subscript_expression] = STATE(215), + [sym_call_expression] = STATE(215), + [sym_field_expression] = STATE(215), + [sym_compound_literal_expression] = STATE(215), + [sym_parenthesized_expression] = STATE(215), + [sym_char_literal] = STATE(215), + [sym_concatenated_string] = STATE(215), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(433), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(435), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(437), + [sym_false] = ACTIONS(437), + [sym_null] = ACTIONS(437), + [sym_identifier] = ACTIONS(437), + [sym_comment] = ACTIONS(81), }, [70] = { - [sym__expression] = STATE(83), - [sym_conditional_expression] = STATE(83), - [sym_assignment_expression] = STATE(83), - [sym_pointer_expression] = STATE(83), - [sym_logical_expression] = STATE(83), - [sym_bitwise_expression] = STATE(83), - [sym_equality_expression] = STATE(83), - [sym_relational_expression] = STATE(83), - [sym_shift_expression] = STATE(83), - [sym_math_expression] = STATE(83), - [sym_cast_expression] = STATE(83), - [sym_sizeof_expression] = STATE(83), - [sym_subscript_expression] = STATE(83), - [sym_call_expression] = STATE(83), - [sym_field_expression] = STATE(83), - [sym_compound_literal_expression] = STATE(83), - [sym_parenthesized_expression] = STATE(83), - [sym_char_literal] = STATE(83), - [sym_concatenated_string] = STATE(83), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RPAREN] = ACTIONS(239), + [anon_sym_LPAREN2] = ACTIONS(244), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_comment] = ACTIONS(81), }, [71] = { - [sym__expression] = STATE(127), - [sym_conditional_expression] = STATE(127), - [sym_assignment_expression] = STATE(127), - [sym_pointer_expression] = STATE(127), - [sym_logical_expression] = STATE(127), - [sym_bitwise_expression] = STATE(127), - [sym_equality_expression] = STATE(127), - [sym_relational_expression] = STATE(127), - [sym_shift_expression] = STATE(127), - [sym_math_expression] = STATE(127), - [sym_cast_expression] = STATE(127), - [sym_sizeof_expression] = STATE(127), - [sym_subscript_expression] = STATE(127), - [sym_call_expression] = STATE(127), - [sym_field_expression] = STATE(127), - [sym_compound_literal_expression] = STATE(127), - [sym_parenthesized_expression] = STATE(127), - [sym_char_literal] = STATE(127), - [sym_concatenated_string] = STATE(127), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(247), - [sym_false] = ACTIONS(247), - [sym_null] = ACTIONS(247), - [sym_identifier] = ACTIONS(247), - [sym_comment] = ACTIONS(85), + [sym__abstract_declarator] = STATE(219), + [sym_abstract_pointer_declarator] = STATE(219), + [sym_abstract_function_declarator] = STATE(219), + [sym_abstract_array_declarator] = STATE(219), + [sym_parameter_list] = STATE(220), + [anon_sym_RPAREN] = ACTIONS(439), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(445), + [sym_comment] = ACTIONS(81), }, [72] = { - [sym__expression] = STATE(128), - [sym_conditional_expression] = STATE(128), - [sym_assignment_expression] = STATE(128), - [sym_pointer_expression] = STATE(128), - [sym_logical_expression] = STATE(128), - [sym_bitwise_expression] = STATE(128), - [sym_equality_expression] = STATE(128), - [sym_relational_expression] = STATE(128), - [sym_shift_expression] = STATE(128), - [sym_math_expression] = STATE(128), - [sym_cast_expression] = STATE(128), - [sym_sizeof_expression] = STATE(128), - [sym_subscript_expression] = STATE(128), - [sym_call_expression] = STATE(128), - [sym_field_expression] = STATE(128), - [sym_compound_literal_expression] = STATE(128), - [sym_parenthesized_expression] = STATE(128), - [sym_char_literal] = STATE(128), - [sym_concatenated_string] = STATE(128), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(251), - [sym_false] = ACTIONS(251), - [sym_null] = ACTIONS(251), - [sym_identifier] = ACTIONS(251), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(447), + [anon_sym_RPAREN] = ACTIONS(449), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [73] = { - [sym__expression] = STATE(129), - [sym_conditional_expression] = STATE(129), - [sym_assignment_expression] = STATE(129), - [sym_pointer_expression] = STATE(129), - [sym_logical_expression] = STATE(129), - [sym_bitwise_expression] = STATE(129), - [sym_equality_expression] = STATE(129), - [sym_relational_expression] = STATE(129), - [sym_shift_expression] = STATE(129), - [sym_math_expression] = STATE(129), - [sym_cast_expression] = STATE(129), - [sym_sizeof_expression] = STATE(129), - [sym_subscript_expression] = STATE(129), - [sym_call_expression] = STATE(129), - [sym_field_expression] = STATE(129), - [sym_compound_literal_expression] = STATE(129), - [sym_parenthesized_expression] = STATE(129), - [sym_char_literal] = STATE(129), - [sym_concatenated_string] = STATE(129), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(253), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(255), - [sym_false] = ACTIONS(255), - [sym_null] = ACTIONS(255), - [sym_identifier] = ACTIONS(255), - [sym_comment] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(449), + [sym_comment] = ACTIONS(81), }, [74] = { - [sym__expression] = STATE(236), - [sym_conditional_expression] = STATE(236), - [sym_assignment_expression] = STATE(236), - [sym_pointer_expression] = STATE(236), - [sym_logical_expression] = STATE(236), - [sym_bitwise_expression] = STATE(236), - [sym_equality_expression] = STATE(236), - [sym_relational_expression] = STATE(236), - [sym_shift_expression] = STATE(236), - [sym_math_expression] = STATE(236), - [sym_cast_expression] = STATE(236), - [sym_sizeof_expression] = STATE(236), - [sym_subscript_expression] = STATE(236), - [sym_call_expression] = STATE(236), - [sym_field_expression] = STATE(236), - [sym_compound_literal_expression] = STATE(236), - [sym_parenthesized_expression] = STATE(236), - [sym_char_literal] = STATE(236), - [sym_concatenated_string] = STATE(236), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(477), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(479), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(481), - [sym_false] = ACTIONS(481), - [sym_null] = ACTIONS(481), - [sym_identifier] = ACTIONS(481), - [sym_comment] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(479), + [sym_comment] = ACTIONS(81), }, [75] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(273), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(236), + [aux_sym_concatenated_string_repeat1] = STATE(236), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RPAREN] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_comment] = ACTIONS(81), }, [76] = { - [sym__abstract_declarator] = STATE(240), - [sym_abstract_pointer_declarator] = STATE(240), - [sym_abstract_function_declarator] = STATE(240), - [sym_abstract_array_declarator] = STATE(240), - [sym_parameter_list] = STATE(241), - [anon_sym_RPAREN] = ACTIONS(483), - [anon_sym_LPAREN2] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(487), - [anon_sym_LBRACK] = ACTIONS(489), - [sym_comment] = ACTIONS(85), + [sym_type_qualifier] = STATE(195), + [sym__type_specifier] = STATE(237), + [sym_sized_type_specifier] = STATE(237), + [sym_enum_specifier] = STATE(237), + [sym_struct_specifier] = STATE(237), + [sym_union_specifier] = STATE(237), + [sym_macro_type_specifier] = STATE(237), + [aux_sym_type_definition_repeat1] = STATE(195), + [aux_sym_sized_type_specifier_repeat1] = STATE(77), + [anon_sym_const] = ACTIONS(31), + [anon_sym_restrict] = ACTIONS(31), + [anon_sym_volatile] = ACTIONS(31), + [anon_sym__Atomic] = ACTIONS(31), + [anon_sym_unsigned] = ACTIONS(129), + [anon_sym_long] = ACTIONS(129), + [anon_sym_short] = ACTIONS(129), + [sym_primitive_type] = ACTIONS(481), + [anon_sym_enum] = ACTIONS(37), + [anon_sym_struct] = ACTIONS(39), + [anon_sym_union] = ACTIONS(41), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, [77] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(491), - [anon_sym_RPAREN] = ACTIONS(493), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [aux_sym_sized_type_specifier_repeat1] = STATE(238), + [anon_sym_RPAREN] = ACTIONS(313), + [anon_sym_LPAREN2] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_unsigned] = ACTIONS(483), + [anon_sym_long] = ACTIONS(483), + [anon_sym_short] = ACTIONS(483), + [sym_primitive_type] = ACTIONS(319), + [sym_identifier] = ACTIONS(485), + [sym_comment] = ACTIONS(81), }, [78] = { - [anon_sym_RPAREN] = ACTIONS(493), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(487), + [anon_sym_RPAREN] = ACTIONS(487), + [anon_sym_SEMI] = ACTIONS(487), + [anon_sym_RBRACE] = ACTIONS(487), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(487), + [anon_sym_EQ] = ACTIONS(489), + [anon_sym_COLON] = ACTIONS(487), + [anon_sym_QMARK] = ACTIONS(487), + [anon_sym_STAR_EQ] = ACTIONS(487), + [anon_sym_SLASH_EQ] = ACTIONS(487), + [anon_sym_PERCENT_EQ] = ACTIONS(487), + [anon_sym_PLUS_EQ] = ACTIONS(487), + [anon_sym_DASH_EQ] = ACTIONS(487), + [anon_sym_LT_LT_EQ] = ACTIONS(487), + [anon_sym_GT_GT_EQ] = ACTIONS(487), + [anon_sym_AMP_EQ] = ACTIONS(487), + [anon_sym_CARET_EQ] = ACTIONS(487), + [anon_sym_PIPE_EQ] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(489), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(489), + [anon_sym_CARET] = ACTIONS(489), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(489), + [anon_sym_GT] = ACTIONS(489), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_LT_LT] = ACTIONS(489), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_SLASH] = ACTIONS(489), + [anon_sym_PERCENT] = ACTIONS(489), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [79] = { - [anon_sym_RPAREN] = ACTIONS(523), - [sym_comment] = ACTIONS(85), + [sym_enumerator] = STATE(242), + [anon_sym_COMMA] = ACTIONS(491), + [anon_sym_RBRACE] = ACTIONS(493), + [sym_identifier] = ACTIONS(495), + [sym_comment] = ACTIONS(81), }, [80] = { - [sym_string_literal] = STATE(257), - [aux_sym_concatenated_string_repeat1] = STATE(257), - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(271), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_comment] = ACTIONS(85), + [sym_enumerator_list] = STATE(243), + [anon_sym_COMMA] = ACTIONS(497), + [anon_sym_RPAREN] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_extern] = ACTIONS(499), + [anon_sym_LBRACE] = ACTIONS(159), + [anon_sym_LPAREN2] = ACTIONS(497), + [anon_sym_STAR] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_static] = ACTIONS(499), + [anon_sym_auto] = ACTIONS(499), + [anon_sym_register] = ACTIONS(499), + [anon_sym_inline] = ACTIONS(499), + [anon_sym_const] = ACTIONS(499), + [anon_sym_restrict] = ACTIONS(499), + [anon_sym_volatile] = ACTIONS(499), + [anon_sym__Atomic] = ACTIONS(499), + [anon_sym_COLON] = ACTIONS(497), + [sym_identifier] = ACTIONS(499), + [sym_comment] = ACTIONS(81), }, [81] = { - [sym_type_qualifier] = STATE(213), - [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_macro_type_specifier] = STATE(258), - [aux_sym_type_definition_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(82), + [anon_sym_COMMA] = ACTIONS(501), + [anon_sym_RPAREN] = ACTIONS(501), + [anon_sym_SEMI] = ACTIONS(501), + [anon_sym_extern] = ACTIONS(503), + [anon_sym_LPAREN2] = ACTIONS(501), + [anon_sym_STAR] = ACTIONS(501), + [anon_sym_LBRACK] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_auto] = ACTIONS(503), + [anon_sym_register] = ACTIONS(503), + [anon_sym_inline] = ACTIONS(503), + [anon_sym_const] = ACTIONS(503), + [anon_sym_restrict] = ACTIONS(503), + [anon_sym_volatile] = ACTIONS(503), + [anon_sym__Atomic] = ACTIONS(503), + [anon_sym_COLON] = ACTIONS(501), + [sym_identifier] = ACTIONS(503), + [sym_comment] = ACTIONS(81), + }, + [82] = { + [sym_preproc_if_in_field_declaration_list] = STATE(249), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(249), + [sym__declaration_specifiers] = STATE(247), + [sym_storage_class_specifier] = STATE(250), + [sym_type_qualifier] = STATE(250), + [sym__type_specifier] = STATE(248), + [sym_sized_type_specifier] = STATE(248), + [sym_enum_specifier] = STATE(248), + [sym_struct_specifier] = STATE(248), + [sym_union_specifier] = STATE(248), + [sym__field_declaration_list_item] = STATE(249), + [sym_field_declaration] = STATE(249), + [sym_macro_type_specifier] = STATE(248), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(249), + [aux_sym__declaration_specifiers_repeat1] = STATE(250), + [aux_sym_sized_type_specifier_repeat1] = STATE(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(29), + [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_static] = ACTIONS(29), + [anon_sym_auto] = ACTIONS(29), + [anon_sym_register] = ACTIONS(29), + [anon_sym_inline] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [sym_primitive_type] = ACTIONS(525), + [anon_sym_unsigned] = ACTIONS(511), + [anon_sym_long] = ACTIONS(511), + [anon_sym_short] = ACTIONS(511), + [sym_primitive_type] = ACTIONS(513), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), - }, - [82] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(259), - [anon_sym_RPAREN] = ACTIONS(347), - [anon_sym_LPAREN2] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_unsigned] = ACTIONS(527), - [anon_sym_long] = ACTIONS(527), - [anon_sym_short] = ACTIONS(527), - [sym_primitive_type] = ACTIONS(353), - [sym_identifier] = ACTIONS(529), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, [83] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(531), - [anon_sym_RPAREN] = ACTIONS(531), - [anon_sym_SEMI] = ACTIONS(531), - [anon_sym_RBRACE] = ACTIONS(531), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(533), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(531), - [anon_sym_EQ] = ACTIONS(533), - [anon_sym_COLON] = ACTIONS(531), - [anon_sym_QMARK] = ACTIONS(531), - [anon_sym_STAR_EQ] = ACTIONS(531), - [anon_sym_SLASH_EQ] = ACTIONS(531), - [anon_sym_PERCENT_EQ] = ACTIONS(531), - [anon_sym_PLUS_EQ] = ACTIONS(531), - [anon_sym_DASH_EQ] = ACTIONS(531), - [anon_sym_LT_LT_EQ] = ACTIONS(531), - [anon_sym_GT_GT_EQ] = ACTIONS(531), - [anon_sym_AMP_EQ] = ACTIONS(531), - [anon_sym_CARET_EQ] = ACTIONS(531), - [anon_sym_PIPE_EQ] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(533), - [anon_sym_PIPE_PIPE] = ACTIONS(531), - [anon_sym_AMP_AMP] = ACTIONS(531), - [anon_sym_PIPE] = ACTIONS(533), - [anon_sym_CARET] = ACTIONS(533), - [anon_sym_EQ_EQ] = ACTIONS(531), - [anon_sym_BANG_EQ] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(533), - [anon_sym_GT] = ACTIONS(533), - [anon_sym_LT_EQ] = ACTIONS(531), - [anon_sym_GT_EQ] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(533), - [anon_sym_GT_GT] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(533), - [anon_sym_DASH] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(533), - [anon_sym_PERCENT] = ACTIONS(533), - [anon_sym_DASH_DASH] = ACTIONS(531), - [anon_sym_PLUS_PLUS] = ACTIONS(531), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [sym_field_declaration_list] = STATE(252), + [anon_sym_COMMA] = ACTIONS(515), + [anon_sym_RPAREN] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_extern] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(163), + [anon_sym_LPAREN2] = ACTIONS(515), + [anon_sym_STAR] = ACTIONS(515), + [anon_sym_LBRACK] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_auto] = ACTIONS(517), + [anon_sym_register] = ACTIONS(517), + [anon_sym_inline] = ACTIONS(517), + [anon_sym_const] = ACTIONS(517), + [anon_sym_restrict] = ACTIONS(517), + [anon_sym_volatile] = ACTIONS(517), + [anon_sym__Atomic] = ACTIONS(517), + [anon_sym_COLON] = ACTIONS(515), + [sym_identifier] = ACTIONS(517), + [sym_comment] = ACTIONS(81), }, [84] = { - [sym_enumerator] = STATE(263), - [anon_sym_COMMA] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(537), - [sym_identifier] = ACTIONS(539), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(519), + [anon_sym_RPAREN] = ACTIONS(519), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_extern] = ACTIONS(521), + [anon_sym_LPAREN2] = ACTIONS(519), + [anon_sym_STAR] = ACTIONS(519), + [anon_sym_LBRACK] = ACTIONS(519), + [anon_sym_static] = ACTIONS(521), + [anon_sym_auto] = ACTIONS(521), + [anon_sym_register] = ACTIONS(521), + [anon_sym_inline] = ACTIONS(521), + [anon_sym_const] = ACTIONS(521), + [anon_sym_restrict] = ACTIONS(521), + [anon_sym_volatile] = ACTIONS(521), + [anon_sym__Atomic] = ACTIONS(521), + [anon_sym_COLON] = ACTIONS(519), + [sym_identifier] = ACTIONS(521), + [sym_comment] = ACTIONS(81), }, [85] = { - [sym_enumerator_list] = STATE(264), - [anon_sym_COMMA] = ACTIONS(541), - [anon_sym_RPAREN] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_extern] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(169), - [anon_sym_LPAREN2] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(541), - [anon_sym_static] = ACTIONS(543), - [anon_sym_auto] = ACTIONS(543), - [anon_sym_register] = ACTIONS(543), - [anon_sym_inline] = ACTIONS(543), - [anon_sym_const] = ACTIONS(543), - [anon_sym_restrict] = ACTIONS(543), - [anon_sym_volatile] = ACTIONS(543), - [anon_sym__Atomic] = ACTIONS(543), - [anon_sym_COLON] = ACTIONS(541), - [sym_identifier] = ACTIONS(543), - [sym_comment] = ACTIONS(85), + [sym_field_declaration_list] = STATE(253), + [anon_sym_COMMA] = ACTIONS(523), + [anon_sym_RPAREN] = ACTIONS(523), + [anon_sym_SEMI] = ACTIONS(523), + [anon_sym_extern] = ACTIONS(525), + [anon_sym_LBRACE] = ACTIONS(163), + [anon_sym_LPAREN2] = ACTIONS(523), + [anon_sym_STAR] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(523), + [anon_sym_static] = ACTIONS(525), + [anon_sym_auto] = ACTIONS(525), + [anon_sym_register] = ACTIONS(525), + [anon_sym_inline] = ACTIONS(525), + [anon_sym_const] = ACTIONS(525), + [anon_sym_restrict] = ACTIONS(525), + [anon_sym_volatile] = ACTIONS(525), + [anon_sym__Atomic] = ACTIONS(525), + [anon_sym_COLON] = ACTIONS(523), + [sym_identifier] = ACTIONS(525), + [sym_comment] = ACTIONS(81), }, [86] = { - [anon_sym_COMMA] = ACTIONS(545), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_extern] = ACTIONS(547), - [anon_sym_LPAREN2] = ACTIONS(545), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(545), - [anon_sym_static] = ACTIONS(547), - [anon_sym_auto] = ACTIONS(547), - [anon_sym_register] = ACTIONS(547), - [anon_sym_inline] = ACTIONS(547), - [anon_sym_const] = ACTIONS(547), - [anon_sym_restrict] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym__Atomic] = ACTIONS(547), - [anon_sym_COLON] = ACTIONS(545), - [sym_identifier] = ACTIONS(547), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(527), + [anon_sym_extern] = ACTIONS(529), + [anon_sym_LPAREN2] = ACTIONS(527), + [anon_sym_STAR] = ACTIONS(527), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_static] = ACTIONS(529), + [anon_sym_auto] = ACTIONS(529), + [anon_sym_register] = ACTIONS(529), + [anon_sym_inline] = ACTIONS(529), + [anon_sym_const] = ACTIONS(529), + [anon_sym_restrict] = ACTIONS(529), + [anon_sym_volatile] = ACTIONS(529), + [anon_sym__Atomic] = ACTIONS(529), + [anon_sym_COLON] = ACTIONS(527), + [sym_identifier] = ACTIONS(529), + [sym_comment] = ACTIONS(81), }, [87] = { - [sym_preproc_if_in_field_declaration_list] = STATE(270), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(270), - [sym__declaration_specifiers] = STATE(268), - [sym_storage_class_specifier] = STATE(271), - [sym_type_qualifier] = STATE(271), - [sym__type_specifier] = STATE(269), - [sym_sized_type_specifier] = STATE(269), - [sym_enum_specifier] = STATE(269), - [sym_struct_specifier] = STATE(269), - [sym_union_specifier] = STATE(269), - [sym__field_declaration_list_item] = STATE(270), - [sym_field_declaration] = STATE(270), - [sym_macro_type_specifier] = STATE(269), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(270), - [aux_sym__declaration_specifiers_repeat1] = STATE(271), - [aux_sym_sized_type_specifier_repeat1] = STATE(272), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(551), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(553), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(557), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym__expression] = STATE(254), + [sym_comma_expression] = STATE(255), + [sym_conditional_expression] = STATE(254), + [sym_assignment_expression] = STATE(254), + [sym_pointer_expression] = STATE(254), + [sym_logical_expression] = STATE(254), + [sym_bitwise_expression] = STATE(254), + [sym_equality_expression] = STATE(254), + [sym_relational_expression] = STATE(254), + [sym_shift_expression] = STATE(254), + [sym_math_expression] = STATE(254), + [sym_cast_expression] = STATE(254), + [sym_sizeof_expression] = STATE(254), + [sym_subscript_expression] = STATE(254), + [sym_call_expression] = STATE(254), + [sym_field_expression] = STATE(254), + [sym_compound_literal_expression] = STATE(254), + [sym_parenthesized_expression] = STATE(254), + [sym_char_literal] = STATE(254), + [sym_concatenated_string] = STATE(254), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(531), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(533), + [sym_false] = ACTIONS(533), + [sym_null] = ACTIONS(533), + [sym_identifier] = ACTIONS(533), + [sym_comment] = ACTIONS(81), }, [88] = { - [sym_field_declaration_list] = STATE(273), - [anon_sym_COMMA] = ACTIONS(559), - [anon_sym_RPAREN] = ACTIONS(559), - [anon_sym_SEMI] = ACTIONS(559), - [anon_sym_extern] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_LPAREN2] = ACTIONS(559), - [anon_sym_STAR] = ACTIONS(559), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_static] = ACTIONS(561), - [anon_sym_auto] = ACTIONS(561), - [anon_sym_register] = ACTIONS(561), - [anon_sym_inline] = ACTIONS(561), - [anon_sym_const] = ACTIONS(561), - [anon_sym_restrict] = ACTIONS(561), - [anon_sym_volatile] = ACTIONS(561), - [anon_sym__Atomic] = ACTIONS(561), - [anon_sym_COLON] = ACTIONS(559), - [sym_identifier] = ACTIONS(561), - [sym_comment] = ACTIONS(85), + [sym_compound_statement] = STATE(260), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(535), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(537), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(539), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(541), + [sym_comment] = ACTIONS(81), }, [89] = { - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_extern] = ACTIONS(565), - [anon_sym_LPAREN2] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_static] = ACTIONS(565), - [anon_sym_auto] = ACTIONS(565), - [anon_sym_register] = ACTIONS(565), - [anon_sym_inline] = ACTIONS(565), - [anon_sym_const] = ACTIONS(565), - [anon_sym_restrict] = ACTIONS(565), - [anon_sym_volatile] = ACTIONS(565), - [anon_sym__Atomic] = ACTIONS(565), - [anon_sym_COLON] = ACTIONS(563), - [sym_identifier] = ACTIONS(565), - [sym_comment] = ACTIONS(85), + [sym__expression] = STATE(72), + [sym_comma_expression] = STATE(73), + [sym_conditional_expression] = STATE(72), + [sym_assignment_expression] = STATE(72), + [sym_pointer_expression] = STATE(72), + [sym_logical_expression] = STATE(72), + [sym_bitwise_expression] = STATE(72), + [sym_equality_expression] = STATE(72), + [sym_relational_expression] = STATE(72), + [sym_shift_expression] = STATE(72), + [sym_math_expression] = STATE(72), + [sym_cast_expression] = STATE(72), + [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(72), + [sym_call_expression] = STATE(72), + [sym_field_expression] = STATE(72), + [sym_compound_literal_expression] = STATE(72), + [sym_parenthesized_expression] = STATE(72), + [sym_char_literal] = STATE(72), + [sym_concatenated_string] = STATE(72), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_identifier] = ACTIONS(145), + [sym_comment] = ACTIONS(81), }, [90] = { - [sym_field_declaration_list] = STATE(274), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RPAREN] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_extern] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(173), - [anon_sym_LPAREN2] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(567), - [anon_sym_static] = ACTIONS(569), - [anon_sym_auto] = ACTIONS(569), - [anon_sym_register] = ACTIONS(569), - [anon_sym_inline] = ACTIONS(569), - [anon_sym_const] = ACTIONS(569), - [anon_sym_restrict] = ACTIONS(569), - [anon_sym_volatile] = ACTIONS(569), - [anon_sym__Atomic] = ACTIONS(569), - [anon_sym_COLON] = ACTIONS(567), - [sym_identifier] = ACTIONS(569), - [sym_comment] = ACTIONS(85), + [sym_switch_body] = STATE(262), + [anon_sym_LBRACE] = ACTIONS(543), + [sym_comment] = ACTIONS(81), }, [91] = { - [anon_sym_COMMA] = ACTIONS(571), - [anon_sym_RPAREN] = ACTIONS(571), - [anon_sym_SEMI] = ACTIONS(571), - [anon_sym_extern] = ACTIONS(573), - [anon_sym_LPAREN2] = ACTIONS(571), - [anon_sym_STAR] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_static] = ACTIONS(573), - [anon_sym_auto] = ACTIONS(573), - [anon_sym_register] = ACTIONS(573), - [anon_sym_inline] = ACTIONS(573), - [anon_sym_const] = ACTIONS(573), - [anon_sym_restrict] = ACTIONS(573), - [anon_sym_volatile] = ACTIONS(573), - [anon_sym__Atomic] = ACTIONS(573), - [anon_sym_COLON] = ACTIONS(571), - [sym_identifier] = ACTIONS(573), - [sym_comment] = ACTIONS(85), - }, - [92] = { - [sym__expression] = STATE(275), - [sym_comma_expression] = STATE(276), - [sym_conditional_expression] = STATE(275), - [sym_assignment_expression] = STATE(275), - [sym_pointer_expression] = STATE(275), - [sym_logical_expression] = STATE(275), - [sym_bitwise_expression] = STATE(275), - [sym_equality_expression] = STATE(275), - [sym_relational_expression] = STATE(275), - [sym_shift_expression] = STATE(275), - [sym_math_expression] = STATE(275), - [sym_cast_expression] = STATE(275), - [sym_sizeof_expression] = STATE(275), - [sym_subscript_expression] = STATE(275), - [sym_call_expression] = STATE(275), - [sym_field_expression] = STATE(275), - [sym_compound_literal_expression] = STATE(275), - [sym_parenthesized_expression] = STATE(275), - [sym_char_literal] = STATE(275), - [sym_concatenated_string] = STATE(275), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(575), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(577), - [sym_false] = ACTIONS(577), - [sym_null] = ACTIONS(577), - [sym_identifier] = ACTIONS(577), - [sym_comment] = ACTIONS(85), - }, - [93] = { - [sym_compound_statement] = STATE(284), - [sym_labeled_statement] = STATE(284), - [sym_expression_statement] = STATE(284), - [sym_if_statement] = STATE(284), - [sym_switch_statement] = STATE(284), - [sym_case_statement] = STATE(284), - [sym_while_statement] = STATE(284), - [sym_do_statement] = STATE(284), - [sym_for_statement] = STATE(284), - [sym_return_statement] = STATE(284), - [sym_break_statement] = STATE(284), - [sym_continue_statement] = STATE(284), - [sym_goto_statement] = STATE(284), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(264), + [sym_labeled_statement] = STATE(264), + [sym_expression_statement] = STATE(264), + [sym_if_statement] = STATE(264), + [sym_switch_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_do_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_return_statement] = STATE(264), + [sym_break_statement] = STATE(264), + [sym_continue_statement] = STATE(264), + [sym_goto_statement] = STATE(264), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(589), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(43), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(81), + }, + [92] = { + [sym_parenthesized_expression] = STATE(265), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), + }, + [93] = { + [sym_parenthesized_expression] = STATE(266), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, [94] = { - [sym_compound_statement] = STATE(286), - [sym_labeled_statement] = STATE(286), - [sym_expression_statement] = STATE(286), - [sym_if_statement] = STATE(286), - [sym_switch_statement] = STATE(286), - [sym_case_statement] = STATE(286), - [sym_while_statement] = STATE(286), - [sym_do_statement] = STATE(286), - [sym_for_statement] = STATE(286), - [sym_return_statement] = STATE(286), - [sym_break_statement] = STATE(286), - [sym_continue_statement] = STATE(286), - [sym_goto_statement] = STATE(286), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [sym_compound_statement] = STATE(267), + [sym_labeled_statement] = STATE(267), + [sym_expression_statement] = STATE(267), + [sym_if_statement] = STATE(267), + [sym_switch_statement] = STATE(267), + [sym_while_statement] = STATE(267), + [sym_do_statement] = STATE(267), + [sym_for_statement] = STATE(267), + [sym_return_statement] = STATE(267), + [sym_break_statement] = STATE(267), + [sym_continue_statement] = STATE(267), + [sym_goto_statement] = STATE(267), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(43), + [anon_sym_if] = ACTIONS(173), [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_while] = ACTIONS(51), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(181), + [sym_comment] = ACTIONS(81), }, [95] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(76), - [sym_sized_type_specifier] = STATE(76), - [sym_enum_specifier] = STATE(76), - [sym_struct_specifier] = STATE(76), - [sym_union_specifier] = STATE(76), - [sym__expression] = STATE(77), - [sym_comma_expression] = STATE(78), - [sym_conditional_expression] = STATE(77), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_type_descriptor] = STATE(287), - [sym_sizeof_expression] = STATE(77), - [sym_subscript_expression] = STATE(77), - [sym_call_expression] = STATE(77), - [sym_field_expression] = STATE(77), - [sym_compound_literal_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(80), - [sym_macro_type_specifier] = STATE(76), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(82), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [sym_primitive_type] = ACTIONS(141), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(155), - [sym_false] = ACTIONS(155), - [sym_null] = ACTIONS(155), - [sym_identifier] = ACTIONS(157), - [sym_comment] = ACTIONS(85), + [anon_sym_LPAREN2] = ACTIONS(547), + [sym_comment] = ACTIONS(81), }, [96] = { - [sym__expression] = STATE(83), - [sym_conditional_expression] = STATE(83), - [sym_assignment_expression] = STATE(83), - [sym_pointer_expression] = STATE(83), - [sym_logical_expression] = STATE(83), - [sym_bitwise_expression] = STATE(83), - [sym_equality_expression] = STATE(83), - [sym_relational_expression] = STATE(83), - [sym_shift_expression] = STATE(83), - [sym_math_expression] = STATE(83), - [sym_cast_expression] = STATE(83), - [sym_sizeof_expression] = STATE(83), - [sym_subscript_expression] = STATE(83), - [sym_call_expression] = STATE(83), - [sym_field_expression] = STATE(83), - [sym_compound_literal_expression] = STATE(83), - [sym_parenthesized_expression] = STATE(83), - [sym_char_literal] = STATE(83), - [sym_concatenated_string] = STATE(83), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_comment] = ACTIONS(81), }, [97] = { - [sym__expression] = STATE(127), - [sym_conditional_expression] = STATE(127), - [sym_assignment_expression] = STATE(127), - [sym_pointer_expression] = STATE(127), - [sym_logical_expression] = STATE(127), - [sym_bitwise_expression] = STATE(127), - [sym_equality_expression] = STATE(127), - [sym_relational_expression] = STATE(127), - [sym_shift_expression] = STATE(127), - [sym_math_expression] = STATE(127), - [sym_cast_expression] = STATE(127), - [sym_sizeof_expression] = STATE(127), - [sym_subscript_expression] = STATE(127), - [sym_call_expression] = STATE(127), - [sym_field_expression] = STATE(127), - [sym_compound_literal_expression] = STATE(127), - [sym_parenthesized_expression] = STATE(127), - [sym_char_literal] = STATE(127), - [sym_concatenated_string] = STATE(127), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(247), - [sym_false] = ACTIONS(247), - [sym_null] = ACTIONS(247), - [sym_identifier] = ACTIONS(247), - [sym_comment] = ACTIONS(85), + [anon_sym_while] = ACTIONS(551), + [sym_comment] = ACTIONS(81), }, [98] = { - [sym__expression] = STATE(128), - [sym_conditional_expression] = STATE(128), - [sym_assignment_expression] = STATE(128), - [sym_pointer_expression] = STATE(128), - [sym_logical_expression] = STATE(128), - [sym_bitwise_expression] = STATE(128), - [sym_equality_expression] = STATE(128), - [sym_relational_expression] = STATE(128), - [sym_shift_expression] = STATE(128), - [sym_math_expression] = STATE(128), - [sym_cast_expression] = STATE(128), - [sym_sizeof_expression] = STATE(128), - [sym_subscript_expression] = STATE(128), - [sym_call_expression] = STATE(128), - [sym_field_expression] = STATE(128), - [sym_compound_literal_expression] = STATE(128), - [sym_parenthesized_expression] = STATE(128), - [sym_char_literal] = STATE(128), - [sym_concatenated_string] = STATE(128), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(251), - [sym_false] = ACTIONS(251), - [sym_null] = ACTIONS(251), - [sym_identifier] = ACTIONS(251), - [sym_comment] = ACTIONS(85), - }, - [99] = { - [sym__expression] = STATE(129), - [sym_conditional_expression] = STATE(129), - [sym_assignment_expression] = STATE(129), - [sym_pointer_expression] = STATE(129), - [sym_logical_expression] = STATE(129), - [sym_bitwise_expression] = STATE(129), - [sym_equality_expression] = STATE(129), - [sym_relational_expression] = STATE(129), - [sym_shift_expression] = STATE(129), - [sym_math_expression] = STATE(129), - [sym_cast_expression] = STATE(129), - [sym_sizeof_expression] = STATE(129), - [sym_subscript_expression] = STATE(129), - [sym_call_expression] = STATE(129), - [sym_field_expression] = STATE(129), - [sym_compound_literal_expression] = STATE(129), - [sym_parenthesized_expression] = STATE(129), - [sym_char_literal] = STATE(129), - [sym_concatenated_string] = STATE(129), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(253), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(255), - [sym_false] = ACTIONS(255), - [sym_null] = ACTIONS(255), - [sym_identifier] = ACTIONS(255), - [sym_comment] = ACTIONS(85), - }, - [100] = { - [sym__expression] = STATE(289), - [sym_conditional_expression] = STATE(289), - [sym_assignment_expression] = STATE(289), - [sym_pointer_expression] = STATE(289), - [sym_logical_expression] = STATE(289), - [sym_bitwise_expression] = STATE(289), - [sym_equality_expression] = STATE(289), - [sym_relational_expression] = STATE(289), - [sym_shift_expression] = STATE(289), - [sym_math_expression] = STATE(289), - [sym_cast_expression] = STATE(289), - [sym_sizeof_expression] = STATE(289), - [sym_subscript_expression] = STATE(289), - [sym_call_expression] = STATE(289), - [sym_field_expression] = STATE(289), - [sym_compound_literal_expression] = STATE(289), - [sym_parenthesized_expression] = STATE(289), - [sym_char_literal] = STATE(289), - [sym_concatenated_string] = STATE(289), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(599), - [sym_false] = ACTIONS(599), - [sym_null] = ACTIONS(599), - [sym_identifier] = ACTIONS(599), - [sym_comment] = ACTIONS(85), - }, - [101] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(605), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [102] = { - [sym_string_literal] = STATE(303), - [aux_sym_concatenated_string_repeat1] = STATE(303), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(271), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_comment] = ACTIONS(85), - }, - [103] = { - [sym_declaration] = STATE(305), - [sym_type_definition] = STATE(305), - [sym__declaration_specifiers] = STATE(306), - [sym_compound_statement] = STATE(305), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_labeled_statement] = STATE(305), - [sym_expression_statement] = STATE(305), - [sym_if_statement] = STATE(305), - [sym_switch_statement] = STATE(305), - [sym_case_statement] = STATE(305), - [sym_while_statement] = STATE(305), - [sym_do_statement] = STATE(305), - [sym_for_statement] = STATE(305), - [sym_return_statement] = STATE(305), - [sym_break_statement] = STATE(305), - [sym_continue_statement] = STATE(305), - [sym_goto_statement] = STATE(305), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), + [sym_declaration] = STATE(271), + [sym__declaration_specifiers] = STATE(273), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym__expression] = STATE(274), + [sym_conditional_expression] = STATE(274), + [sym_assignment_expression] = STATE(274), + [sym_pointer_expression] = STATE(274), + [sym_logical_expression] = STATE(274), + [sym_bitwise_expression] = STATE(274), + [sym_equality_expression] = STATE(274), + [sym_relational_expression] = STATE(274), + [sym_shift_expression] = STATE(274), + [sym_math_expression] = STATE(274), + [sym_cast_expression] = STATE(274), + [sym_sizeof_expression] = STATE(274), + [sym_subscript_expression] = STATE(274), + [sym_call_expression] = STATE(274), + [sym_field_expression] = STATE(274), + [sym_compound_literal_expression] = STATE(274), + [sym_parenthesized_expression] = STATE(274), + [sym_char_literal] = STATE(274), + [sym_concatenated_string] = STATE(274), + [sym_string_literal] = STATE(107), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(553), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -8973,1399 +8730,1071 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_while] = ACTIONS(51), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(631), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(555), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(557), + [sym_false] = ACTIONS(557), + [sym_null] = ACTIONS(557), + [sym_identifier] = ACTIONS(559), + [sym_comment] = ACTIONS(81), + }, + [99] = { + [ts_builtin_sym_end] = ACTIONS(561), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(563), + [sym_preproc_directive] = ACTIONS(563), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_typedef] = ACTIONS(563), + [anon_sym_extern] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_LPAREN2] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_static] = ACTIONS(563), + [anon_sym_auto] = ACTIONS(563), + [anon_sym_register] = ACTIONS(563), + [anon_sym_inline] = ACTIONS(563), + [anon_sym_const] = ACTIONS(563), + [anon_sym_restrict] = ACTIONS(563), + [anon_sym_volatile] = ACTIONS(563), + [anon_sym__Atomic] = ACTIONS(563), + [anon_sym_unsigned] = ACTIONS(563), + [anon_sym_long] = ACTIONS(563), + [anon_sym_short] = ACTIONS(563), + [sym_primitive_type] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(563), + [anon_sym_union] = ACTIONS(563), + [anon_sym_if] = ACTIONS(563), + [anon_sym_else] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(563), + [anon_sym_case] = ACTIONS(563), + [anon_sym_default] = ACTIONS(563), + [anon_sym_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(563), + [anon_sym_for] = ACTIONS(563), + [anon_sym_return] = ACTIONS(563), + [anon_sym_break] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(563), + [anon_sym_goto] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(561), + [anon_sym_BANG] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(561), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_sizeof] = ACTIONS(563), + [sym_number_literal] = ACTIONS(561), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(561), + [sym_true] = ACTIONS(563), + [sym_false] = ACTIONS(563), + [sym_null] = ACTIONS(563), + [sym_identifier] = ACTIONS(563), + [sym_comment] = ACTIONS(81), + }, + [100] = { + [sym_type_qualifier] = STATE(76), + [sym__type_specifier] = STATE(71), + [sym_sized_type_specifier] = STATE(71), + [sym_enum_specifier] = STATE(71), + [sym_struct_specifier] = STATE(71), + [sym_union_specifier] = STATE(71), + [sym__expression] = STATE(72), + [sym_comma_expression] = STATE(73), + [sym_conditional_expression] = STATE(72), + [sym_assignment_expression] = STATE(72), + [sym_pointer_expression] = STATE(72), + [sym_logical_expression] = STATE(72), + [sym_bitwise_expression] = STATE(72), + [sym_equality_expression] = STATE(72), + [sym_relational_expression] = STATE(72), + [sym_shift_expression] = STATE(72), + [sym_math_expression] = STATE(72), + [sym_cast_expression] = STATE(72), + [sym_type_descriptor] = STATE(275), + [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(72), + [sym_call_expression] = STATE(72), + [sym_field_expression] = STATE(72), + [sym_compound_literal_expression] = STATE(72), + [sym_parenthesized_expression] = STATE(72), + [sym_char_literal] = STATE(72), + [sym_concatenated_string] = STATE(72), + [sym_string_literal] = STATE(75), + [sym_macro_type_specifier] = STATE(71), + [aux_sym_type_definition_repeat1] = STATE(76), + [aux_sym_sized_type_specifier_repeat1] = STATE(77), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_const] = ACTIONS(31), + [anon_sym_restrict] = ACTIONS(31), + [anon_sym_volatile] = ACTIONS(31), + [anon_sym__Atomic] = ACTIONS(31), + [anon_sym_unsigned] = ACTIONS(129), + [anon_sym_long] = ACTIONS(129), + [anon_sym_short] = ACTIONS(129), + [sym_primitive_type] = ACTIONS(131), + [anon_sym_enum] = ACTIONS(37), + [anon_sym_struct] = ACTIONS(39), + [anon_sym_union] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_identifier] = ACTIONS(147), + [sym_comment] = ACTIONS(81), + }, + [101] = { + [sym__expression] = STATE(78), + [sym_conditional_expression] = STATE(78), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(78), + [sym_call_expression] = STATE(78), + [sym_field_expression] = STATE(78), + [sym_compound_literal_expression] = STATE(78), + [sym_parenthesized_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_concatenated_string] = STATE(78), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(151), + [sym_false] = ACTIONS(151), + [sym_null] = ACTIONS(151), + [sym_identifier] = ACTIONS(151), + [sym_comment] = ACTIONS(81), + }, + [102] = { + [sym__expression] = STATE(111), + [sym_conditional_expression] = STATE(111), + [sym_assignment_expression] = STATE(111), + [sym_pointer_expression] = STATE(111), + [sym_logical_expression] = STATE(111), + [sym_bitwise_expression] = STATE(111), + [sym_equality_expression] = STATE(111), + [sym_relational_expression] = STATE(111), + [sym_shift_expression] = STATE(111), + [sym_math_expression] = STATE(111), + [sym_cast_expression] = STATE(111), + [sym_sizeof_expression] = STATE(111), + [sym_subscript_expression] = STATE(111), + [sym_call_expression] = STATE(111), + [sym_field_expression] = STATE(111), + [sym_compound_literal_expression] = STATE(111), + [sym_parenthesized_expression] = STATE(111), + [sym_char_literal] = STATE(111), + [sym_concatenated_string] = STATE(111), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [sym_null] = ACTIONS(213), + [sym_identifier] = ACTIONS(213), + [sym_comment] = ACTIONS(81), + }, + [103] = { + [sym__expression] = STATE(112), + [sym_conditional_expression] = STATE(112), + [sym_assignment_expression] = STATE(112), + [sym_pointer_expression] = STATE(112), + [sym_logical_expression] = STATE(112), + [sym_bitwise_expression] = STATE(112), + [sym_equality_expression] = STATE(112), + [sym_relational_expression] = STATE(112), + [sym_shift_expression] = STATE(112), + [sym_math_expression] = STATE(112), + [sym_cast_expression] = STATE(112), + [sym_sizeof_expression] = STATE(112), + [sym_subscript_expression] = STATE(112), + [sym_call_expression] = STATE(112), + [sym_field_expression] = STATE(112), + [sym_compound_literal_expression] = STATE(112), + [sym_parenthesized_expression] = STATE(112), + [sym_char_literal] = STATE(112), + [sym_concatenated_string] = STATE(112), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(215), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [sym_null] = ACTIONS(217), + [sym_identifier] = ACTIONS(217), + [sym_comment] = ACTIONS(81), }, [104] = { - [sym_compound_statement] = STATE(307), - [sym_labeled_statement] = STATE(307), - [sym_expression_statement] = STATE(307), - [sym_if_statement] = STATE(307), - [sym_switch_statement] = STATE(307), - [sym_case_statement] = STATE(307), - [sym_while_statement] = STATE(307), - [sym_do_statement] = STATE(307), - [sym_for_statement] = STATE(307), - [sym_return_statement] = STATE(307), - [sym_break_statement] = STATE(307), - [sym_continue_statement] = STATE(307), - [sym_goto_statement] = STATE(307), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(43), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_while] = ACTIONS(51), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(85), + [sym__expression] = STATE(113), + [sym_conditional_expression] = STATE(113), + [sym_assignment_expression] = STATE(113), + [sym_pointer_expression] = STATE(113), + [sym_logical_expression] = STATE(113), + [sym_bitwise_expression] = STATE(113), + [sym_equality_expression] = STATE(113), + [sym_relational_expression] = STATE(113), + [sym_shift_expression] = STATE(113), + [sym_math_expression] = STATE(113), + [sym_cast_expression] = STATE(113), + [sym_sizeof_expression] = STATE(113), + [sym_subscript_expression] = STATE(113), + [sym_call_expression] = STATE(113), + [sym_field_expression] = STATE(113), + [sym_compound_literal_expression] = STATE(113), + [sym_parenthesized_expression] = STATE(113), + [sym_char_literal] = STATE(113), + [sym_concatenated_string] = STATE(113), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(219), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(221), + [sym_false] = ACTIONS(221), + [sym_null] = ACTIONS(221), + [sym_identifier] = ACTIONS(221), + [sym_comment] = ACTIONS(81), }, [105] = { - [sym_parenthesized_expression] = STATE(308), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [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_char_literal] = STATE(277), + [sym_concatenated_string] = STATE(277), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(569), + [sym_false] = ACTIONS(569), + [sym_null] = ACTIONS(569), + [sym_identifier] = ACTIONS(569), + [sym_comment] = ACTIONS(81), }, [106] = { - [sym_parenthesized_expression] = STATE(309), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [107] = { - [sym__expression] = STATE(310), - [sym_conditional_expression] = STATE(310), - [sym_assignment_expression] = STATE(310), - [sym_pointer_expression] = STATE(310), - [sym_logical_expression] = STATE(310), - [sym_bitwise_expression] = STATE(310), - [sym_equality_expression] = STATE(310), - [sym_relational_expression] = STATE(310), - [sym_shift_expression] = STATE(310), - [sym_math_expression] = STATE(310), - [sym_cast_expression] = STATE(310), - [sym_sizeof_expression] = STATE(310), - [sym_subscript_expression] = STATE(310), - [sym_call_expression] = STATE(310), - [sym_field_expression] = STATE(310), - [sym_compound_literal_expression] = STATE(310), - [sym_parenthesized_expression] = STATE(310), - [sym_char_literal] = STATE(310), - [sym_concatenated_string] = STATE(310), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(635), - [sym_false] = ACTIONS(635), - [sym_null] = ACTIONS(635), - [sym_identifier] = ACTIONS(635), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(291), + [aux_sym_concatenated_string_repeat1] = STATE(291), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_comment] = ACTIONS(81), }, [108] = { - [anon_sym_COLON] = ACTIONS(637), - [sym_comment] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(601), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(603), + [sym_preproc_directive] = ACTIONS(603), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym_typedef] = ACTIONS(603), + [anon_sym_extern] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_LPAREN2] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(601), + [anon_sym_static] = ACTIONS(603), + [anon_sym_auto] = ACTIONS(603), + [anon_sym_register] = ACTIONS(603), + [anon_sym_inline] = ACTIONS(603), + [anon_sym_const] = ACTIONS(603), + [anon_sym_restrict] = ACTIONS(603), + [anon_sym_volatile] = ACTIONS(603), + [anon_sym__Atomic] = ACTIONS(603), + [anon_sym_unsigned] = ACTIONS(603), + [anon_sym_long] = ACTIONS(603), + [anon_sym_short] = ACTIONS(603), + [sym_primitive_type] = ACTIONS(603), + [anon_sym_enum] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(603), + [anon_sym_union] = ACTIONS(603), + [anon_sym_if] = ACTIONS(603), + [anon_sym_else] = ACTIONS(603), + [anon_sym_switch] = ACTIONS(603), + [anon_sym_case] = ACTIONS(603), + [anon_sym_default] = ACTIONS(603), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(603), + [anon_sym_for] = ACTIONS(603), + [anon_sym_return] = ACTIONS(603), + [anon_sym_break] = ACTIONS(603), + [anon_sym_continue] = ACTIONS(603), + [anon_sym_goto] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(601), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_sizeof] = ACTIONS(603), + [sym_number_literal] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(601), + [sym_true] = ACTIONS(603), + [sym_false] = ACTIONS(603), + [sym_null] = ACTIONS(603), + [sym_identifier] = ACTIONS(603), + [sym_comment] = ACTIONS(81), }, [109] = { - [sym_parenthesized_expression] = STATE(312), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(605), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(607), + [sym_preproc_directive] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_typedef] = ACTIONS(607), + [anon_sym_extern] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_LPAREN2] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_static] = ACTIONS(607), + [anon_sym_auto] = ACTIONS(607), + [anon_sym_register] = ACTIONS(607), + [anon_sym_inline] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_restrict] = ACTIONS(607), + [anon_sym_volatile] = ACTIONS(607), + [anon_sym__Atomic] = ACTIONS(607), + [anon_sym_unsigned] = ACTIONS(607), + [anon_sym_long] = ACTIONS(607), + [anon_sym_short] = ACTIONS(607), + [sym_primitive_type] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_else] = ACTIONS(607), + [anon_sym_switch] = ACTIONS(607), + [anon_sym_case] = ACTIONS(607), + [anon_sym_default] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [anon_sym_do] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_goto] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_sizeof] = ACTIONS(607), + [sym_number_literal] = ACTIONS(605), + [anon_sym_SQUOTE] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_true] = ACTIONS(607), + [sym_false] = ACTIONS(607), + [sym_null] = ACTIONS(607), + [sym_identifier] = ACTIONS(607), + [sym_comment] = ACTIONS(81), }, [110] = { - [sym_compound_statement] = STATE(313), - [sym_labeled_statement] = STATE(313), - [sym_expression_statement] = STATE(313), - [sym_if_statement] = STATE(313), - [sym_switch_statement] = STATE(313), - [sym_case_statement] = STATE(313), - [sym_while_statement] = STATE(313), - [sym_do_statement] = STATE(313), - [sym_for_statement] = STATE(313), - [sym_return_statement] = STATE(313), - [sym_break_statement] = STATE(313), - [sym_continue_statement] = STATE(313), - [sym_goto_statement] = STATE(313), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(201), - [anon_sym_switch] = ACTIONS(203), - [anon_sym_case] = ACTIONS(205), - [anon_sym_default] = ACTIONS(207), - [anon_sym_while] = ACTIONS(209), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(213), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(215), - [sym_comment] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(609), + [sym_comment] = ACTIONS(81), }, [111] = { - [anon_sym_LPAREN2] = ACTIONS(639), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_RPAREN] = ACTIONS(611), + [anon_sym_SEMI] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(611), + [anon_sym_EQ] = ACTIONS(613), + [anon_sym_COLON] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(611), + [anon_sym_STAR_EQ] = ACTIONS(611), + [anon_sym_SLASH_EQ] = ACTIONS(611), + [anon_sym_PERCENT_EQ] = ACTIONS(611), + [anon_sym_PLUS_EQ] = ACTIONS(611), + [anon_sym_DASH_EQ] = ACTIONS(611), + [anon_sym_LT_LT_EQ] = ACTIONS(611), + [anon_sym_GT_GT_EQ] = ACTIONS(611), + [anon_sym_AMP_EQ] = ACTIONS(611), + [anon_sym_CARET_EQ] = ACTIONS(611), + [anon_sym_PIPE_EQ] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [112] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_RPAREN] = ACTIONS(615), + [anon_sym_SEMI] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(615), + [anon_sym_EQ] = ACTIONS(617), + [anon_sym_COLON] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_STAR_EQ] = ACTIONS(615), + [anon_sym_SLASH_EQ] = ACTIONS(615), + [anon_sym_PERCENT_EQ] = ACTIONS(615), + [anon_sym_PLUS_EQ] = ACTIONS(615), + [anon_sym_DASH_EQ] = ACTIONS(615), + [anon_sym_LT_LT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_EQ] = ACTIONS(615), + [anon_sym_AMP_EQ] = ACTIONS(615), + [anon_sym_CARET_EQ] = ACTIONS(615), + [anon_sym_PIPE_EQ] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(617), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(617), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [113] = { - [anon_sym_while] = ACTIONS(643), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RPAREN] = ACTIONS(619), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(619), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_STAR_EQ] = ACTIONS(619), + [anon_sym_SLASH_EQ] = ACTIONS(619), + [anon_sym_PERCENT_EQ] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(619), + [anon_sym_DASH_EQ] = ACTIONS(619), + [anon_sym_LT_LT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_EQ] = ACTIONS(619), + [anon_sym_AMP_EQ] = ACTIONS(619), + [anon_sym_CARET_EQ] = ACTIONS(619), + [anon_sym_PIPE_EQ] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [114] = { - [sym_declaration] = STATE(317), - [sym__declaration_specifiers] = STATE(306), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym__expression] = STATE(319), - [sym_conditional_expression] = STATE(319), - [sym_assignment_expression] = STATE(319), - [sym_pointer_expression] = STATE(319), - [sym_logical_expression] = STATE(319), - [sym_bitwise_expression] = STATE(319), - [sym_equality_expression] = STATE(319), - [sym_relational_expression] = STATE(319), - [sym_shift_expression] = STATE(319), - [sym_math_expression] = STATE(319), - [sym_cast_expression] = STATE(319), - [sym_sizeof_expression] = STATE(319), - [sym_subscript_expression] = STATE(319), - [sym_call_expression] = STATE(319), - [sym_field_expression] = STATE(319), - [sym_compound_literal_expression] = STATE(319), - [sym_parenthesized_expression] = STATE(319), - [sym_char_literal] = STATE(319), - [sym_concatenated_string] = STATE(319), - [sym_string_literal] = STATE(123), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(645), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), + [sym_type_qualifier] = STATE(76), + [sym__type_specifier] = STATE(71), + [sym_sized_type_specifier] = STATE(71), + [sym_enum_specifier] = STATE(71), + [sym_struct_specifier] = STATE(71), + [sym_union_specifier] = STATE(71), + [sym__expression] = STATE(72), + [sym_comma_expression] = STATE(73), + [sym_conditional_expression] = STATE(72), + [sym_assignment_expression] = STATE(72), + [sym_pointer_expression] = STATE(72), + [sym_logical_expression] = STATE(72), + [sym_bitwise_expression] = STATE(72), + [sym_equality_expression] = STATE(72), + [sym_relational_expression] = STATE(72), + [sym_shift_expression] = STATE(72), + [sym_math_expression] = STATE(72), + [sym_cast_expression] = STATE(72), + [sym_type_descriptor] = STATE(293), + [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(72), + [sym_call_expression] = STATE(72), + [sym_field_expression] = STATE(72), + [sym_compound_literal_expression] = STATE(72), + [sym_parenthesized_expression] = STATE(72), + [sym_char_literal] = STATE(72), + [sym_concatenated_string] = STATE(72), + [sym_string_literal] = STATE(75), + [sym_macro_type_specifier] = STATE(71), + [aux_sym_type_definition_repeat1] = STATE(76), + [aux_sym_sized_type_specifier_repeat1] = STATE(77), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(129), + [anon_sym_long] = ACTIONS(129), + [anon_sym_short] = ACTIONS(129), + [sym_primitive_type] = ACTIONS(131), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(647), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(649), - [sym_false] = ACTIONS(649), - [sym_null] = ACTIONS(649), - [sym_identifier] = ACTIONS(651), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_identifier] = ACTIONS(147), + [sym_comment] = ACTIONS(81), }, [115] = { - [ts_builtin_sym_end] = ACTIONS(653), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(655), - [sym_preproc_directive] = ACTIONS(655), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_typedef] = ACTIONS(655), - [anon_sym_extern] = ACTIONS(655), - [anon_sym_LBRACE] = ACTIONS(653), - [anon_sym_RBRACE] = ACTIONS(653), - [anon_sym_LPAREN2] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_auto] = ACTIONS(655), - [anon_sym_register] = ACTIONS(655), - [anon_sym_inline] = ACTIONS(655), - [anon_sym_const] = ACTIONS(655), - [anon_sym_restrict] = ACTIONS(655), - [anon_sym_volatile] = ACTIONS(655), - [anon_sym__Atomic] = ACTIONS(655), - [anon_sym_unsigned] = ACTIONS(655), - [anon_sym_long] = ACTIONS(655), - [anon_sym_short] = ACTIONS(655), - [sym_primitive_type] = ACTIONS(655), - [anon_sym_enum] = ACTIONS(655), - [anon_sym_struct] = ACTIONS(655), - [anon_sym_union] = ACTIONS(655), - [anon_sym_if] = ACTIONS(655), - [anon_sym_else] = ACTIONS(655), - [anon_sym_switch] = ACTIONS(655), - [anon_sym_case] = ACTIONS(655), - [anon_sym_default] = ACTIONS(655), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(655), - [anon_sym_for] = ACTIONS(655), - [anon_sym_return] = ACTIONS(655), - [anon_sym_break] = ACTIONS(655), - [anon_sym_continue] = ACTIONS(655), - [anon_sym_goto] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(653), - [anon_sym_sizeof] = ACTIONS(655), - [sym_number_literal] = ACTIONS(653), - [anon_sym_SQUOTE] = ACTIONS(653), - [anon_sym_DQUOTE] = ACTIONS(653), - [sym_true] = ACTIONS(655), - [sym_false] = ACTIONS(655), - [sym_null] = ACTIONS(655), - [sym_identifier] = ACTIONS(655), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_STAR_EQ] = ACTIONS(623), + [anon_sym_SLASH_EQ] = ACTIONS(623), + [anon_sym_PERCENT_EQ] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(623), + [anon_sym_DASH_EQ] = ACTIONS(623), + [anon_sym_LT_LT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_EQ] = ACTIONS(623), + [anon_sym_AMP_EQ] = ACTIONS(623), + [anon_sym_CARET_EQ] = ACTIONS(623), + [anon_sym_PIPE_EQ] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [116] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(76), - [sym_sized_type_specifier] = STATE(76), - [sym_enum_specifier] = STATE(76), - [sym_struct_specifier] = STATE(76), - [sym_union_specifier] = STATE(76), - [sym__expression] = STATE(77), - [sym_comma_expression] = STATE(78), - [sym_conditional_expression] = STATE(77), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_type_descriptor] = STATE(320), - [sym_sizeof_expression] = STATE(77), - [sym_subscript_expression] = STATE(77), - [sym_call_expression] = STATE(77), - [sym_field_expression] = STATE(77), - [sym_compound_literal_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(80), - [sym_macro_type_specifier] = STATE(76), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(82), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [sym_primitive_type] = ACTIONS(141), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(155), - [sym_false] = ACTIONS(155), - [sym_null] = ACTIONS(155), - [sym_identifier] = ACTIONS(157), - [sym_comment] = ACTIONS(85), + [anon_sym_SQUOTE] = ACTIONS(627), + [sym_comment] = ACTIONS(81), }, [117] = { - [sym__expression] = STATE(83), - [sym_conditional_expression] = STATE(83), - [sym_assignment_expression] = STATE(83), - [sym_pointer_expression] = STATE(83), - [sym_logical_expression] = STATE(83), - [sym_bitwise_expression] = STATE(83), - [sym_equality_expression] = STATE(83), - [sym_relational_expression] = STATE(83), - [sym_shift_expression] = STATE(83), - [sym_math_expression] = STATE(83), - [sym_cast_expression] = STATE(83), - [sym_sizeof_expression] = STATE(83), - [sym_subscript_expression] = STATE(83), - [sym_call_expression] = STATE(83), - [sym_field_expression] = STATE(83), - [sym_compound_literal_expression] = STATE(83), - [sym_parenthesized_expression] = STATE(83), - [sym_char_literal] = STATE(83), - [sym_concatenated_string] = STATE(83), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_RPAREN] = ACTIONS(629), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_extern] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN2] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_RBRACK] = ACTIONS(629), + [anon_sym_EQ] = ACTIONS(631), + [anon_sym_static] = ACTIONS(631), + [anon_sym_auto] = ACTIONS(631), + [anon_sym_register] = ACTIONS(631), + [anon_sym_inline] = ACTIONS(631), + [anon_sym_const] = ACTIONS(631), + [anon_sym_restrict] = ACTIONS(631), + [anon_sym_volatile] = ACTIONS(631), + [anon_sym__Atomic] = ACTIONS(631), + [anon_sym_unsigned] = ACTIONS(631), + [anon_sym_long] = ACTIONS(631), + [anon_sym_short] = ACTIONS(631), + [sym_primitive_type] = ACTIONS(631), + [anon_sym_enum] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(631), + [anon_sym_union] = ACTIONS(631), + [anon_sym_COLON] = ACTIONS(629), + [anon_sym_QMARK] = ACTIONS(629), + [anon_sym_STAR_EQ] = ACTIONS(629), + [anon_sym_SLASH_EQ] = ACTIONS(629), + [anon_sym_PERCENT_EQ] = ACTIONS(629), + [anon_sym_PLUS_EQ] = ACTIONS(629), + [anon_sym_DASH_EQ] = ACTIONS(629), + [anon_sym_LT_LT_EQ] = ACTIONS(629), + [anon_sym_GT_GT_EQ] = ACTIONS(629), + [anon_sym_AMP_EQ] = ACTIONS(629), + [anon_sym_CARET_EQ] = ACTIONS(629), + [anon_sym_PIPE_EQ] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(631), + [anon_sym_CARET] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(629), + [anon_sym_LT] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(631), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_LT_LT] = ACTIONS(631), + [anon_sym_GT_GT] = ACTIONS(631), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_SLASH] = ACTIONS(631), + [anon_sym_PERCENT] = ACTIONS(631), + [anon_sym_DASH_DASH] = ACTIONS(629), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_DOT] = ACTIONS(629), + [anon_sym_DASH_GT] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(629), + [sym_identifier] = ACTIONS(631), + [sym_comment] = ACTIONS(81), }, [118] = { - [sym__expression] = STATE(127), - [sym_conditional_expression] = STATE(127), - [sym_assignment_expression] = STATE(127), - [sym_pointer_expression] = STATE(127), - [sym_logical_expression] = STATE(127), - [sym_bitwise_expression] = STATE(127), - [sym_equality_expression] = STATE(127), - [sym_relational_expression] = STATE(127), - [sym_shift_expression] = STATE(127), - [sym_math_expression] = STATE(127), - [sym_cast_expression] = STATE(127), - [sym_sizeof_expression] = STATE(127), - [sym_subscript_expression] = STATE(127), - [sym_call_expression] = STATE(127), - [sym_field_expression] = STATE(127), - [sym_compound_literal_expression] = STATE(127), - [sym_parenthesized_expression] = STATE(127), - [sym_char_literal] = STATE(127), - [sym_concatenated_string] = STATE(127), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(247), - [sym_false] = ACTIONS(247), - [sym_null] = ACTIONS(247), - [sym_identifier] = ACTIONS(247), - [sym_comment] = ACTIONS(85), + [aux_sym_string_literal_repeat1] = STATE(296), + [anon_sym_DQUOTE] = ACTIONS(633), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(635), + [sym_escape_sequence] = ACTIONS(635), + [sym_comment] = ACTIONS(91), }, [119] = { - [sym__expression] = STATE(128), - [sym_conditional_expression] = STATE(128), - [sym_assignment_expression] = STATE(128), - [sym_pointer_expression] = STATE(128), - [sym_logical_expression] = STATE(128), - [sym_bitwise_expression] = STATE(128), - [sym_equality_expression] = STATE(128), - [sym_relational_expression] = STATE(128), - [sym_shift_expression] = STATE(128), - [sym_math_expression] = STATE(128), - [sym_cast_expression] = STATE(128), - [sym_sizeof_expression] = STATE(128), - [sym_subscript_expression] = STATE(128), - [sym_call_expression] = STATE(128), - [sym_field_expression] = STATE(128), - [sym_compound_literal_expression] = STATE(128), - [sym_parenthesized_expression] = STATE(128), - [sym_char_literal] = STATE(128), - [sym_concatenated_string] = STATE(128), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(251), - [sym_false] = ACTIONS(251), - [sym_null] = ACTIONS(251), - [sym_identifier] = ACTIONS(251), - [sym_comment] = ACTIONS(85), - }, - [120] = { - [sym__expression] = STATE(129), - [sym_conditional_expression] = STATE(129), - [sym_assignment_expression] = STATE(129), - [sym_pointer_expression] = STATE(129), - [sym_logical_expression] = STATE(129), - [sym_bitwise_expression] = STATE(129), - [sym_equality_expression] = STATE(129), - [sym_relational_expression] = STATE(129), - [sym_shift_expression] = STATE(129), - [sym_math_expression] = STATE(129), - [sym_cast_expression] = STATE(129), - [sym_sizeof_expression] = STATE(129), - [sym_subscript_expression] = STATE(129), - [sym_call_expression] = STATE(129), - [sym_field_expression] = STATE(129), - [sym_compound_literal_expression] = STATE(129), - [sym_parenthesized_expression] = STATE(129), - [sym_char_literal] = STATE(129), - [sym_concatenated_string] = STATE(129), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(253), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(255), - [sym_false] = ACTIONS(255), - [sym_null] = ACTIONS(255), - [sym_identifier] = ACTIONS(255), - [sym_comment] = ACTIONS(85), - }, - [121] = { - [sym__expression] = STATE(322), - [sym_conditional_expression] = STATE(322), - [sym_assignment_expression] = STATE(322), - [sym_pointer_expression] = STATE(322), - [sym_logical_expression] = STATE(322), - [sym_bitwise_expression] = STATE(322), - [sym_equality_expression] = STATE(322), - [sym_relational_expression] = STATE(322), - [sym_shift_expression] = STATE(322), - [sym_math_expression] = STATE(322), - [sym_cast_expression] = STATE(322), - [sym_sizeof_expression] = STATE(322), - [sym_subscript_expression] = STATE(322), - [sym_call_expression] = STATE(322), - [sym_field_expression] = STATE(322), - [sym_compound_literal_expression] = STATE(322), - [sym_parenthesized_expression] = STATE(322), - [sym_char_literal] = STATE(322), - [sym_concatenated_string] = STATE(322), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(657), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(659), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_identifier] = ACTIONS(661), - [sym_comment] = ACTIONS(85), - }, - [122] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [123] = { - [sym_string_literal] = STATE(336), - [aux_sym_concatenated_string_repeat1] = STATE(336), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_comment] = ACTIONS(85), - }, - [124] = { - [ts_builtin_sym_end] = ACTIONS(693), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(695), - [sym_preproc_directive] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_typedef] = ACTIONS(695), - [anon_sym_extern] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(693), - [anon_sym_LPAREN2] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_static] = ACTIONS(695), - [anon_sym_auto] = ACTIONS(695), - [anon_sym_register] = ACTIONS(695), - [anon_sym_inline] = ACTIONS(695), - [anon_sym_const] = ACTIONS(695), - [anon_sym_restrict] = ACTIONS(695), - [anon_sym_volatile] = ACTIONS(695), - [anon_sym__Atomic] = ACTIONS(695), - [anon_sym_unsigned] = ACTIONS(695), - [anon_sym_long] = ACTIONS(695), - [anon_sym_short] = ACTIONS(695), - [sym_primitive_type] = ACTIONS(695), - [anon_sym_enum] = ACTIONS(695), - [anon_sym_struct] = ACTIONS(695), - [anon_sym_union] = ACTIONS(695), - [anon_sym_if] = ACTIONS(695), - [anon_sym_else] = ACTIONS(695), - [anon_sym_switch] = ACTIONS(695), - [anon_sym_case] = ACTIONS(695), - [anon_sym_default] = ACTIONS(695), - [anon_sym_while] = ACTIONS(695), - [anon_sym_do] = ACTIONS(695), - [anon_sym_for] = ACTIONS(695), - [anon_sym_return] = ACTIONS(695), - [anon_sym_break] = ACTIONS(695), - [anon_sym_continue] = ACTIONS(695), - [anon_sym_goto] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_DASH_DASH] = ACTIONS(693), - [anon_sym_PLUS_PLUS] = ACTIONS(693), - [anon_sym_sizeof] = ACTIONS(695), - [sym_number_literal] = ACTIONS(693), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_DQUOTE] = ACTIONS(693), - [sym_true] = ACTIONS(695), - [sym_false] = ACTIONS(695), - [sym_null] = ACTIONS(695), - [sym_identifier] = ACTIONS(695), - [sym_comment] = ACTIONS(85), - }, - [125] = { - [ts_builtin_sym_end] = ACTIONS(697), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(699), - [sym_preproc_directive] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_typedef] = ACTIONS(699), - [anon_sym_extern] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_RBRACE] = ACTIONS(697), - [anon_sym_LPAREN2] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_static] = ACTIONS(699), - [anon_sym_auto] = ACTIONS(699), - [anon_sym_register] = ACTIONS(699), - [anon_sym_inline] = ACTIONS(699), - [anon_sym_const] = ACTIONS(699), - [anon_sym_restrict] = ACTIONS(699), - [anon_sym_volatile] = ACTIONS(699), - [anon_sym__Atomic] = ACTIONS(699), - [anon_sym_unsigned] = ACTIONS(699), - [anon_sym_long] = ACTIONS(699), - [anon_sym_short] = ACTIONS(699), - [sym_primitive_type] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(699), - [anon_sym_struct] = ACTIONS(699), - [anon_sym_union] = ACTIONS(699), - [anon_sym_if] = ACTIONS(699), - [anon_sym_else] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(699), - [anon_sym_case] = ACTIONS(699), - [anon_sym_default] = ACTIONS(699), - [anon_sym_while] = ACTIONS(699), - [anon_sym_do] = ACTIONS(699), - [anon_sym_for] = ACTIONS(699), - [anon_sym_return] = ACTIONS(699), - [anon_sym_break] = ACTIONS(699), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_goto] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_sizeof] = ACTIONS(699), - [sym_number_literal] = ACTIONS(697), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(697), - [sym_true] = ACTIONS(699), - [sym_false] = ACTIONS(699), - [sym_null] = ACTIONS(699), - [sym_identifier] = ACTIONS(699), - [sym_comment] = ACTIONS(85), - }, - [126] = { - [anon_sym_SEMI] = ACTIONS(701), - [sym_comment] = ACTIONS(85), - }, - [127] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(703), - [anon_sym_RPAREN] = ACTIONS(703), - [anon_sym_SEMI] = ACTIONS(703), - [anon_sym_RBRACE] = ACTIONS(703), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(705), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(703), - [anon_sym_EQ] = ACTIONS(705), - [anon_sym_COLON] = ACTIONS(703), - [anon_sym_QMARK] = ACTIONS(703), - [anon_sym_STAR_EQ] = ACTIONS(703), - [anon_sym_SLASH_EQ] = ACTIONS(703), - [anon_sym_PERCENT_EQ] = ACTIONS(703), - [anon_sym_PLUS_EQ] = ACTIONS(703), - [anon_sym_DASH_EQ] = ACTIONS(703), - [anon_sym_LT_LT_EQ] = ACTIONS(703), - [anon_sym_GT_GT_EQ] = ACTIONS(703), - [anon_sym_AMP_EQ] = ACTIONS(703), - [anon_sym_CARET_EQ] = ACTIONS(703), - [anon_sym_PIPE_EQ] = ACTIONS(703), - [anon_sym_AMP] = ACTIONS(705), - [anon_sym_PIPE_PIPE] = ACTIONS(703), - [anon_sym_AMP_AMP] = ACTIONS(703), - [anon_sym_PIPE] = ACTIONS(705), - [anon_sym_CARET] = ACTIONS(705), - [anon_sym_EQ_EQ] = ACTIONS(703), - [anon_sym_BANG_EQ] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(705), - [anon_sym_GT] = ACTIONS(705), - [anon_sym_LT_EQ] = ACTIONS(703), - [anon_sym_GT_EQ] = ACTIONS(703), - [anon_sym_LT_LT] = ACTIONS(705), - [anon_sym_GT_GT] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(705), - [anon_sym_DASH] = ACTIONS(705), - [anon_sym_SLASH] = ACTIONS(705), - [anon_sym_PERCENT] = ACTIONS(705), - [anon_sym_DASH_DASH] = ACTIONS(703), - [anon_sym_PLUS_PLUS] = ACTIONS(703), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [128] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(707), - [anon_sym_RPAREN] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_RBRACE] = ACTIONS(707), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(707), - [anon_sym_EQ] = ACTIONS(709), - [anon_sym_COLON] = ACTIONS(707), - [anon_sym_QMARK] = ACTIONS(707), - [anon_sym_STAR_EQ] = ACTIONS(707), - [anon_sym_SLASH_EQ] = ACTIONS(707), - [anon_sym_PERCENT_EQ] = ACTIONS(707), - [anon_sym_PLUS_EQ] = ACTIONS(707), - [anon_sym_DASH_EQ] = ACTIONS(707), - [anon_sym_LT_LT_EQ] = ACTIONS(707), - [anon_sym_GT_GT_EQ] = ACTIONS(707), - [anon_sym_AMP_EQ] = ACTIONS(707), - [anon_sym_CARET_EQ] = ACTIONS(707), - [anon_sym_PIPE_EQ] = ACTIONS(707), - [anon_sym_AMP] = ACTIONS(709), - [anon_sym_PIPE_PIPE] = ACTIONS(707), - [anon_sym_AMP_AMP] = ACTIONS(707), - [anon_sym_PIPE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_EQ_EQ] = ACTIONS(707), - [anon_sym_BANG_EQ] = ACTIONS(707), - [anon_sym_LT] = ACTIONS(709), - [anon_sym_GT] = ACTIONS(709), - [anon_sym_LT_EQ] = ACTIONS(707), - [anon_sym_GT_EQ] = ACTIONS(707), - [anon_sym_LT_LT] = ACTIONS(709), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_SLASH] = ACTIONS(709), - [anon_sym_PERCENT] = ACTIONS(709), - [anon_sym_DASH_DASH] = ACTIONS(707), - [anon_sym_PLUS_PLUS] = ACTIONS(707), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [129] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(711), - [anon_sym_RBRACE] = ACTIONS(711), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(711), - [anon_sym_EQ] = ACTIONS(713), - [anon_sym_COLON] = ACTIONS(711), - [anon_sym_QMARK] = ACTIONS(711), - [anon_sym_STAR_EQ] = ACTIONS(711), - [anon_sym_SLASH_EQ] = ACTIONS(711), - [anon_sym_PERCENT_EQ] = ACTIONS(711), - [anon_sym_PLUS_EQ] = ACTIONS(711), - [anon_sym_DASH_EQ] = ACTIONS(711), - [anon_sym_LT_LT_EQ] = ACTIONS(711), - [anon_sym_GT_GT_EQ] = ACTIONS(711), - [anon_sym_AMP_EQ] = ACTIONS(711), - [anon_sym_CARET_EQ] = ACTIONS(711), - [anon_sym_PIPE_EQ] = ACTIONS(711), - [anon_sym_AMP] = ACTIONS(713), - [anon_sym_PIPE_PIPE] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(711), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_EQ_EQ] = ACTIONS(711), - [anon_sym_BANG_EQ] = ACTIONS(711), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_GT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(711), - [anon_sym_GT_EQ] = ACTIONS(711), - [anon_sym_LT_LT] = ACTIONS(713), - [anon_sym_GT_GT] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_SLASH] = ACTIONS(713), - [anon_sym_PERCENT] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [130] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(76), - [sym_sized_type_specifier] = STATE(76), - [sym_enum_specifier] = STATE(76), - [sym_struct_specifier] = STATE(76), - [sym_union_specifier] = STATE(76), - [sym__expression] = STATE(77), - [sym_comma_expression] = STATE(78), - [sym_conditional_expression] = STATE(77), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_type_descriptor] = STATE(338), - [sym_sizeof_expression] = STATE(77), - [sym_subscript_expression] = STATE(77), - [sym_call_expression] = STATE(77), - [sym_field_expression] = STATE(77), - [sym_compound_literal_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(80), - [sym_macro_type_specifier] = STATE(76), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(82), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [sym_primitive_type] = ACTIONS(141), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(155), - [sym_false] = ACTIONS(155), - [sym_null] = ACTIONS(155), - [sym_identifier] = ACTIONS(157), - [sym_comment] = ACTIONS(85), - }, - [131] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(715), - [anon_sym_SEMI] = ACTIONS(715), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(717), - [anon_sym_QMARK] = ACTIONS(715), - [anon_sym_STAR_EQ] = ACTIONS(715), - [anon_sym_SLASH_EQ] = ACTIONS(715), - [anon_sym_PERCENT_EQ] = ACTIONS(715), - [anon_sym_PLUS_EQ] = ACTIONS(715), - [anon_sym_DASH_EQ] = ACTIONS(715), - [anon_sym_LT_LT_EQ] = ACTIONS(715), - [anon_sym_GT_GT_EQ] = ACTIONS(715), - [anon_sym_AMP_EQ] = ACTIONS(715), - [anon_sym_CARET_EQ] = ACTIONS(715), - [anon_sym_PIPE_EQ] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_CARET] = ACTIONS(717), - [anon_sym_EQ_EQ] = ACTIONS(715), - [anon_sym_BANG_EQ] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_LT_EQ] = ACTIONS(715), - [anon_sym_GT_EQ] = ACTIONS(715), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [132] = { - [anon_sym_SQUOTE] = ACTIONS(719), - [sym_comment] = ACTIONS(85), - }, - [133] = { - [anon_sym_COMMA] = ACTIONS(721), - [anon_sym_RPAREN] = ACTIONS(721), - [anon_sym_SEMI] = ACTIONS(721), - [anon_sym_extern] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_RBRACE] = ACTIONS(721), - [anon_sym_LPAREN2] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(723), - [anon_sym_LBRACK] = ACTIONS(721), - [anon_sym_RBRACK] = ACTIONS(721), - [anon_sym_EQ] = ACTIONS(723), - [anon_sym_static] = ACTIONS(723), - [anon_sym_auto] = ACTIONS(723), - [anon_sym_register] = ACTIONS(723), - [anon_sym_inline] = ACTIONS(723), - [anon_sym_const] = ACTIONS(723), - [anon_sym_restrict] = ACTIONS(723), - [anon_sym_volatile] = ACTIONS(723), - [anon_sym__Atomic] = ACTIONS(723), - [anon_sym_unsigned] = ACTIONS(723), - [anon_sym_long] = ACTIONS(723), - [anon_sym_short] = ACTIONS(723), - [sym_primitive_type] = ACTIONS(723), - [anon_sym_enum] = ACTIONS(723), - [anon_sym_struct] = ACTIONS(723), - [anon_sym_union] = ACTIONS(723), - [anon_sym_COLON] = ACTIONS(721), - [anon_sym_QMARK] = ACTIONS(721), - [anon_sym_STAR_EQ] = ACTIONS(721), - [anon_sym_SLASH_EQ] = ACTIONS(721), - [anon_sym_PERCENT_EQ] = ACTIONS(721), - [anon_sym_PLUS_EQ] = ACTIONS(721), - [anon_sym_DASH_EQ] = ACTIONS(721), - [anon_sym_LT_LT_EQ] = ACTIONS(721), - [anon_sym_GT_GT_EQ] = ACTIONS(721), - [anon_sym_AMP_EQ] = ACTIONS(721), - [anon_sym_CARET_EQ] = ACTIONS(721), - [anon_sym_PIPE_EQ] = ACTIONS(721), - [anon_sym_AMP] = ACTIONS(723), - [anon_sym_PIPE_PIPE] = ACTIONS(721), - [anon_sym_AMP_AMP] = ACTIONS(721), - [anon_sym_PIPE] = ACTIONS(723), - [anon_sym_CARET] = ACTIONS(723), - [anon_sym_EQ_EQ] = ACTIONS(721), - [anon_sym_BANG_EQ] = ACTIONS(721), - [anon_sym_LT] = ACTIONS(723), - [anon_sym_GT] = ACTIONS(723), - [anon_sym_LT_EQ] = ACTIONS(721), - [anon_sym_GT_EQ] = ACTIONS(721), - [anon_sym_LT_LT] = ACTIONS(723), - [anon_sym_GT_GT] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_SLASH] = ACTIONS(723), - [anon_sym_PERCENT] = ACTIONS(723), - [anon_sym_DASH_DASH] = ACTIONS(721), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_DOT] = ACTIONS(721), - [anon_sym_DASH_GT] = ACTIONS(721), - [anon_sym_DQUOTE] = ACTIONS(721), - [sym_identifier] = ACTIONS(723), - [sym_comment] = ACTIONS(85), - }, - [134] = { - [aux_sym_string_literal_repeat1] = STATE(341), - [anon_sym_DQUOTE] = ACTIONS(725), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(727), - [sym_escape_sequence] = ACTIONS(727), - [sym_comment] = ACTIONS(95), - }, - [135] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(76), - [sym_sized_type_specifier] = STATE(76), - [sym_enum_specifier] = STATE(76), - [sym_struct_specifier] = STATE(76), - [sym_union_specifier] = STATE(76), - [sym_type_descriptor] = STATE(342), - [sym_macro_type_specifier] = STATE(76), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(82), + [sym_type_qualifier] = STATE(76), + [sym__type_specifier] = STATE(71), + [sym_sized_type_specifier] = STATE(71), + [sym_enum_specifier] = STATE(71), + [sym_struct_specifier] = STATE(71), + [sym_union_specifier] = STATE(71), + [sym_type_descriptor] = STATE(297), + [sym_macro_type_specifier] = STATE(71), + [aux_sym_type_definition_repeat1] = STATE(76), + [aux_sym_sized_type_specifier_repeat1] = STATE(77), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [sym_primitive_type] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(129), + [anon_sym_long] = ACTIONS(129), + [anon_sym_short] = ACTIONS(129), + [sym_primitive_type] = ACTIONS(131), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [136] = { - [sym_compound_statement] = STATE(343), - [sym_labeled_statement] = STATE(343), - [sym_expression_statement] = STATE(343), - [sym_if_statement] = STATE(343), - [sym_switch_statement] = STATE(343), - [sym_case_statement] = STATE(343), - [sym_while_statement] = STATE(343), - [sym_do_statement] = STATE(343), - [sym_for_statement] = STATE(343), - [sym_return_statement] = STATE(343), - [sym_break_statement] = STATE(343), - [sym_continue_statement] = STATE(343), - [sym_goto_statement] = STATE(343), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [120] = { + [sym_compound_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_if] = ACTIONS(43), [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_while] = ACTIONS(51), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(81), }, - [137] = { - [ts_builtin_sym_end] = ACTIONS(729), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(731), - [sym_preproc_directive] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_typedef] = ACTIONS(731), - [anon_sym_extern] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_LPAREN2] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_static] = ACTIONS(731), - [anon_sym_auto] = ACTIONS(731), - [anon_sym_register] = ACTIONS(731), - [anon_sym_inline] = ACTIONS(731), - [anon_sym_const] = ACTIONS(731), - [anon_sym_restrict] = ACTIONS(731), - [anon_sym_volatile] = ACTIONS(731), - [anon_sym__Atomic] = ACTIONS(731), - [anon_sym_unsigned] = ACTIONS(731), - [anon_sym_long] = ACTIONS(731), - [anon_sym_short] = ACTIONS(731), - [sym_primitive_type] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(731), - [anon_sym_struct] = ACTIONS(731), - [anon_sym_union] = ACTIONS(731), - [anon_sym_if] = ACTIONS(731), - [anon_sym_switch] = ACTIONS(731), - [anon_sym_case] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_while] = ACTIONS(731), - [anon_sym_do] = ACTIONS(731), - [anon_sym_for] = ACTIONS(731), - [anon_sym_return] = ACTIONS(731), - [anon_sym_break] = ACTIONS(731), - [anon_sym_continue] = ACTIONS(731), - [anon_sym_goto] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_sizeof] = ACTIONS(731), - [sym_number_literal] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [sym_true] = ACTIONS(731), - [sym_false] = ACTIONS(731), - [sym_null] = ACTIONS(731), - [sym_identifier] = ACTIONS(731), - [sym_comment] = ACTIONS(85), + [121] = { + [ts_builtin_sym_end] = ACTIONS(637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(639), + [sym_preproc_directive] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym_typedef] = ACTIONS(639), + [anon_sym_extern] = ACTIONS(639), + [anon_sym_LBRACE] = ACTIONS(637), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_LPAREN2] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_static] = ACTIONS(639), + [anon_sym_auto] = ACTIONS(639), + [anon_sym_register] = ACTIONS(639), + [anon_sym_inline] = ACTIONS(639), + [anon_sym_const] = ACTIONS(639), + [anon_sym_restrict] = ACTIONS(639), + [anon_sym_volatile] = ACTIONS(639), + [anon_sym__Atomic] = ACTIONS(639), + [anon_sym_unsigned] = ACTIONS(639), + [anon_sym_long] = ACTIONS(639), + [anon_sym_short] = ACTIONS(639), + [sym_primitive_type] = ACTIONS(639), + [anon_sym_enum] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(639), + [anon_sym_union] = ACTIONS(639), + [anon_sym_if] = ACTIONS(639), + [anon_sym_switch] = ACTIONS(639), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(639), + [anon_sym_for] = ACTIONS(639), + [anon_sym_return] = ACTIONS(639), + [anon_sym_break] = ACTIONS(639), + [anon_sym_continue] = ACTIONS(639), + [anon_sym_goto] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_DASH_DASH] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(637), + [anon_sym_sizeof] = ACTIONS(639), + [sym_number_literal] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(637), + [sym_true] = ACTIONS(639), + [sym_false] = ACTIONS(639), + [sym_null] = ACTIONS(639), + [sym_identifier] = ACTIONS(639), + [sym_comment] = ACTIONS(81), }, - [138] = { - [sym__declarator] = STATE(345), - [sym_pointer_declarator] = STATE(345), - [sym_function_declarator] = STATE(345), - [sym_array_declarator] = STATE(345), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(733), - [sym_identifier] = ACTIONS(735), - [sym_comment] = ACTIONS(85), + [122] = { + [sym__declarator] = STATE(300), + [sym_pointer_declarator] = STATE(300), + [sym_function_declarator] = STATE(300), + [sym_array_declarator] = STATE(300), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(641), + [sym_identifier] = ACTIONS(643), + [sym_comment] = ACTIONS(81), }, - [139] = { - [sym__declarator] = STATE(346), - [sym_pointer_declarator] = STATE(346), - [sym_function_declarator] = STATE(346), - [sym_array_declarator] = STATE(346), - [sym_type_qualifier] = STATE(347), - [aux_sym_type_definition_repeat1] = STATE(347), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), + [123] = { + [sym__declarator] = STATE(301), + [sym_pointer_declarator] = STATE(301), + [sym_function_declarator] = STATE(301), + [sym_array_declarator] = STATE(301), + [sym_type_qualifier] = STATE(302), + [aux_sym_type_definition_repeat1] = STATE(302), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(261), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(737), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(645), + [sym_comment] = ACTIONS(81), }, - [140] = { - [sym_compound_statement] = STATE(353), - [sym_parameter_list] = STATE(354), - [aux_sym_declaration_repeat1] = STATE(355), - [anon_sym_COMMA] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(741), + [124] = { + [sym_compound_statement] = STATE(308), + [sym_parameter_list] = STATE(309), + [aux_sym_declaration_repeat1] = STATE(310), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(649), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(747), - [sym_comment] = ACTIONS(85), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(655), + [sym_comment] = ACTIONS(81), }, - [141] = { - [aux_sym_declaration_repeat1] = STATE(355), - [anon_sym_COMMA] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(741), - [sym_comment] = ACTIONS(85), + [125] = { + [aux_sym_declaration_repeat1] = STATE(310), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(649), + [sym_comment] = ACTIONS(81), }, - [142] = { - [sym_storage_class_specifier] = STATE(356), - [sym_type_qualifier] = STATE(356), - [aux_sym__declaration_specifiers_repeat1] = STATE(356), - [anon_sym_SEMI] = ACTIONS(749), + [126] = { + [sym_storage_class_specifier] = STATE(311), + [sym_type_qualifier] = STATE(311), + [aux_sym__declaration_specifiers_repeat1] = STATE(311), + [anon_sym_SEMI] = ACTIONS(657), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(657), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -10374,930 +9803,927 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(751), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(659), + [sym_comment] = ACTIONS(81), }, - [143] = { - [sym__expression] = STATE(357), - [sym_comma_expression] = STATE(358), - [sym_conditional_expression] = STATE(357), - [sym_assignment_expression] = STATE(357), - [sym_pointer_expression] = STATE(357), - [sym_logical_expression] = STATE(357), - [sym_bitwise_expression] = STATE(357), - [sym_equality_expression] = STATE(357), - [sym_relational_expression] = STATE(357), - [sym_shift_expression] = STATE(357), - [sym_math_expression] = STATE(357), - [sym_cast_expression] = STATE(357), - [sym_sizeof_expression] = STATE(357), - [sym_subscript_expression] = STATE(357), - [sym_call_expression] = STATE(357), - [sym_field_expression] = STATE(357), - [sym_compound_literal_expression] = STATE(357), - [sym_parenthesized_expression] = STATE(357), - [sym_char_literal] = STATE(357), - [sym_concatenated_string] = STATE(357), - [sym_string_literal] = STATE(41), + [127] = { + [sym__expression] = STATE(312), + [sym_comma_expression] = STATE(313), + [sym_conditional_expression] = STATE(312), + [sym_assignment_expression] = STATE(312), + [sym_pointer_expression] = STATE(312), + [sym_logical_expression] = STATE(312), + [sym_bitwise_expression] = STATE(312), + [sym_equality_expression] = STATE(312), + [sym_relational_expression] = STATE(312), + [sym_shift_expression] = STATE(312), + [sym_math_expression] = STATE(312), + [sym_cast_expression] = STATE(312), + [sym_sizeof_expression] = STATE(312), + [sym_subscript_expression] = STATE(312), + [sym_call_expression] = STATE(312), + [sym_field_expression] = STATE(312), + [sym_compound_literal_expression] = STATE(312), + [sym_parenthesized_expression] = STATE(312), + [sym_char_literal] = STATE(312), + [sym_concatenated_string] = STATE(312), + [sym_string_literal] = STATE(39), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(753), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(755), - [sym_false] = ACTIONS(755), - [sym_null] = ACTIONS(755), - [sym_identifier] = ACTIONS(755), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(661), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(663), + [sym_false] = ACTIONS(663), + [sym_null] = ACTIONS(663), + [sym_identifier] = ACTIONS(663), + [sym_comment] = ACTIONS(81), }, - [144] = { - [ts_builtin_sym_end] = ACTIONS(757), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(759), - [sym_preproc_directive] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(757), - [anon_sym_typedef] = ACTIONS(759), - [anon_sym_extern] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_LPAREN2] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_static] = ACTIONS(759), - [anon_sym_auto] = ACTIONS(759), - [anon_sym_register] = ACTIONS(759), - [anon_sym_inline] = ACTIONS(759), - [anon_sym_const] = ACTIONS(759), - [anon_sym_restrict] = ACTIONS(759), - [anon_sym_volatile] = ACTIONS(759), - [anon_sym__Atomic] = ACTIONS(759), - [anon_sym_unsigned] = ACTIONS(759), - [anon_sym_long] = ACTIONS(759), - [anon_sym_short] = ACTIONS(759), - [sym_primitive_type] = ACTIONS(759), - [anon_sym_enum] = ACTIONS(759), - [anon_sym_struct] = ACTIONS(759), - [anon_sym_union] = ACTIONS(759), - [anon_sym_if] = ACTIONS(759), - [anon_sym_else] = ACTIONS(759), - [anon_sym_switch] = ACTIONS(759), - [anon_sym_case] = ACTIONS(759), - [anon_sym_default] = ACTIONS(759), - [anon_sym_while] = ACTIONS(759), - [anon_sym_do] = ACTIONS(759), - [anon_sym_for] = ACTIONS(759), - [anon_sym_return] = ACTIONS(759), - [anon_sym_break] = ACTIONS(759), - [anon_sym_continue] = ACTIONS(759), - [anon_sym_goto] = ACTIONS(759), - [anon_sym_AMP] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(757), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_sizeof] = ACTIONS(759), - [sym_number_literal] = ACTIONS(757), - [anon_sym_SQUOTE] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [sym_true] = ACTIONS(759), - [sym_false] = ACTIONS(759), - [sym_null] = ACTIONS(759), - [sym_identifier] = ACTIONS(759), - [sym_comment] = ACTIONS(85), + [128] = { + [ts_builtin_sym_end] = ACTIONS(665), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(667), + [sym_preproc_directive] = ACTIONS(667), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_typedef] = ACTIONS(667), + [anon_sym_extern] = ACTIONS(667), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(665), + [anon_sym_LPAREN2] = ACTIONS(665), + [anon_sym_STAR] = ACTIONS(665), + [anon_sym_static] = ACTIONS(667), + [anon_sym_auto] = ACTIONS(667), + [anon_sym_register] = ACTIONS(667), + [anon_sym_inline] = ACTIONS(667), + [anon_sym_const] = ACTIONS(667), + [anon_sym_restrict] = ACTIONS(667), + [anon_sym_volatile] = ACTIONS(667), + [anon_sym__Atomic] = ACTIONS(667), + [anon_sym_unsigned] = ACTIONS(667), + [anon_sym_long] = ACTIONS(667), + [anon_sym_short] = ACTIONS(667), + [sym_primitive_type] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(667), + [anon_sym_struct] = ACTIONS(667), + [anon_sym_union] = ACTIONS(667), + [anon_sym_if] = ACTIONS(667), + [anon_sym_else] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(667), + [anon_sym_case] = ACTIONS(667), + [anon_sym_default] = ACTIONS(667), + [anon_sym_while] = ACTIONS(667), + [anon_sym_do] = ACTIONS(667), + [anon_sym_for] = ACTIONS(667), + [anon_sym_return] = ACTIONS(667), + [anon_sym_break] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(667), + [anon_sym_goto] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_PLUS] = ACTIONS(667), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_sizeof] = ACTIONS(667), + [sym_number_literal] = ACTIONS(665), + [anon_sym_SQUOTE] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [sym_null] = ACTIONS(667), + [sym_identifier] = ACTIONS(667), + [sym_comment] = ACTIONS(81), }, - [145] = { - [sym__expression] = STATE(360), - [sym_conditional_expression] = STATE(360), - [sym_assignment_expression] = STATE(360), - [sym_pointer_expression] = STATE(360), - [sym_logical_expression] = STATE(360), - [sym_bitwise_expression] = STATE(360), - [sym_equality_expression] = STATE(360), - [sym_relational_expression] = STATE(360), - [sym_shift_expression] = STATE(360), - [sym_math_expression] = STATE(360), - [sym_cast_expression] = STATE(360), - [sym_sizeof_expression] = STATE(360), - [sym_subscript_expression] = STATE(360), - [sym_call_expression] = STATE(360), - [sym_field_expression] = STATE(360), - [sym_compound_literal_expression] = STATE(360), - [sym_parenthesized_expression] = STATE(360), - [sym_char_literal] = STATE(360), - [sym_concatenated_string] = STATE(360), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(761), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(763), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(765), - [sym_false] = ACTIONS(765), - [sym_null] = ACTIONS(765), - [sym_identifier] = ACTIONS(765), - [sym_comment] = ACTIONS(85), + [129] = { + [sym__expression] = STATE(315), + [sym_conditional_expression] = STATE(315), + [sym_assignment_expression] = STATE(315), + [sym_pointer_expression] = STATE(315), + [sym_logical_expression] = STATE(315), + [sym_bitwise_expression] = STATE(315), + [sym_equality_expression] = STATE(315), + [sym_relational_expression] = STATE(315), + [sym_shift_expression] = STATE(315), + [sym_math_expression] = STATE(315), + [sym_cast_expression] = STATE(315), + [sym_sizeof_expression] = STATE(315), + [sym_subscript_expression] = STATE(315), + [sym_call_expression] = STATE(315), + [sym_field_expression] = STATE(315), + [sym_compound_literal_expression] = STATE(315), + [sym_parenthesized_expression] = STATE(315), + [sym_char_literal] = STATE(315), + [sym_concatenated_string] = STATE(315), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(671), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(673), + [sym_false] = ACTIONS(673), + [sym_null] = ACTIONS(673), + [sym_identifier] = ACTIONS(673), + [sym_comment] = ACTIONS(81), }, - [146] = { - [sym__expression] = STATE(361), - [sym_conditional_expression] = STATE(361), - [sym_assignment_expression] = STATE(361), - [sym_pointer_expression] = STATE(361), - [sym_logical_expression] = STATE(361), - [sym_bitwise_expression] = STATE(361), - [sym_equality_expression] = STATE(361), - [sym_relational_expression] = STATE(361), - [sym_shift_expression] = STATE(361), - [sym_math_expression] = STATE(361), - [sym_cast_expression] = STATE(361), - [sym_sizeof_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_call_expression] = STATE(361), - [sym_field_expression] = STATE(361), - [sym_compound_literal_expression] = STATE(361), - [sym_parenthesized_expression] = STATE(361), - [sym_char_literal] = STATE(361), - [sym_concatenated_string] = STATE(361), - [sym_string_literal] = STATE(41), + [130] = { + [sym__expression] = STATE(316), + [sym_conditional_expression] = STATE(316), + [sym_assignment_expression] = STATE(316), + [sym_pointer_expression] = STATE(316), + [sym_logical_expression] = STATE(316), + [sym_bitwise_expression] = STATE(316), + [sym_equality_expression] = STATE(316), + [sym_relational_expression] = STATE(316), + [sym_shift_expression] = STATE(316), + [sym_math_expression] = STATE(316), + [sym_cast_expression] = STATE(316), + [sym_sizeof_expression] = STATE(316), + [sym_subscript_expression] = STATE(316), + [sym_call_expression] = STATE(316), + [sym_field_expression] = STATE(316), + [sym_compound_literal_expression] = STATE(316), + [sym_parenthesized_expression] = STATE(316), + [sym_char_literal] = STATE(316), + [sym_concatenated_string] = STATE(316), + [sym_string_literal] = STATE(39), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(767), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(769), - [sym_false] = ACTIONS(769), - [sym_null] = ACTIONS(769), - [sym_identifier] = ACTIONS(769), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(677), + [sym_false] = ACTIONS(677), + [sym_null] = ACTIONS(677), + [sym_identifier] = ACTIONS(677), + [sym_comment] = ACTIONS(81), }, - [147] = { - [sym__expression] = STATE(368), - [sym_conditional_expression] = STATE(368), - [sym_assignment_expression] = STATE(368), - [sym_pointer_expression] = STATE(368), - [sym_logical_expression] = STATE(368), - [sym_bitwise_expression] = STATE(368), - [sym_equality_expression] = STATE(368), - [sym_relational_expression] = STATE(368), - [sym_shift_expression] = STATE(368), - [sym_math_expression] = STATE(368), - [sym_cast_expression] = STATE(368), - [sym_sizeof_expression] = STATE(368), - [sym_subscript_expression] = STATE(368), - [sym_call_expression] = STATE(368), - [sym_field_expression] = STATE(368), - [sym_compound_literal_expression] = STATE(368), - [sym_parenthesized_expression] = STATE(368), - [sym_char_literal] = STATE(368), - [sym_concatenated_string] = STATE(368), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_null] = ACTIONS(787), - [sym_identifier] = ACTIONS(787), - [sym_comment] = ACTIONS(85), + [131] = { + [sym__expression] = STATE(323), + [sym_conditional_expression] = STATE(323), + [sym_assignment_expression] = STATE(323), + [sym_pointer_expression] = STATE(323), + [sym_logical_expression] = STATE(323), + [sym_bitwise_expression] = STATE(323), + [sym_equality_expression] = STATE(323), + [sym_relational_expression] = STATE(323), + [sym_shift_expression] = STATE(323), + [sym_math_expression] = STATE(323), + [sym_cast_expression] = STATE(323), + [sym_sizeof_expression] = STATE(323), + [sym_subscript_expression] = STATE(323), + [sym_call_expression] = STATE(323), + [sym_field_expression] = STATE(323), + [sym_compound_literal_expression] = STATE(323), + [sym_parenthesized_expression] = STATE(323), + [sym_char_literal] = STATE(323), + [sym_concatenated_string] = STATE(323), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(693), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(695), + [sym_false] = ACTIONS(695), + [sym_null] = ACTIONS(695), + [sym_identifier] = ACTIONS(695), + [sym_comment] = ACTIONS(81), }, - [148] = { - [sym__expression] = STATE(370), - [sym_conditional_expression] = STATE(370), - [sym_assignment_expression] = STATE(370), - [sym_pointer_expression] = STATE(370), - [sym_logical_expression] = STATE(370), - [sym_bitwise_expression] = STATE(370), - [sym_equality_expression] = STATE(370), - [sym_relational_expression] = STATE(370), - [sym_shift_expression] = STATE(370), - [sym_math_expression] = STATE(370), - [sym_cast_expression] = STATE(370), - [sym_sizeof_expression] = STATE(370), - [sym_subscript_expression] = STATE(370), - [sym_call_expression] = STATE(370), - [sym_field_expression] = STATE(370), - [sym_compound_literal_expression] = STATE(370), - [sym_parenthesized_expression] = STATE(370), - [sym_char_literal] = STATE(370), - [sym_concatenated_string] = STATE(370), - [sym_string_literal] = STATE(41), + [132] = { + [sym__expression] = STATE(325), + [sym_conditional_expression] = STATE(325), + [sym_assignment_expression] = STATE(325), + [sym_pointer_expression] = STATE(325), + [sym_logical_expression] = STATE(325), + [sym_bitwise_expression] = STATE(325), + [sym_equality_expression] = STATE(325), + [sym_relational_expression] = STATE(325), + [sym_shift_expression] = STATE(325), + [sym_math_expression] = STATE(325), + [sym_cast_expression] = STATE(325), + [sym_sizeof_expression] = STATE(325), + [sym_subscript_expression] = STATE(325), + [sym_call_expression] = STATE(325), + [sym_field_expression] = STATE(325), + [sym_compound_literal_expression] = STATE(325), + [sym_parenthesized_expression] = STATE(325), + [sym_char_literal] = STATE(325), + [sym_concatenated_string] = STATE(325), + [sym_string_literal] = STATE(39), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(789), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(791), - [sym_false] = ACTIONS(791), - [sym_null] = ACTIONS(791), - [sym_identifier] = ACTIONS(791), - [sym_comment] = ACTIONS(85), - }, - [149] = { - [sym__expression] = STATE(371), - [sym_conditional_expression] = STATE(371), - [sym_assignment_expression] = STATE(371), - [sym_pointer_expression] = STATE(371), - [sym_logical_expression] = STATE(371), - [sym_bitwise_expression] = STATE(371), - [sym_equality_expression] = STATE(371), - [sym_relational_expression] = STATE(371), - [sym_shift_expression] = STATE(371), - [sym_math_expression] = STATE(371), - [sym_cast_expression] = STATE(371), - [sym_sizeof_expression] = STATE(371), - [sym_subscript_expression] = STATE(371), - [sym_call_expression] = STATE(371), - [sym_field_expression] = STATE(371), - [sym_compound_literal_expression] = STATE(371), - [sym_parenthesized_expression] = STATE(371), - [sym_char_literal] = STATE(371), - [sym_concatenated_string] = STATE(371), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(793), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(795), - [sym_false] = ACTIONS(795), - [sym_null] = ACTIONS(795), - [sym_identifier] = ACTIONS(795), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(697), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(699), + [sym_false] = ACTIONS(699), + [sym_null] = ACTIONS(699), + [sym_identifier] = ACTIONS(699), + [sym_comment] = ACTIONS(81), }, - [150] = { - [sym__expression] = STATE(372), - [sym_conditional_expression] = STATE(372), - [sym_assignment_expression] = STATE(372), - [sym_pointer_expression] = STATE(372), - [sym_logical_expression] = STATE(372), - [sym_bitwise_expression] = STATE(372), - [sym_equality_expression] = STATE(372), - [sym_relational_expression] = STATE(372), - [sym_shift_expression] = STATE(372), - [sym_math_expression] = STATE(372), - [sym_cast_expression] = STATE(372), - [sym_sizeof_expression] = STATE(372), - [sym_subscript_expression] = STATE(372), - [sym_call_expression] = STATE(372), - [sym_field_expression] = STATE(372), - [sym_compound_literal_expression] = STATE(372), - [sym_parenthesized_expression] = STATE(372), - [sym_char_literal] = STATE(372), - [sym_concatenated_string] = STATE(372), - [sym_string_literal] = STATE(41), + [133] = { + [sym__expression] = STATE(332), + [sym_conditional_expression] = STATE(332), + [sym_assignment_expression] = STATE(332), + [sym_pointer_expression] = STATE(332), + [sym_logical_expression] = STATE(332), + [sym_bitwise_expression] = STATE(332), + [sym_equality_expression] = STATE(332), + [sym_relational_expression] = STATE(332), + [sym_shift_expression] = STATE(332), + [sym_math_expression] = STATE(332), + [sym_cast_expression] = STATE(332), + [sym_sizeof_expression] = STATE(332), + [sym_subscript_expression] = STATE(332), + [sym_call_expression] = STATE(332), + [sym_field_expression] = STATE(332), + [sym_compound_literal_expression] = STATE(332), + [sym_parenthesized_expression] = STATE(332), + [sym_char_literal] = STATE(332), + [sym_concatenated_string] = STATE(332), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(715), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(717), + [sym_false] = ACTIONS(717), + [sym_null] = ACTIONS(717), + [sym_identifier] = ACTIONS(717), + [sym_comment] = ACTIONS(81), + }, + [134] = { + [sym__expression] = STATE(334), + [sym_conditional_expression] = STATE(334), + [sym_assignment_expression] = STATE(334), + [sym_pointer_expression] = STATE(334), + [sym_logical_expression] = STATE(334), + [sym_bitwise_expression] = STATE(334), + [sym_equality_expression] = STATE(334), + [sym_relational_expression] = STATE(334), + [sym_shift_expression] = STATE(334), + [sym_math_expression] = STATE(334), + [sym_cast_expression] = STATE(334), + [sym_sizeof_expression] = STATE(334), + [sym_subscript_expression] = STATE(334), + [sym_call_expression] = STATE(334), + [sym_field_expression] = STATE(334), + [sym_compound_literal_expression] = STATE(334), + [sym_parenthesized_expression] = STATE(334), + [sym_char_literal] = STATE(334), + [sym_concatenated_string] = STATE(334), + [sym_string_literal] = STATE(39), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(799), - [sym_false] = ACTIONS(799), - [sym_null] = ACTIONS(799), - [sym_identifier] = ACTIONS(799), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(719), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(721), + [sym_false] = ACTIONS(721), + [sym_null] = ACTIONS(721), + [sym_identifier] = ACTIONS(721), + [sym_comment] = ACTIONS(81), }, - [151] = { - [sym__expression] = STATE(373), - [sym_conditional_expression] = STATE(373), - [sym_assignment_expression] = STATE(373), - [sym_pointer_expression] = STATE(373), - [sym_logical_expression] = STATE(373), - [sym_bitwise_expression] = STATE(373), - [sym_equality_expression] = STATE(373), - [sym_relational_expression] = STATE(373), - [sym_shift_expression] = STATE(373), - [sym_math_expression] = STATE(373), - [sym_cast_expression] = STATE(373), - [sym_sizeof_expression] = STATE(373), - [sym_subscript_expression] = STATE(373), - [sym_call_expression] = STATE(373), - [sym_field_expression] = STATE(373), - [sym_compound_literal_expression] = STATE(373), - [sym_parenthesized_expression] = STATE(373), - [sym_char_literal] = STATE(373), - [sym_concatenated_string] = STATE(373), - [sym_string_literal] = STATE(41), + [135] = { + [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(39), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(801), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(803), - [sym_false] = ACTIONS(803), - [sym_null] = ACTIONS(803), - [sym_identifier] = ACTIONS(803), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(723), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(725), + [sym_false] = ACTIONS(725), + [sym_null] = ACTIONS(725), + [sym_identifier] = ACTIONS(725), + [sym_comment] = ACTIONS(81), }, - [152] = { - [sym__expression] = STATE(374), - [sym_conditional_expression] = STATE(374), - [sym_assignment_expression] = STATE(374), - [sym_pointer_expression] = STATE(374), - [sym_logical_expression] = STATE(374), - [sym_bitwise_expression] = STATE(374), - [sym_equality_expression] = STATE(374), - [sym_relational_expression] = STATE(374), - [sym_shift_expression] = STATE(374), - [sym_math_expression] = STATE(374), - [sym_cast_expression] = STATE(374), - [sym_sizeof_expression] = STATE(374), - [sym_subscript_expression] = STATE(374), - [sym_call_expression] = STATE(374), - [sym_field_expression] = STATE(374), - [sym_compound_literal_expression] = STATE(374), - [sym_parenthesized_expression] = STATE(374), - [sym_char_literal] = STATE(374), - [sym_concatenated_string] = STATE(374), - [sym_string_literal] = STATE(41), + [136] = { + [sym__expression] = STATE(336), + [sym_conditional_expression] = STATE(336), + [sym_assignment_expression] = STATE(336), + [sym_pointer_expression] = STATE(336), + [sym_logical_expression] = STATE(336), + [sym_bitwise_expression] = STATE(336), + [sym_equality_expression] = STATE(336), + [sym_relational_expression] = STATE(336), + [sym_shift_expression] = STATE(336), + [sym_math_expression] = STATE(336), + [sym_cast_expression] = STATE(336), + [sym_sizeof_expression] = STATE(336), + [sym_subscript_expression] = STATE(336), + [sym_call_expression] = STATE(336), + [sym_field_expression] = STATE(336), + [sym_compound_literal_expression] = STATE(336), + [sym_parenthesized_expression] = STATE(336), + [sym_char_literal] = STATE(336), + [sym_concatenated_string] = STATE(336), + [sym_string_literal] = STATE(39), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(805), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(807), - [sym_false] = ACTIONS(807), - [sym_null] = ACTIONS(807), - [sym_identifier] = ACTIONS(807), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(727), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_null] = ACTIONS(729), + [sym_identifier] = ACTIONS(729), + [sym_comment] = ACTIONS(81), }, - [153] = { - [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(41), + [137] = { + [sym__expression] = STATE(337), + [sym_conditional_expression] = STATE(337), + [sym_assignment_expression] = STATE(337), + [sym_pointer_expression] = STATE(337), + [sym_logical_expression] = STATE(337), + [sym_bitwise_expression] = STATE(337), + [sym_equality_expression] = STATE(337), + [sym_relational_expression] = STATE(337), + [sym_shift_expression] = STATE(337), + [sym_math_expression] = STATE(337), + [sym_cast_expression] = STATE(337), + [sym_sizeof_expression] = STATE(337), + [sym_subscript_expression] = STATE(337), + [sym_call_expression] = STATE(337), + [sym_field_expression] = STATE(337), + [sym_compound_literal_expression] = STATE(337), + [sym_parenthesized_expression] = STATE(337), + [sym_char_literal] = STATE(337), + [sym_concatenated_string] = STATE(337), + [sym_string_literal] = STATE(39), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(809), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(811), - [sym_false] = ACTIONS(811), - [sym_null] = ACTIONS(811), - [sym_identifier] = ACTIONS(811), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(731), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_null] = ACTIONS(733), + [sym_identifier] = ACTIONS(733), + [sym_comment] = ACTIONS(81), }, - [154] = { - [sym__expression] = STATE(376), - [sym_conditional_expression] = STATE(376), - [sym_assignment_expression] = STATE(376), - [sym_pointer_expression] = STATE(376), - [sym_logical_expression] = STATE(376), - [sym_bitwise_expression] = STATE(376), - [sym_equality_expression] = STATE(376), - [sym_relational_expression] = STATE(376), - [sym_shift_expression] = STATE(376), - [sym_math_expression] = STATE(376), - [sym_cast_expression] = STATE(376), - [sym_sizeof_expression] = STATE(376), - [sym_subscript_expression] = STATE(376), - [sym_call_expression] = STATE(376), - [sym_field_expression] = STATE(376), - [sym_compound_literal_expression] = STATE(376), - [sym_parenthesized_expression] = STATE(376), - [sym_char_literal] = STATE(376), - [sym_concatenated_string] = STATE(376), - [sym_string_literal] = STATE(41), + [138] = { + [sym__expression] = STATE(338), + [sym_conditional_expression] = STATE(338), + [sym_assignment_expression] = STATE(338), + [sym_pointer_expression] = STATE(338), + [sym_logical_expression] = STATE(338), + [sym_bitwise_expression] = STATE(338), + [sym_equality_expression] = STATE(338), + [sym_relational_expression] = STATE(338), + [sym_shift_expression] = STATE(338), + [sym_math_expression] = STATE(338), + [sym_cast_expression] = STATE(338), + [sym_sizeof_expression] = STATE(338), + [sym_subscript_expression] = STATE(338), + [sym_call_expression] = STATE(338), + [sym_field_expression] = STATE(338), + [sym_compound_literal_expression] = STATE(338), + [sym_parenthesized_expression] = STATE(338), + [sym_char_literal] = STATE(338), + [sym_concatenated_string] = STATE(338), + [sym_string_literal] = STATE(39), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(813), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(815), - [sym_false] = ACTIONS(815), - [sym_null] = ACTIONS(815), - [sym_identifier] = ACTIONS(815), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(735), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(737), + [sym_false] = ACTIONS(737), + [sym_null] = ACTIONS(737), + [sym_identifier] = ACTIONS(737), + [sym_comment] = ACTIONS(81), }, - [155] = { - [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(41), + [139] = { + [sym__expression] = STATE(339), + [sym_conditional_expression] = STATE(339), + [sym_assignment_expression] = STATE(339), + [sym_pointer_expression] = STATE(339), + [sym_logical_expression] = STATE(339), + [sym_bitwise_expression] = STATE(339), + [sym_equality_expression] = STATE(339), + [sym_relational_expression] = STATE(339), + [sym_shift_expression] = STATE(339), + [sym_math_expression] = STATE(339), + [sym_cast_expression] = STATE(339), + [sym_sizeof_expression] = STATE(339), + [sym_subscript_expression] = STATE(339), + [sym_call_expression] = STATE(339), + [sym_field_expression] = STATE(339), + [sym_compound_literal_expression] = STATE(339), + [sym_parenthesized_expression] = STATE(339), + [sym_char_literal] = STATE(339), + [sym_concatenated_string] = STATE(339), + [sym_string_literal] = STATE(39), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(817), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(819), - [sym_false] = ACTIONS(819), - [sym_null] = ACTIONS(819), - [sym_identifier] = ACTIONS(819), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(739), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(741), + [sym_false] = ACTIONS(741), + [sym_null] = ACTIONS(741), + [sym_identifier] = ACTIONS(741), + [sym_comment] = ACTIONS(81), }, - [156] = { - [sym__expression] = STATE(378), - [sym_conditional_expression] = STATE(378), - [sym_assignment_expression] = STATE(378), - [sym_pointer_expression] = STATE(378), - [sym_logical_expression] = STATE(378), - [sym_bitwise_expression] = STATE(378), - [sym_equality_expression] = STATE(378), - [sym_relational_expression] = STATE(378), - [sym_shift_expression] = STATE(378), - [sym_math_expression] = STATE(378), - [sym_cast_expression] = STATE(378), - [sym_sizeof_expression] = STATE(378), - [sym_subscript_expression] = STATE(378), - [sym_call_expression] = STATE(378), - [sym_field_expression] = STATE(378), - [sym_compound_literal_expression] = STATE(378), - [sym_parenthesized_expression] = STATE(378), - [sym_char_literal] = STATE(378), - [sym_concatenated_string] = STATE(378), - [sym_string_literal] = STATE(41), + [140] = { + [sym__expression] = STATE(340), + [sym_conditional_expression] = STATE(340), + [sym_assignment_expression] = STATE(340), + [sym_pointer_expression] = STATE(340), + [sym_logical_expression] = STATE(340), + [sym_bitwise_expression] = STATE(340), + [sym_equality_expression] = STATE(340), + [sym_relational_expression] = STATE(340), + [sym_shift_expression] = STATE(340), + [sym_math_expression] = STATE(340), + [sym_cast_expression] = STATE(340), + [sym_sizeof_expression] = STATE(340), + [sym_subscript_expression] = STATE(340), + [sym_call_expression] = STATE(340), + [sym_field_expression] = STATE(340), + [sym_compound_literal_expression] = STATE(340), + [sym_parenthesized_expression] = STATE(340), + [sym_char_literal] = STATE(340), + [sym_concatenated_string] = STATE(340), + [sym_string_literal] = STATE(39), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(821), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(823), - [sym_false] = ACTIONS(823), - [sym_null] = ACTIONS(823), - [sym_identifier] = ACTIONS(823), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(743), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(745), + [sym_false] = ACTIONS(745), + [sym_null] = ACTIONS(745), + [sym_identifier] = ACTIONS(745), + [sym_comment] = ACTIONS(81), }, - [157] = { - [sym__expression] = STATE(379), - [sym_conditional_expression] = STATE(379), - [sym_assignment_expression] = STATE(379), - [sym_pointer_expression] = STATE(379), - [sym_logical_expression] = STATE(379), - [sym_bitwise_expression] = STATE(379), - [sym_equality_expression] = STATE(379), - [sym_relational_expression] = STATE(379), - [sym_shift_expression] = STATE(379), - [sym_math_expression] = STATE(379), - [sym_cast_expression] = STATE(379), - [sym_sizeof_expression] = STATE(379), - [sym_subscript_expression] = STATE(379), - [sym_call_expression] = STATE(379), - [sym_field_expression] = STATE(379), - [sym_compound_literal_expression] = STATE(379), - [sym_parenthesized_expression] = STATE(379), - [sym_char_literal] = STATE(379), - [sym_concatenated_string] = STATE(379), - [sym_string_literal] = STATE(41), + [141] = { + [sym__expression] = STATE(341), + [sym_conditional_expression] = STATE(341), + [sym_assignment_expression] = STATE(341), + [sym_pointer_expression] = STATE(341), + [sym_logical_expression] = STATE(341), + [sym_bitwise_expression] = STATE(341), + [sym_equality_expression] = STATE(341), + [sym_relational_expression] = STATE(341), + [sym_shift_expression] = STATE(341), + [sym_math_expression] = STATE(341), + [sym_cast_expression] = STATE(341), + [sym_sizeof_expression] = STATE(341), + [sym_subscript_expression] = STATE(341), + [sym_call_expression] = STATE(341), + [sym_field_expression] = STATE(341), + [sym_compound_literal_expression] = STATE(341), + [sym_parenthesized_expression] = STATE(341), + [sym_char_literal] = STATE(341), + [sym_concatenated_string] = STATE(341), + [sym_string_literal] = STATE(39), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(825), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_null] = ACTIONS(827), - [sym_identifier] = ACTIONS(827), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(747), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(749), + [sym_false] = ACTIONS(749), + [sym_null] = ACTIONS(749), + [sym_identifier] = ACTIONS(749), + [sym_comment] = ACTIONS(81), }, - [158] = { - [sym__expression] = STATE(380), - [sym_conditional_expression] = STATE(380), - [sym_assignment_expression] = STATE(380), - [sym_pointer_expression] = STATE(380), - [sym_logical_expression] = STATE(380), - [sym_bitwise_expression] = STATE(380), - [sym_equality_expression] = STATE(380), - [sym_relational_expression] = STATE(380), - [sym_shift_expression] = STATE(380), - [sym_math_expression] = STATE(380), - [sym_cast_expression] = STATE(380), - [sym_sizeof_expression] = STATE(380), - [sym_subscript_expression] = STATE(380), - [sym_call_expression] = STATE(380), - [sym_field_expression] = STATE(380), - [sym_compound_literal_expression] = STATE(380), - [sym_parenthesized_expression] = STATE(380), - [sym_char_literal] = STATE(380), - [sym_concatenated_string] = STATE(380), - [sym_string_literal] = STATE(41), + [142] = { + [sym__expression] = STATE(342), + [sym_conditional_expression] = STATE(342), + [sym_assignment_expression] = STATE(342), + [sym_pointer_expression] = STATE(342), + [sym_logical_expression] = STATE(342), + [sym_bitwise_expression] = STATE(342), + [sym_equality_expression] = STATE(342), + [sym_relational_expression] = STATE(342), + [sym_shift_expression] = STATE(342), + [sym_math_expression] = STATE(342), + [sym_cast_expression] = STATE(342), + [sym_sizeof_expression] = STATE(342), + [sym_subscript_expression] = STATE(342), + [sym_call_expression] = STATE(342), + [sym_field_expression] = STATE(342), + [sym_compound_literal_expression] = STATE(342), + [sym_parenthesized_expression] = STATE(342), + [sym_char_literal] = STATE(342), + [sym_concatenated_string] = STATE(342), + [sym_string_literal] = STATE(39), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(831), - [sym_false] = ACTIONS(831), - [sym_null] = ACTIONS(831), - [sym_identifier] = ACTIONS(831), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(753), + [sym_false] = ACTIONS(753), + [sym_null] = ACTIONS(753), + [sym_identifier] = ACTIONS(753), + [sym_comment] = ACTIONS(81), }, - [159] = { - [anon_sym_COMMA] = ACTIONS(711), - [anon_sym_RPAREN] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(711), - [anon_sym_RBRACE] = ACTIONS(711), - [anon_sym_LPAREN2] = ACTIONS(711), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(711), - [anon_sym_RBRACK] = ACTIONS(711), - [anon_sym_EQ] = ACTIONS(713), - [anon_sym_COLON] = ACTIONS(711), - [anon_sym_QMARK] = ACTIONS(711), - [anon_sym_STAR_EQ] = ACTIONS(711), - [anon_sym_SLASH_EQ] = ACTIONS(711), - [anon_sym_PERCENT_EQ] = ACTIONS(711), - [anon_sym_PLUS_EQ] = ACTIONS(711), - [anon_sym_DASH_EQ] = ACTIONS(711), - [anon_sym_LT_LT_EQ] = ACTIONS(711), - [anon_sym_GT_GT_EQ] = ACTIONS(711), - [anon_sym_AMP_EQ] = ACTIONS(711), - [anon_sym_CARET_EQ] = ACTIONS(711), - [anon_sym_PIPE_EQ] = ACTIONS(711), - [anon_sym_AMP] = ACTIONS(713), - [anon_sym_PIPE_PIPE] = ACTIONS(711), - [anon_sym_AMP_AMP] = ACTIONS(711), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_EQ_EQ] = ACTIONS(711), - [anon_sym_BANG_EQ] = ACTIONS(711), - [anon_sym_LT] = ACTIONS(713), - [anon_sym_GT] = ACTIONS(713), - [anon_sym_LT_EQ] = ACTIONS(711), - [anon_sym_GT_EQ] = ACTIONS(711), - [anon_sym_LT_LT] = ACTIONS(713), - [anon_sym_GT_GT] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_SLASH] = ACTIONS(713), - [anon_sym_PERCENT] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DOT] = ACTIONS(711), - [anon_sym_DASH_GT] = ACTIONS(711), - [sym_comment] = ACTIONS(85), + [143] = { + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RPAREN] = ACTIONS(619), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LPAREN2] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(619), + [anon_sym_RBRACK] = ACTIONS(619), + [anon_sym_EQ] = ACTIONS(621), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(619), + [anon_sym_STAR_EQ] = ACTIONS(619), + [anon_sym_SLASH_EQ] = ACTIONS(619), + [anon_sym_PERCENT_EQ] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(619), + [anon_sym_DASH_EQ] = ACTIONS(619), + [anon_sym_LT_LT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_EQ] = ACTIONS(619), + [anon_sym_AMP_EQ] = ACTIONS(619), + [anon_sym_CARET_EQ] = ACTIONS(619), + [anon_sym_PIPE_EQ] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_DASH_GT] = ACTIONS(619), + [sym_comment] = ACTIONS(81), }, - [160] = { - [sym_identifier] = ACTIONS(833), - [sym_comment] = ACTIONS(85), + [144] = { + [sym_identifier] = ACTIONS(755), + [sym_comment] = ACTIONS(81), }, - [161] = { - [anon_sym_COMMA] = ACTIONS(835), - [anon_sym_RPAREN] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(835), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_LPAREN2] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_RBRACK] = ACTIONS(835), - [anon_sym_EQ] = ACTIONS(837), - [anon_sym_COLON] = ACTIONS(835), - [anon_sym_QMARK] = ACTIONS(835), - [anon_sym_STAR_EQ] = ACTIONS(835), - [anon_sym_SLASH_EQ] = ACTIONS(835), - [anon_sym_PERCENT_EQ] = ACTIONS(835), - [anon_sym_PLUS_EQ] = ACTIONS(835), - [anon_sym_DASH_EQ] = ACTIONS(835), - [anon_sym_LT_LT_EQ] = ACTIONS(835), - [anon_sym_GT_GT_EQ] = ACTIONS(835), - [anon_sym_AMP_EQ] = ACTIONS(835), - [anon_sym_CARET_EQ] = ACTIONS(835), - [anon_sym_PIPE_EQ] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_PIPE_PIPE] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(837), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_EQ_EQ] = ACTIONS(835), - [anon_sym_BANG_EQ] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(837), - [anon_sym_LT_EQ] = ACTIONS(835), - [anon_sym_GT_EQ] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(837), - [anon_sym_GT_GT] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(837), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(837), - [anon_sym_PERCENT] = ACTIONS(837), - [anon_sym_DASH_DASH] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DASH_GT] = ACTIONS(835), - [sym_comment] = ACTIONS(85), + [145] = { + [anon_sym_COMMA] = ACTIONS(757), + [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_RBRACE] = ACTIONS(757), + [anon_sym_LPAREN2] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(757), + [anon_sym_RBRACK] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(759), + [anon_sym_COLON] = ACTIONS(757), + [anon_sym_QMARK] = ACTIONS(757), + [anon_sym_STAR_EQ] = ACTIONS(757), + [anon_sym_SLASH_EQ] = ACTIONS(757), + [anon_sym_PERCENT_EQ] = ACTIONS(757), + [anon_sym_PLUS_EQ] = ACTIONS(757), + [anon_sym_DASH_EQ] = ACTIONS(757), + [anon_sym_LT_LT_EQ] = ACTIONS(757), + [anon_sym_GT_GT_EQ] = ACTIONS(757), + [anon_sym_AMP_EQ] = ACTIONS(757), + [anon_sym_CARET_EQ] = ACTIONS(757), + [anon_sym_PIPE_EQ] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_PIPE_PIPE] = ACTIONS(757), + [anon_sym_AMP_AMP] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_CARET] = ACTIONS(759), + [anon_sym_EQ_EQ] = ACTIONS(757), + [anon_sym_BANG_EQ] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(757), + [anon_sym_GT_EQ] = ACTIONS(757), + [anon_sym_LT_LT] = ACTIONS(759), + [anon_sym_GT_GT] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_PERCENT] = ACTIONS(759), + [anon_sym_DASH_DASH] = ACTIONS(757), + [anon_sym_PLUS_PLUS] = ACTIONS(757), + [anon_sym_DOT] = ACTIONS(757), + [anon_sym_DASH_GT] = ACTIONS(757), + [sym_comment] = ACTIONS(81), }, - [162] = { - [sym_string_literal] = STATE(382), - [aux_sym_concatenated_string_repeat1] = STATE(382), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_LPAREN2] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_STAR_EQ] = ACTIONS(839), - [anon_sym_SLASH_EQ] = ACTIONS(839), - [anon_sym_PERCENT_EQ] = ACTIONS(839), - [anon_sym_PLUS_EQ] = ACTIONS(839), - [anon_sym_DASH_EQ] = ACTIONS(839), - [anon_sym_LT_LT_EQ] = ACTIONS(839), - [anon_sym_GT_GT_EQ] = ACTIONS(839), - [anon_sym_AMP_EQ] = ACTIONS(839), - [anon_sym_CARET_EQ] = ACTIONS(839), - [anon_sym_PIPE_EQ] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(841), - [anon_sym_PIPE_PIPE] = ACTIONS(839), - [anon_sym_AMP_AMP] = ACTIONS(839), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(839), - [anon_sym_BANG_EQ] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_LT_EQ] = ACTIONS(839), - [anon_sym_GT_EQ] = ACTIONS(839), - [anon_sym_LT_LT] = ACTIONS(841), - [anon_sym_GT_GT] = ACTIONS(841), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_PERCENT] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(839), - [anon_sym_PLUS_PLUS] = ACTIONS(839), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_DASH_GT] = ACTIONS(839), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_comment] = ACTIONS(85), + [146] = { + [sym_string_literal] = STATE(344), + [aux_sym_concatenated_string_repeat1] = STATE(344), + [anon_sym_COMMA] = ACTIONS(761), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_LPAREN2] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_STAR_EQ] = ACTIONS(761), + [anon_sym_SLASH_EQ] = ACTIONS(761), + [anon_sym_PERCENT_EQ] = ACTIONS(761), + [anon_sym_PLUS_EQ] = ACTIONS(761), + [anon_sym_DASH_EQ] = ACTIONS(761), + [anon_sym_LT_LT_EQ] = ACTIONS(761), + [anon_sym_GT_GT_EQ] = ACTIONS(761), + [anon_sym_AMP_EQ] = ACTIONS(761), + [anon_sym_CARET_EQ] = ACTIONS(761), + [anon_sym_PIPE_EQ] = ACTIONS(761), + [anon_sym_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(761), + [anon_sym_AMP_AMP] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_CARET] = ACTIONS(763), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_LT_LT] = ACTIONS(763), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_PERCENT] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(761), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_comment] = ACTIONS(81), }, - [163] = { - [sym_preproc_include] = STATE(163), - [sym_preproc_def] = STATE(163), - [sym_preproc_function_def] = STATE(163), - [sym_preproc_call] = STATE(163), - [sym_preproc_if] = STATE(163), - [sym_preproc_ifdef] = STATE(163), - [sym_function_definition] = STATE(163), - [sym_declaration] = STATE(163), - [sym_type_definition] = STATE(163), - [sym__declaration_specifiers] = STATE(37), - [sym_linkage_specification] = STATE(163), - [sym_compound_statement] = STATE(163), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(163), - [sym_expression_statement] = STATE(163), - [sym_if_statement] = STATE(163), - [sym_switch_statement] = STATE(163), - [sym_case_statement] = STATE(163), - [sym_while_statement] = STATE(163), - [sym_do_statement] = STATE(163), - [sym_for_statement] = STATE(163), - [sym_return_statement] = STATE(163), - [sym_break_statement] = STATE(163), - [sym_continue_statement] = STATE(163), - [sym_goto_statement] = STATE(163), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(163), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(163), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [ts_builtin_sym_end] = ACTIONS(843), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(845), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(848), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(851), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(854), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(854), - [sym_preproc_directive] = ACTIONS(857), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_typedef] = ACTIONS(863), - [anon_sym_extern] = ACTIONS(866), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_LPAREN2] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(875), - [anon_sym_static] = ACTIONS(878), - [anon_sym_auto] = ACTIONS(878), - [anon_sym_register] = ACTIONS(878), - [anon_sym_inline] = ACTIONS(878), - [anon_sym_const] = ACTIONS(881), - [anon_sym_restrict] = ACTIONS(881), - [anon_sym_volatile] = ACTIONS(881), - [anon_sym__Atomic] = ACTIONS(881), - [anon_sym_unsigned] = ACTIONS(884), - [anon_sym_long] = ACTIONS(884), - [anon_sym_short] = ACTIONS(884), - [sym_primitive_type] = ACTIONS(887), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(893), - [anon_sym_union] = ACTIONS(896), - [anon_sym_if] = ACTIONS(899), - [anon_sym_switch] = ACTIONS(902), - [anon_sym_case] = ACTIONS(905), - [anon_sym_default] = ACTIONS(908), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(917), - [anon_sym_return] = ACTIONS(920), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_goto] = ACTIONS(929), - [anon_sym_AMP] = ACTIONS(875), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_sizeof] = ACTIONS(944), - [sym_number_literal] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), - [sym_identifier] = ACTIONS(959), - [sym_comment] = ACTIONS(85), + [147] = { + [sym_preproc_include] = STATE(147), + [sym_preproc_def] = STATE(147), + [sym_preproc_function_def] = STATE(147), + [sym_preproc_call] = STATE(147), + [sym_preproc_if] = STATE(147), + [sym_preproc_ifdef] = STATE(147), + [sym_function_definition] = STATE(147), + [sym_declaration] = STATE(147), + [sym_type_definition] = STATE(147), + [sym__declaration_specifiers] = STATE(35), + [sym_linkage_specification] = STATE(147), + [sym_compound_statement] = STATE(147), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(147), + [sym_expression_statement] = STATE(147), + [sym_if_statement] = STATE(147), + [sym_switch_statement] = STATE(147), + [sym_while_statement] = STATE(147), + [sym_do_statement] = STATE(147), + [sym_for_statement] = STATE(147), + [sym_return_statement] = STATE(147), + [sym_break_statement] = STATE(147), + [sym_continue_statement] = STATE(147), + [sym_goto_statement] = STATE(147), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(147), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(147), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [ts_builtin_sym_end] = ACTIONS(765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(767), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(770), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(776), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(776), + [sym_preproc_directive] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_typedef] = ACTIONS(785), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(791), + [anon_sym_LPAREN2] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_static] = ACTIONS(800), + [anon_sym_auto] = ACTIONS(800), + [anon_sym_register] = ACTIONS(800), + [anon_sym_inline] = ACTIONS(800), + [anon_sym_const] = ACTIONS(803), + [anon_sym_restrict] = ACTIONS(803), + [anon_sym_volatile] = ACTIONS(803), + [anon_sym__Atomic] = ACTIONS(803), + [anon_sym_unsigned] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [sym_primitive_type] = ACTIONS(809), + [anon_sym_enum] = ACTIONS(812), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_union] = ACTIONS(818), + [anon_sym_if] = ACTIONS(821), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_while] = ACTIONS(827), + [anon_sym_do] = ACTIONS(830), + [anon_sym_for] = ACTIONS(833), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(839), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_goto] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(797), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_sizeof] = ACTIONS(860), + [sym_number_literal] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(869), + [sym_true] = ACTIONS(872), + [sym_false] = ACTIONS(872), + [sym_null] = ACTIONS(872), + [sym_identifier] = ACTIONS(875), + [sym_comment] = ACTIONS(81), }, - [164] = { - [sym_storage_class_specifier] = STATE(383), - [sym_type_qualifier] = STATE(383), - [aux_sym__declaration_specifiers_repeat1] = STATE(383), - [anon_sym_SEMI] = ACTIONS(749), + [148] = { + [sym_storage_class_specifier] = STATE(345), + [sym_type_qualifier] = STATE(345), + [aux_sym__declaration_specifiers_repeat1] = STATE(345), + [anon_sym_SEMI] = ACTIONS(657), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(657), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -11306,376 +10732,369 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(751), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(659), + [sym_comment] = ACTIONS(81), }, - [165] = { - [sym_storage_class_specifier] = STATE(165), - [sym_type_qualifier] = STATE(165), - [aux_sym__declaration_specifiers_repeat1] = STATE(165), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(965), - [anon_sym_restrict] = ACTIONS(965), - [anon_sym_volatile] = ACTIONS(965), - [anon_sym__Atomic] = ACTIONS(965), - [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), - [sym_identifier] = ACTIONS(968), - [sym_comment] = ACTIONS(85), + [149] = { + [sym_storage_class_specifier] = STATE(149), + [sym_type_qualifier] = STATE(149), + [aux_sym__declaration_specifiers_repeat1] = STATE(149), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_static] = ACTIONS(878), + [anon_sym_auto] = ACTIONS(878), + [anon_sym_register] = ACTIONS(878), + [anon_sym_inline] = ACTIONS(878), + [anon_sym_const] = ACTIONS(881), + [anon_sym_restrict] = ACTIONS(881), + [anon_sym_volatile] = ACTIONS(881), + [anon_sym__Atomic] = ACTIONS(881), + [anon_sym_unsigned] = ACTIONS(884), + [anon_sym_long] = ACTIONS(884), + [anon_sym_short] = ACTIONS(884), + [sym_primitive_type] = ACTIONS(884), + [anon_sym_enum] = ACTIONS(884), + [anon_sym_struct] = ACTIONS(884), + [anon_sym_union] = ACTIONS(884), + [sym_identifier] = ACTIONS(884), + [sym_comment] = ACTIONS(81), }, - [166] = { - [anon_sym_COMMA] = ACTIONS(970), - [anon_sym_RPAREN] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_extern] = ACTIONS(972), - [anon_sym_LPAREN2] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(972), - [anon_sym_auto] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_inline] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_restrict] = ACTIONS(972), - [anon_sym_volatile] = ACTIONS(972), - [anon_sym__Atomic] = ACTIONS(972), - [anon_sym_COLON] = ACTIONS(970), - [sym_identifier] = ACTIONS(972), - [sym_comment] = ACTIONS(85), + [150] = { + [anon_sym_COMMA] = ACTIONS(886), + [anon_sym_RPAREN] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_extern] = ACTIONS(888), + [anon_sym_LPAREN2] = ACTIONS(886), + [anon_sym_STAR] = ACTIONS(886), + [anon_sym_LBRACK] = ACTIONS(886), + [anon_sym_static] = ACTIONS(888), + [anon_sym_auto] = ACTIONS(888), + [anon_sym_register] = ACTIONS(888), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_const] = ACTIONS(888), + [anon_sym_restrict] = ACTIONS(888), + [anon_sym_volatile] = ACTIONS(888), + [anon_sym__Atomic] = ACTIONS(888), + [anon_sym_COLON] = ACTIONS(886), + [sym_identifier] = ACTIONS(888), + [sym_comment] = ACTIONS(81), }, - [167] = { - [anon_sym_COMMA] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_LPAREN2] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_static] = ACTIONS(976), - [anon_sym_auto] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_inline] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_restrict] = ACTIONS(976), - [anon_sym_volatile] = ACTIONS(976), - [anon_sym__Atomic] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(974), - [sym_identifier] = ACTIONS(976), - [sym_comment] = ACTIONS(85), + [151] = { + [anon_sym_COMMA] = ACTIONS(890), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(892), + [anon_sym_LPAREN2] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(890), + [anon_sym_static] = ACTIONS(892), + [anon_sym_auto] = ACTIONS(892), + [anon_sym_register] = ACTIONS(892), + [anon_sym_inline] = ACTIONS(892), + [anon_sym_const] = ACTIONS(892), + [anon_sym_restrict] = ACTIONS(892), + [anon_sym_volatile] = ACTIONS(892), + [anon_sym__Atomic] = ACTIONS(892), + [anon_sym_COLON] = ACTIONS(890), + [sym_identifier] = ACTIONS(892), + [sym_comment] = ACTIONS(81), }, - [168] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(168), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(982), - [anon_sym_long] = ACTIONS(982), - [anon_sym_short] = ACTIONS(982), - [sym_primitive_type] = ACTIONS(980), - [sym_identifier] = ACTIONS(980), - [sym_comment] = ACTIONS(85), + [152] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(152), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(896), + [anon_sym_LPAREN2] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_static] = ACTIONS(896), + [anon_sym_auto] = ACTIONS(896), + [anon_sym_register] = ACTIONS(896), + [anon_sym_inline] = ACTIONS(896), + [anon_sym_const] = ACTIONS(896), + [anon_sym_restrict] = ACTIONS(896), + [anon_sym_volatile] = ACTIONS(896), + [anon_sym__Atomic] = ACTIONS(896), + [anon_sym_unsigned] = ACTIONS(898), + [anon_sym_long] = ACTIONS(898), + [anon_sym_short] = ACTIONS(898), + [sym_primitive_type] = ACTIONS(896), + [sym_identifier] = ACTIONS(896), + [sym_comment] = ACTIONS(81), }, - [169] = { - [ts_builtin_sym_end] = ACTIONS(721), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(723), - [sym_preproc_directive] = ACTIONS(723), - [anon_sym_SEMI] = ACTIONS(721), - [anon_sym_typedef] = ACTIONS(723), - [anon_sym_extern] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_RBRACE] = ACTIONS(721), - [anon_sym_LPAREN2] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(721), - [anon_sym_static] = ACTIONS(723), - [anon_sym_auto] = ACTIONS(723), - [anon_sym_register] = ACTIONS(723), - [anon_sym_inline] = ACTIONS(723), - [anon_sym_const] = ACTIONS(723), - [anon_sym_restrict] = ACTIONS(723), - [anon_sym_volatile] = ACTIONS(723), - [anon_sym__Atomic] = ACTIONS(723), - [anon_sym_unsigned] = ACTIONS(723), - [anon_sym_long] = ACTIONS(723), - [anon_sym_short] = ACTIONS(723), - [sym_primitive_type] = ACTIONS(723), - [anon_sym_enum] = ACTIONS(723), - [anon_sym_struct] = ACTIONS(723), - [anon_sym_union] = ACTIONS(723), - [anon_sym_if] = ACTIONS(723), - [anon_sym_switch] = ACTIONS(723), - [anon_sym_case] = ACTIONS(723), - [anon_sym_default] = ACTIONS(723), - [anon_sym_while] = ACTIONS(723), - [anon_sym_do] = ACTIONS(723), - [anon_sym_for] = ACTIONS(723), - [anon_sym_return] = ACTIONS(723), - [anon_sym_break] = ACTIONS(723), - [anon_sym_continue] = ACTIONS(723), - [anon_sym_goto] = ACTIONS(723), - [anon_sym_AMP] = ACTIONS(721), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_DASH_DASH] = ACTIONS(721), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_sizeof] = ACTIONS(723), - [sym_number_literal] = ACTIONS(721), - [anon_sym_SQUOTE] = ACTIONS(721), - [anon_sym_DQUOTE] = ACTIONS(721), - [sym_true] = ACTIONS(723), - [sym_false] = ACTIONS(723), - [sym_null] = ACTIONS(723), - [sym_identifier] = ACTIONS(723), - [sym_comment] = ACTIONS(85), + [153] = { + [ts_builtin_sym_end] = ACTIONS(629), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(631), + [sym_preproc_directive] = ACTIONS(631), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_typedef] = ACTIONS(631), + [anon_sym_extern] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LPAREN2] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(629), + [anon_sym_static] = ACTIONS(631), + [anon_sym_auto] = ACTIONS(631), + [anon_sym_register] = ACTIONS(631), + [anon_sym_inline] = ACTIONS(631), + [anon_sym_const] = ACTIONS(631), + [anon_sym_restrict] = ACTIONS(631), + [anon_sym_volatile] = ACTIONS(631), + [anon_sym__Atomic] = ACTIONS(631), + [anon_sym_unsigned] = ACTIONS(631), + [anon_sym_long] = ACTIONS(631), + [anon_sym_short] = ACTIONS(631), + [sym_primitive_type] = ACTIONS(631), + [anon_sym_enum] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(631), + [anon_sym_union] = ACTIONS(631), + [anon_sym_if] = ACTIONS(631), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(631), + [anon_sym_for] = ACTIONS(631), + [anon_sym_return] = ACTIONS(631), + [anon_sym_break] = ACTIONS(631), + [anon_sym_continue] = ACTIONS(631), + [anon_sym_goto] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_BANG] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DASH_DASH] = ACTIONS(629), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_sizeof] = ACTIONS(631), + [sym_number_literal] = ACTIONS(629), + [anon_sym_SQUOTE] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(629), + [sym_true] = ACTIONS(631), + [sym_false] = ACTIONS(631), + [sym_null] = ACTIONS(631), + [sym_identifier] = ACTIONS(631), + [sym_comment] = ACTIONS(81), }, - [170] = { - [aux_sym_string_literal_repeat1] = STATE(341), - [anon_sym_DQUOTE] = ACTIONS(985), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(727), - [sym_escape_sequence] = ACTIONS(727), - [sym_comment] = ACTIONS(95), + [154] = { + [aux_sym_string_literal_repeat1] = STATE(296), + [anon_sym_DQUOTE] = ACTIONS(901), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(635), + [sym_escape_sequence] = ACTIONS(635), + [sym_comment] = ACTIONS(91), }, - [171] = { - [ts_builtin_sym_end] = ACTIONS(987), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(989), - [sym_preproc_directive] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_typedef] = ACTIONS(989), - [anon_sym_extern] = ACTIONS(989), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_LPAREN2] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_static] = ACTIONS(989), - [anon_sym_auto] = ACTIONS(989), - [anon_sym_register] = ACTIONS(989), - [anon_sym_inline] = ACTIONS(989), - [anon_sym_const] = ACTIONS(989), - [anon_sym_restrict] = ACTIONS(989), - [anon_sym_volatile] = ACTIONS(989), - [anon_sym__Atomic] = ACTIONS(989), - [anon_sym_unsigned] = ACTIONS(989), - [anon_sym_long] = ACTIONS(989), - [anon_sym_short] = ACTIONS(989), - [sym_primitive_type] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(989), - [anon_sym_union] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_switch] = ACTIONS(989), - [anon_sym_case] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [anon_sym_do] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_goto] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(987), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_sizeof] = ACTIONS(989), - [sym_number_literal] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym_true] = ACTIONS(989), - [sym_false] = ACTIONS(989), - [sym_null] = ACTIONS(989), - [sym_identifier] = ACTIONS(989), - [sym_comment] = ACTIONS(85), + [155] = { + [ts_builtin_sym_end] = ACTIONS(903), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(905), + [sym_preproc_directive] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_typedef] = ACTIONS(905), + [anon_sym_extern] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_static] = ACTIONS(905), + [anon_sym_auto] = ACTIONS(905), + [anon_sym_register] = ACTIONS(905), + [anon_sym_inline] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_restrict] = ACTIONS(905), + [anon_sym_volatile] = ACTIONS(905), + [anon_sym__Atomic] = ACTIONS(905), + [anon_sym_unsigned] = ACTIONS(905), + [anon_sym_long] = ACTIONS(905), + [anon_sym_short] = ACTIONS(905), + [sym_primitive_type] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [anon_sym_struct] = ACTIONS(905), + [anon_sym_union] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_switch] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_goto] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_TILDE] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [sym_number_literal] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym_true] = ACTIONS(905), + [sym_false] = ACTIONS(905), + [sym_null] = ACTIONS(905), + [sym_identifier] = ACTIONS(905), + [sym_comment] = ACTIONS(81), }, - [172] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_RPAREN] = ACTIONS(993), - [sym_identifier] = ACTIONS(991), - [sym_comment] = ACTIONS(85), + [156] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(909), + [sym_identifier] = ACTIONS(907), + [sym_comment] = ACTIONS(81), }, - [173] = { - [anon_sym_LF] = ACTIONS(995), - [sym_comment] = ACTIONS(95), + [157] = { + [anon_sym_LF] = ACTIONS(911), + [sym_comment] = ACTIONS(91), }, - [174] = { - [anon_sym_LF] = ACTIONS(997), - [sym_preproc_arg] = ACTIONS(999), - [sym_comment] = ACTIONS(95), + [158] = { + [anon_sym_LF] = ACTIONS(913), + [sym_preproc_arg] = ACTIONS(915), + [sym_comment] = ACTIONS(91), }, - [175] = { - [sym_string_literal] = STATE(391), - [anon_sym_DQUOTE] = ACTIONS(1001), - [sym_system_lib_string] = ACTIONS(1003), - [sym_comment] = ACTIONS(85), + [159] = { + [sym_string_literal] = STATE(353), + [anon_sym_DQUOTE] = ACTIONS(917), + [sym_system_lib_string] = ACTIONS(919), + [sym_comment] = ACTIONS(81), }, - [176] = { - [sym_identifier] = ACTIONS(1005), - [sym_comment] = ACTIONS(85), + [160] = { + [sym_identifier] = ACTIONS(921), + [sym_comment] = ACTIONS(81), }, - [177] = { - [sym_preproc_arg] = ACTIONS(1007), - [sym_comment] = ACTIONS(95), + [161] = { + [sym_preproc_arg] = ACTIONS(923), + [sym_comment] = ACTIONS(91), }, - [178] = { - [ts_builtin_sym_end] = ACTIONS(1009), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1011), - [sym_preproc_directive] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_typedef] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_LPAREN2] = ACTIONS(1009), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1011), - [anon_sym_auto] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_inline] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [anon_sym_restrict] = ACTIONS(1011), - [anon_sym_volatile] = ACTIONS(1011), - [anon_sym__Atomic] = ACTIONS(1011), - [anon_sym_unsigned] = ACTIONS(1011), - [anon_sym_long] = ACTIONS(1011), - [anon_sym_short] = ACTIONS(1011), - [sym_primitive_type] = ACTIONS(1011), - [anon_sym_enum] = ACTIONS(1011), - [anon_sym_struct] = ACTIONS(1011), - [anon_sym_union] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_switch] = ACTIONS(1011), - [anon_sym_case] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_goto] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_TILDE] = ACTIONS(1009), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_sizeof] = ACTIONS(1011), - [sym_number_literal] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1009), - [sym_true] = ACTIONS(1011), - [sym_false] = ACTIONS(1011), - [sym_null] = ACTIONS(1011), - [sym_identifier] = ACTIONS(1011), - [sym_comment] = ACTIONS(85), + [162] = { + [ts_builtin_sym_end] = ACTIONS(925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(927), + [sym_preproc_directive] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_typedef] = ACTIONS(927), + [anon_sym_extern] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_static] = ACTIONS(927), + [anon_sym_auto] = ACTIONS(927), + [anon_sym_register] = ACTIONS(927), + [anon_sym_inline] = ACTIONS(927), + [anon_sym_const] = ACTIONS(927), + [anon_sym_restrict] = ACTIONS(927), + [anon_sym_volatile] = ACTIONS(927), + [anon_sym__Atomic] = ACTIONS(927), + [anon_sym_unsigned] = ACTIONS(927), + [anon_sym_long] = ACTIONS(927), + [anon_sym_short] = ACTIONS(927), + [sym_primitive_type] = ACTIONS(927), + [anon_sym_enum] = ACTIONS(927), + [anon_sym_struct] = ACTIONS(927), + [anon_sym_union] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_switch] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_break] = ACTIONS(927), + [anon_sym_continue] = ACTIONS(927), + [anon_sym_goto] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_DASH_DASH] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_sizeof] = ACTIONS(927), + [sym_number_literal] = ACTIONS(925), + [anon_sym_SQUOTE] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym_true] = ACTIONS(927), + [sym_false] = ACTIONS(927), + [sym_null] = ACTIONS(927), + [sym_identifier] = ACTIONS(927), + [sym_comment] = ACTIONS(81), }, - [179] = { - [sym_identifier] = ACTIONS(1013), - [sym_comment] = ACTIONS(85), + [163] = { + [sym_identifier] = ACTIONS(929), + [sym_comment] = ACTIONS(81), }, - [180] = { - [sym_preproc_include] = STATE(419), - [sym_preproc_def] = STATE(419), - [sym_preproc_function_def] = STATE(419), - [sym_preproc_call] = STATE(419), - [sym_preproc_if] = STATE(419), - [sym_preproc_ifdef] = STATE(419), - [sym_function_definition] = STATE(419), - [sym_declaration] = STATE(419), - [sym_type_definition] = STATE(419), - [sym__declaration_specifiers] = STATE(416), - [sym_linkage_specification] = STATE(419), - [sym_compound_statement] = STATE(419), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(419), - [sym_expression_statement] = STATE(419), - [sym_if_statement] = STATE(419), - [sym_switch_statement] = STATE(419), - [sym_case_statement] = STATE(419), - [sym_while_statement] = STATE(419), - [sym_do_statement] = STATE(419), - [sym_for_statement] = STATE(419), - [sym_return_statement] = STATE(419), - [sym_break_statement] = STATE(419), - [sym_continue_statement] = STATE(419), - [sym_goto_statement] = STATE(419), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(419), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(419), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1015), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1017), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1019), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1021), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1023), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1023), - [sym_preproc_directive] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_typedef] = ACTIONS(1029), - [anon_sym_extern] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1033), + [164] = { + [sym_preproc_include] = STATE(379), + [sym_preproc_def] = STATE(379), + [sym_preproc_function_def] = STATE(379), + [sym_preproc_call] = STATE(379), + [sym_preproc_if] = STATE(379), + [sym_preproc_ifdef] = STATE(379), + [sym_function_definition] = STATE(379), + [sym_declaration] = STATE(379), + [sym_type_definition] = STATE(379), + [sym__declaration_specifiers] = STATE(376), + [sym_linkage_specification] = STATE(379), + [sym_compound_statement] = STATE(379), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(379), + [sym_expression_statement] = STATE(379), + [sym_if_statement] = STATE(379), + [sym_switch_statement] = STATE(379), + [sym_while_statement] = STATE(379), + [sym_do_statement] = STATE(379), + [sym_for_statement] = STATE(379), + [sym_return_statement] = STATE(379), + [sym_break_statement] = STATE(379), + [sym_continue_statement] = STATE(379), + [sym_goto_statement] = STATE(379), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [sym__empty_declaration] = STATE(379), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(379), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(931), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(933), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(935), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(937), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(939), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(939), + [sym_preproc_directive] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_typedef] = ACTIONS(945), + [anon_sym_extern] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -11693,216 +11112,211 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(1061), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(973), + [sym_comment] = ACTIONS(81), }, - [181] = { - [sym_preproc_arg] = ACTIONS(1063), - [sym_comment] = ACTIONS(95), + [165] = { + [sym_preproc_arg] = ACTIONS(975), + [sym_comment] = ACTIONS(91), }, - [182] = { - [anon_sym_LF] = ACTIONS(1065), - [sym_preproc_arg] = ACTIONS(1067), - [sym_comment] = ACTIONS(95), + [166] = { + [anon_sym_LF] = ACTIONS(977), + [sym_preproc_arg] = ACTIONS(979), + [sym_comment] = ACTIONS(91), }, - [183] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(105), - [sym_preproc_directive] = ACTIONS(105), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_typedef] = ACTIONS(105), - [anon_sym_extern] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_LPAREN2] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_static] = ACTIONS(105), - [anon_sym_auto] = ACTIONS(105), - [anon_sym_register] = ACTIONS(105), - [anon_sym_inline] = ACTIONS(105), - [anon_sym_const] = ACTIONS(105), - [anon_sym_restrict] = ACTIONS(105), - [anon_sym_volatile] = ACTIONS(105), - [anon_sym__Atomic] = ACTIONS(105), - [anon_sym_unsigned] = ACTIONS(105), - [anon_sym_long] = ACTIONS(105), - [anon_sym_short] = ACTIONS(105), - [sym_primitive_type] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(105), - [anon_sym_struct] = ACTIONS(105), - [anon_sym_union] = ACTIONS(105), - [anon_sym_if] = ACTIONS(105), - [anon_sym_else] = ACTIONS(105), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_case] = ACTIONS(105), - [anon_sym_default] = ACTIONS(105), - [anon_sym_while] = ACTIONS(105), - [anon_sym_do] = ACTIONS(105), - [anon_sym_for] = ACTIONS(105), - [anon_sym_return] = ACTIONS(105), - [anon_sym_break] = ACTIONS(105), - [anon_sym_continue] = ACTIONS(105), - [anon_sym_goto] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym_number_literal] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_identifier] = ACTIONS(105), - [sym_comment] = ACTIONS(85), + [167] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(101), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_static] = ACTIONS(101), + [anon_sym_auto] = ACTIONS(101), + [anon_sym_register] = ACTIONS(101), + [anon_sym_inline] = ACTIONS(101), + [anon_sym_const] = ACTIONS(101), + [anon_sym_restrict] = ACTIONS(101), + [anon_sym_volatile] = ACTIONS(101), + [anon_sym__Atomic] = ACTIONS(101), + [anon_sym_unsigned] = ACTIONS(101), + [anon_sym_long] = ACTIONS(101), + [anon_sym_short] = ACTIONS(101), + [sym_primitive_type] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(101), + [anon_sym_struct] = ACTIONS(101), + [anon_sym_union] = ACTIONS(101), + [anon_sym_if] = ACTIONS(101), + [anon_sym_else] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(101), + [anon_sym_while] = ACTIONS(101), + [anon_sym_do] = ACTIONS(101), + [anon_sym_for] = ACTIONS(101), + [anon_sym_return] = ACTIONS(101), + [anon_sym_break] = ACTIONS(101), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(101), + [sym_false] = ACTIONS(101), + [sym_null] = ACTIONS(101), + [sym_identifier] = ACTIONS(101), + [sym_comment] = ACTIONS(81), }, - [184] = { - [sym_type_qualifier] = STATE(424), - [sym__type_specifier] = STATE(423), - [sym_sized_type_specifier] = STATE(423), - [sym_enum_specifier] = STATE(423), - [sym_struct_specifier] = STATE(423), - [sym_union_specifier] = STATE(423), - [sym_macro_type_specifier] = STATE(423), - [aux_sym_type_definition_repeat1] = STATE(424), - [aux_sym_sized_type_specifier_repeat1] = STATE(55), + [168] = { + [sym_type_qualifier] = STATE(384), + [sym__type_specifier] = STATE(383), + [sym_sized_type_specifier] = STATE(383), + [sym_enum_specifier] = STATE(383), + [sym_struct_specifier] = STATE(383), + [sym_union_specifier] = STATE(383), + [sym_macro_type_specifier] = STATE(383), + [aux_sym_type_definition_repeat1] = STATE(384), + [aux_sym_sized_type_specifier_repeat1] = STATE(53), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(107), - [anon_sym_long] = ACTIONS(107), - [anon_sym_short] = ACTIONS(107), - [sym_primitive_type] = ACTIONS(1069), + [anon_sym_unsigned] = ACTIONS(103), + [anon_sym_long] = ACTIONS(103), + [anon_sym_short] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(981), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [185] = { - [sym_string_literal] = STATE(425), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_static] = ACTIONS(113), - [anon_sym_auto] = ACTIONS(113), - [anon_sym_register] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_const] = ACTIONS(113), - [anon_sym_restrict] = ACTIONS(113), - [anon_sym_volatile] = ACTIONS(113), - [anon_sym__Atomic] = ACTIONS(113), - [anon_sym_unsigned] = ACTIONS(113), - [anon_sym_long] = ACTIONS(113), - [anon_sym_short] = ACTIONS(113), - [sym_primitive_type] = ACTIONS(113), - [anon_sym_enum] = ACTIONS(113), - [anon_sym_struct] = ACTIONS(113), - [anon_sym_union] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_identifier] = ACTIONS(113), - [sym_comment] = ACTIONS(85), + [169] = { + [sym_string_literal] = STATE(385), + [anon_sym_extern] = ACTIONS(109), + [anon_sym_static] = ACTIONS(109), + [anon_sym_auto] = ACTIONS(109), + [anon_sym_register] = ACTIONS(109), + [anon_sym_inline] = ACTIONS(109), + [anon_sym_const] = ACTIONS(109), + [anon_sym_restrict] = ACTIONS(109), + [anon_sym_volatile] = ACTIONS(109), + [anon_sym__Atomic] = ACTIONS(109), + [anon_sym_unsigned] = ACTIONS(109), + [anon_sym_long] = ACTIONS(109), + [anon_sym_short] = ACTIONS(109), + [sym_primitive_type] = ACTIONS(109), + [anon_sym_enum] = ACTIONS(109), + [anon_sym_struct] = ACTIONS(109), + [anon_sym_union] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_identifier] = ACTIONS(109), + [sym_comment] = ACTIONS(81), }, - [186] = { - [sym_preproc_include] = STATE(427), - [sym_preproc_def] = STATE(427), - [sym_preproc_function_def] = STATE(427), - [sym_preproc_call] = STATE(427), - [sym_preproc_if_in_compound_statement] = STATE(427), - [sym_preproc_ifdef_in_compound_statement] = STATE(427), - [sym_declaration] = STATE(427), - [sym_type_definition] = STATE(427), - [sym__declaration_specifiers] = STATE(67), - [sym_compound_statement] = STATE(427), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(427), - [sym_expression_statement] = STATE(427), - [sym_if_statement] = STATE(427), - [sym_switch_statement] = STATE(427), - [sym_case_statement] = STATE(427), - [sym_while_statement] = STATE(427), - [sym_do_statement] = STATE(427), - [sym_for_statement] = STATE(427), - [sym_return_statement] = STATE(427), - [sym_break_statement] = STATE(427), - [sym_continue_statement] = STATE(427), - [sym_goto_statement] = STATE(427), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(427), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(427), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), + [170] = { + [sym_preproc_include] = STATE(387), + [sym_preproc_def] = STATE(387), + [sym_preproc_function_def] = STATE(387), + [sym_preproc_call] = STATE(387), + [sym_preproc_if_in_compound_statement] = STATE(387), + [sym_preproc_ifdef_in_compound_statement] = STATE(387), + [sym_declaration] = STATE(387), + [sym_type_definition] = STATE(387), + [sym__declaration_specifiers] = STATE(62), + [sym_compound_statement] = STATE(387), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(387), + [sym_expression_statement] = STATE(387), + [sym_if_statement] = STATE(387), + [sym_switch_statement] = STATE(387), + [sym_while_statement] = STATE(387), + [sym_do_statement] = STATE(387), + [sym_for_statement] = STATE(387), + [sym_return_statement] = STATE(387), + [sym_break_statement] = STATE(387), + [sym_continue_statement] = STATE(387), + [sym_goto_statement] = STATE(387), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(387), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(387), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(117), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(117), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(111), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(113), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(113), [sym_preproc_directive] = ACTIONS(15), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1071), + [anon_sym_RBRACE] = ACTIONS(983), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -11920,404 +11334,354 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(133), - [sym_comment] = ACTIONS(85), - }, - [187] = { - [sym_parenthesized_expression] = STATE(428), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), - }, - [188] = { - [sym_parenthesized_expression] = STATE(429), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(123), + [sym_comment] = ACTIONS(81), }, - [189] = { - [sym__expression] = STATE(430), - [sym_conditional_expression] = STATE(430), - [sym_assignment_expression] = STATE(430), - [sym_pointer_expression] = STATE(430), - [sym_logical_expression] = STATE(430), - [sym_bitwise_expression] = STATE(430), - [sym_equality_expression] = STATE(430), - [sym_relational_expression] = STATE(430), - [sym_shift_expression] = STATE(430), - [sym_math_expression] = STATE(430), - [sym_cast_expression] = STATE(430), - [sym_sizeof_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_call_expression] = STATE(430), - [sym_field_expression] = STATE(430), - [sym_compound_literal_expression] = STATE(430), - [sym_parenthesized_expression] = STATE(430), - [sym_char_literal] = STATE(430), - [sym_concatenated_string] = STATE(430), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1073), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1075), - [sym_false] = ACTIONS(1075), - [sym_null] = ACTIONS(1075), - [sym_identifier] = ACTIONS(1075), - [sym_comment] = ACTIONS(85), + [171] = { + [sym_parenthesized_expression] = STATE(388), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [190] = { - [anon_sym_COLON] = ACTIONS(1077), - [sym_comment] = ACTIONS(85), + [172] = { + [sym_parenthesized_expression] = STATE(389), + [anon_sym_LPAREN2] = ACTIONS(171), + [sym_comment] = ACTIONS(81), }, - [191] = { - [sym_parenthesized_expression] = STATE(432), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [173] = { + [sym_parenthesized_expression] = STATE(390), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [192] = { - [sym_compound_statement] = STATE(433), - [sym_labeled_statement] = STATE(433), - [sym_expression_statement] = STATE(433), - [sym_if_statement] = STATE(433), - [sym_switch_statement] = STATE(433), - [sym_case_statement] = STATE(433), - [sym_while_statement] = STATE(433), - [sym_do_statement] = STATE(433), - [sym_for_statement] = STATE(433), - [sym_return_statement] = STATE(433), - [sym_break_statement] = STATE(433), - [sym_continue_statement] = STATE(433), - [sym_goto_statement] = STATE(433), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [174] = { + [sym_compound_statement] = STATE(391), + [sym_labeled_statement] = STATE(391), + [sym_expression_statement] = STATE(391), + [sym_if_statement] = STATE(391), + [sym_switch_statement] = STATE(391), + [sym_while_statement] = STATE(391), + [sym_do_statement] = STATE(391), + [sym_for_statement] = STATE(391), + [sym_return_statement] = STATE(391), + [sym_break_statement] = STATE(391), + [sym_continue_statement] = STATE(391), + [sym_goto_statement] = STATE(391), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(201), - [anon_sym_switch] = ACTIONS(203), - [anon_sym_case] = ACTIONS(205), - [anon_sym_default] = ACTIONS(207), - [anon_sym_while] = ACTIONS(209), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(213), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(173), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(215), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(181), + [sym_comment] = ACTIONS(81), }, - [193] = { - [anon_sym_LPAREN2] = ACTIONS(1079), - [sym_comment] = ACTIONS(85), + [175] = { + [anon_sym_LPAREN2] = ACTIONS(985), + [sym_comment] = ACTIONS(81), }, - [194] = { - [sym__expression] = STATE(436), - [sym_conditional_expression] = STATE(436), - [sym_assignment_expression] = STATE(436), - [sym_pointer_expression] = STATE(436), - [sym_logical_expression] = STATE(436), - [sym_bitwise_expression] = STATE(436), - [sym_equality_expression] = STATE(436), - [sym_relational_expression] = STATE(436), - [sym_shift_expression] = STATE(436), - [sym_math_expression] = STATE(436), - [sym_cast_expression] = STATE(436), - [sym_sizeof_expression] = STATE(436), - [sym_subscript_expression] = STATE(436), - [sym_call_expression] = STATE(436), - [sym_field_expression] = STATE(436), - [sym_compound_literal_expression] = STATE(436), - [sym_parenthesized_expression] = STATE(436), - [sym_char_literal] = STATE(436), - [sym_concatenated_string] = STATE(436), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(1081), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1083), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1085), - [sym_false] = ACTIONS(1085), - [sym_null] = ACTIONS(1085), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(85), + [176] = { + [sym__expression] = STATE(394), + [sym_conditional_expression] = STATE(394), + [sym_assignment_expression] = STATE(394), + [sym_pointer_expression] = STATE(394), + [sym_logical_expression] = STATE(394), + [sym_bitwise_expression] = STATE(394), + [sym_equality_expression] = STATE(394), + [sym_relational_expression] = STATE(394), + [sym_shift_expression] = STATE(394), + [sym_math_expression] = STATE(394), + [sym_cast_expression] = STATE(394), + [sym_sizeof_expression] = STATE(394), + [sym_subscript_expression] = STATE(394), + [sym_call_expression] = STATE(394), + [sym_field_expression] = STATE(394), + [sym_compound_literal_expression] = STATE(394), + [sym_parenthesized_expression] = STATE(394), + [sym_char_literal] = STATE(394), + [sym_concatenated_string] = STATE(394), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(989), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(991), + [sym_false] = ACTIONS(991), + [sym_null] = ACTIONS(991), + [sym_identifier] = ACTIONS(991), + [sym_comment] = ACTIONS(81), }, - [195] = { - [anon_sym_SEMI] = ACTIONS(1087), - [sym_comment] = ACTIONS(85), + [177] = { + [anon_sym_SEMI] = ACTIONS(993), + [sym_comment] = ACTIONS(81), }, - [196] = { - [anon_sym_SEMI] = ACTIONS(1089), - [sym_comment] = ACTIONS(85), + [178] = { + [anon_sym_SEMI] = ACTIONS(995), + [sym_comment] = ACTIONS(81), }, - [197] = { - [sym_identifier] = ACTIONS(1091), - [sym_comment] = ACTIONS(85), + [179] = { + [sym_identifier] = ACTIONS(997), + [sym_comment] = ACTIONS(81), }, - [198] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(1093), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), + [180] = { + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(239), + [anon_sym_extern] = ACTIONS(242), + [anon_sym_LPAREN2] = ACTIONS(244), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_static] = ACTIONS(242), + [anon_sym_auto] = ACTIONS(242), + [anon_sym_register] = ACTIONS(242), + [anon_sym_inline] = ACTIONS(242), + [anon_sym_const] = ACTIONS(242), + [anon_sym_restrict] = ACTIONS(242), + [anon_sym_volatile] = ACTIONS(242), + [anon_sym__Atomic] = ACTIONS(242), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_identifier] = ACTIONS(242), + [sym_comment] = ACTIONS(81), }, - [199] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1095), - [sym_comment] = ACTIONS(85), + [181] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1001), + [sym_comment] = ACTIONS(81), }, - [200] = { - [sym__declarator] = STATE(443), - [sym_pointer_declarator] = STATE(443), - [sym_function_declarator] = STATE(443), - [sym_array_declarator] = STATE(443), - [sym_init_declarator] = STATE(444), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [sym_identifier] = ACTIONS(1099), - [sym_comment] = ACTIONS(85), + [182] = { + [sym__declarator] = STATE(401), + [sym_pointer_declarator] = STATE(401), + [sym_function_declarator] = STATE(401), + [sym_array_declarator] = STATE(401), + [sym_init_declarator] = STATE(402), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(261), + [sym_identifier] = ACTIONS(1005), + [sym_comment] = ACTIONS(81), }, - [201] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_SEMI] = ACTIONS(1101), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_STAR_EQ] = ACTIONS(317), - [anon_sym_SLASH_EQ] = ACTIONS(317), - [anon_sym_PERCENT_EQ] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(317), - [anon_sym_DASH_EQ] = ACTIONS(317), - [anon_sym_LT_LT_EQ] = ACTIONS(317), - [anon_sym_GT_GT_EQ] = ACTIONS(317), - [anon_sym_AMP_EQ] = ACTIONS(317), - [anon_sym_CARET_EQ] = ACTIONS(317), - [anon_sym_PIPE_EQ] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(319), - [anon_sym_PIPE_PIPE] = ACTIONS(321), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [183] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(281), + [anon_sym_STAR_EQ] = ACTIONS(283), + [anon_sym_SLASH_EQ] = ACTIONS(283), + [anon_sym_PERCENT_EQ] = ACTIONS(283), + [anon_sym_PLUS_EQ] = ACTIONS(283), + [anon_sym_DASH_EQ] = ACTIONS(283), + [anon_sym_LT_LT_EQ] = ACTIONS(283), + [anon_sym_GT_GT_EQ] = ACTIONS(283), + [anon_sym_AMP_EQ] = ACTIONS(283), + [anon_sym_CARET_EQ] = ACTIONS(283), + [anon_sym_PIPE_EQ] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [202] = { - [anon_sym_SEMI] = ACTIONS(1101), - [sym_comment] = ACTIONS(85), + [184] = { + [anon_sym_SEMI] = ACTIONS(1007), + [sym_comment] = ACTIONS(81), }, - [203] = { - [sym_preproc_include] = STATE(447), - [sym_preproc_def] = STATE(447), - [sym_preproc_function_def] = STATE(447), - [sym_preproc_call] = STATE(447), - [sym_preproc_if] = STATE(447), - [sym_preproc_ifdef] = STATE(447), - [sym_preproc_else] = STATE(446), - [sym_preproc_elif] = STATE(446), - [sym_function_definition] = STATE(447), - [sym_declaration] = STATE(447), - [sym_type_definition] = STATE(447), - [sym__declaration_specifiers] = STATE(200), - [sym_linkage_specification] = STATE(447), - [sym_compound_statement] = STATE(447), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(447), - [sym_expression_statement] = STATE(447), - [sym_if_statement] = STATE(447), - [sym_switch_statement] = STATE(447), - [sym_case_statement] = STATE(447), - [sym_while_statement] = STATE(447), - [sym_do_statement] = STATE(447), - [sym_for_statement] = STATE(447), - [sym_return_statement] = STATE(447), - [sym_break_statement] = STATE(447), - [sym_continue_statement] = STATE(447), - [sym_goto_statement] = STATE(447), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(447), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(447), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1103), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(384), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [185] = { + [sym_preproc_include] = STATE(405), + [sym_preproc_def] = STATE(405), + [sym_preproc_function_def] = STATE(405), + [sym_preproc_call] = STATE(405), + [sym_preproc_if] = STATE(405), + [sym_preproc_ifdef] = STATE(405), + [sym_preproc_else] = STATE(404), + [sym_preproc_elif] = STATE(404), + [sym_function_definition] = STATE(405), + [sym_declaration] = STATE(405), + [sym_type_definition] = STATE(405), + [sym__declaration_specifiers] = STATE(182), + [sym_linkage_specification] = STATE(405), + [sym_compound_statement] = STATE(405), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(405), + [sym_expression_statement] = STATE(405), + [sym_if_statement] = STATE(405), + [sym_switch_statement] = STATE(405), + [sym_while_statement] = STATE(405), + [sym_do_statement] = STATE(405), + [sym_for_statement] = STATE(405), + [sym_return_statement] = STATE(405), + [sym_break_statement] = STATE(405), + [sym_continue_statement] = STATE(405), + [sym_goto_statement] = STATE(405), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(405), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(405), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1009), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(348), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(350), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -12335,169 +11699,164 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [204] = { - [ts_builtin_sym_end] = ACTIONS(1105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1107), - [sym_preproc_directive] = ACTIONS(1107), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_typedef] = ACTIONS(1107), - [anon_sym_extern] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_LPAREN2] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_static] = ACTIONS(1107), - [anon_sym_auto] = ACTIONS(1107), - [anon_sym_register] = ACTIONS(1107), - [anon_sym_inline] = ACTIONS(1107), - [anon_sym_const] = ACTIONS(1107), - [anon_sym_restrict] = ACTIONS(1107), - [anon_sym_volatile] = ACTIONS(1107), - [anon_sym__Atomic] = ACTIONS(1107), - [anon_sym_unsigned] = ACTIONS(1107), - [anon_sym_long] = ACTIONS(1107), - [anon_sym_short] = ACTIONS(1107), - [sym_primitive_type] = ACTIONS(1107), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_struct] = ACTIONS(1107), - [anon_sym_union] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_switch] = ACTIONS(1107), - [anon_sym_case] = ACTIONS(1107), - [anon_sym_default] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_do] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_return] = ACTIONS(1107), - [anon_sym_break] = ACTIONS(1107), - [anon_sym_continue] = ACTIONS(1107), - [anon_sym_goto] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1105), - [anon_sym_sizeof] = ACTIONS(1107), - [sym_number_literal] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(1105), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_null] = ACTIONS(1107), - [sym_identifier] = ACTIONS(1107), - [sym_comment] = ACTIONS(85), + [186] = { + [ts_builtin_sym_end] = ACTIONS(1011), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1013), + [sym_preproc_directive] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_typedef] = ACTIONS(1013), + [anon_sym_extern] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_LPAREN2] = ACTIONS(1011), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_auto] = ACTIONS(1013), + [anon_sym_register] = ACTIONS(1013), + [anon_sym_inline] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_restrict] = ACTIONS(1013), + [anon_sym_volatile] = ACTIONS(1013), + [anon_sym__Atomic] = ACTIONS(1013), + [anon_sym_unsigned] = ACTIONS(1013), + [anon_sym_long] = ACTIONS(1013), + [anon_sym_short] = ACTIONS(1013), + [sym_primitive_type] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1013), + [anon_sym_union] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [anon_sym_do] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_goto] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_TILDE] = ACTIONS(1011), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1011), + [anon_sym_sizeof] = ACTIONS(1013), + [sym_number_literal] = ACTIONS(1011), + [anon_sym_SQUOTE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1011), + [sym_true] = ACTIONS(1013), + [sym_false] = ACTIONS(1013), + [sym_null] = ACTIONS(1013), + [sym_identifier] = ACTIONS(1013), + [sym_comment] = ACTIONS(81), }, - [205] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1109), - [sym_comment] = ACTIONS(85), + [187] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1015), + [sym_comment] = ACTIONS(81), }, - [206] = { - [sym_preproc_include] = STATE(447), - [sym_preproc_def] = STATE(447), - [sym_preproc_function_def] = STATE(447), - [sym_preproc_call] = STATE(447), - [sym_preproc_if] = STATE(447), - [sym_preproc_ifdef] = STATE(447), - [sym_preproc_else] = STATE(449), - [sym_preproc_elif] = STATE(449), - [sym_function_definition] = STATE(447), - [sym_declaration] = STATE(447), - [sym_type_definition] = STATE(447), - [sym__declaration_specifiers] = STATE(200), - [sym_linkage_specification] = STATE(447), - [sym_compound_statement] = STATE(447), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(447), - [sym_expression_statement] = STATE(447), - [sym_if_statement] = STATE(447), - [sym_switch_statement] = STATE(447), - [sym_case_statement] = STATE(447), - [sym_while_statement] = STATE(447), - [sym_do_statement] = STATE(447), - [sym_for_statement] = STATE(447), - [sym_return_statement] = STATE(447), - [sym_break_statement] = STATE(447), - [sym_continue_statement] = STATE(447), - [sym_goto_statement] = STATE(447), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(447), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(447), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1111), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(384), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [188] = { + [sym_preproc_include] = STATE(405), + [sym_preproc_def] = STATE(405), + [sym_preproc_function_def] = STATE(405), + [sym_preproc_call] = STATE(405), + [sym_preproc_if] = STATE(405), + [sym_preproc_ifdef] = STATE(405), + [sym_preproc_else] = STATE(407), + [sym_preproc_elif] = STATE(407), + [sym_function_definition] = STATE(405), + [sym_declaration] = STATE(405), + [sym_type_definition] = STATE(405), + [sym__declaration_specifiers] = STATE(182), + [sym_linkage_specification] = STATE(405), + [sym_compound_statement] = STATE(405), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(405), + [sym_expression_statement] = STATE(405), + [sym_if_statement] = STATE(405), + [sym_switch_statement] = STATE(405), + [sym_while_statement] = STATE(405), + [sym_do_statement] = STATE(405), + [sym_for_statement] = STATE(405), + [sym_return_statement] = STATE(405), + [sym_break_statement] = STATE(405), + [sym_continue_statement] = STATE(405), + [sym_goto_statement] = STATE(405), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(405), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(405), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1017), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(348), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(350), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -12515,228 +11874,223 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [207] = { - [ts_builtin_sym_end] = ACTIONS(1113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1115), - [sym_preproc_directive] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_typedef] = ACTIONS(1115), - [anon_sym_extern] = ACTIONS(1115), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_LPAREN2] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_static] = ACTIONS(1115), - [anon_sym_auto] = ACTIONS(1115), - [anon_sym_register] = ACTIONS(1115), - [anon_sym_inline] = ACTIONS(1115), - [anon_sym_const] = ACTIONS(1115), - [anon_sym_restrict] = ACTIONS(1115), - [anon_sym_volatile] = ACTIONS(1115), - [anon_sym__Atomic] = ACTIONS(1115), - [anon_sym_unsigned] = ACTIONS(1115), - [anon_sym_long] = ACTIONS(1115), - [anon_sym_short] = ACTIONS(1115), - [sym_primitive_type] = ACTIONS(1115), - [anon_sym_enum] = ACTIONS(1115), - [anon_sym_struct] = ACTIONS(1115), - [anon_sym_union] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1115), - [anon_sym_switch] = ACTIONS(1115), - [anon_sym_case] = ACTIONS(1115), - [anon_sym_default] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1115), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_for] = ACTIONS(1115), - [anon_sym_return] = ACTIONS(1115), - [anon_sym_break] = ACTIONS(1115), - [anon_sym_continue] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1115), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_sizeof] = ACTIONS(1115), - [sym_number_literal] = ACTIONS(1113), - [anon_sym_SQUOTE] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_null] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1115), - [sym_comment] = ACTIONS(85), + [189] = { + [ts_builtin_sym_end] = ACTIONS(1019), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1021), + [sym_preproc_directive] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_typedef] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_RBRACE] = ACTIONS(1019), + [anon_sym_LPAREN2] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_static] = ACTIONS(1021), + [anon_sym_auto] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_inline] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [anon_sym_restrict] = ACTIONS(1021), + [anon_sym_volatile] = ACTIONS(1021), + [anon_sym__Atomic] = ACTIONS(1021), + [anon_sym_unsigned] = ACTIONS(1021), + [anon_sym_long] = ACTIONS(1021), + [anon_sym_short] = ACTIONS(1021), + [sym_primitive_type] = ACTIONS(1021), + [anon_sym_enum] = ACTIONS(1021), + [anon_sym_struct] = ACTIONS(1021), + [anon_sym_union] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_switch] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_goto] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_TILDE] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1019), + [anon_sym_PLUS_PLUS] = ACTIONS(1019), + [anon_sym_sizeof] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1019), + [anon_sym_SQUOTE] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym_true] = ACTIONS(1021), + [sym_false] = ACTIONS(1021), + [sym_null] = ACTIONS(1021), + [sym_identifier] = ACTIONS(1021), + [sym_comment] = ACTIONS(81), }, - [208] = { - [sym__type_declarator] = STATE(451), - [sym_pointer_type_declarator] = STATE(451), - [sym_function_type_declarator] = STATE(451), - [sym_array_type_declarator] = STATE(451), - [anon_sym_LPAREN2] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(1117), - [sym_identifier] = ACTIONS(441), - [sym_comment] = ACTIONS(85), + [190] = { + [sym__type_declarator] = STATE(409), + [sym_pointer_type_declarator] = STATE(409), + [sym_function_type_declarator] = STATE(409), + [sym_array_type_declarator] = STATE(409), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(1023), + [sym_identifier] = ACTIONS(403), + [sym_comment] = ACTIONS(81), }, - [209] = { - [sym__type_declarator] = STATE(452), - [sym_pointer_type_declarator] = STATE(452), - [sym_function_type_declarator] = STATE(452), - [sym_array_type_declarator] = STATE(452), - [sym_type_qualifier] = STATE(453), - [aux_sym_type_definition_repeat1] = STATE(453), - [anon_sym_LPAREN2] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), + [191] = { + [sym__type_declarator] = STATE(410), + [sym_pointer_type_declarator] = STATE(410), + [sym_function_type_declarator] = STATE(410), + [sym_array_type_declarator] = STATE(410), + [sym_type_qualifier] = STATE(411), + [aux_sym_type_definition_repeat1] = STATE(411), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(401), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1119), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(1025), + [sym_comment] = ACTIONS(81), }, - [210] = { - [anon_sym_RPAREN] = ACTIONS(1121), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_LPAREN2] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1121), - [sym_comment] = ACTIONS(85), + [192] = { + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1027), + [anon_sym_LPAREN2] = ACTIONS(1027), + [anon_sym_LBRACK] = ACTIONS(1027), + [sym_comment] = ACTIONS(81), }, - [211] = { - [sym_parameter_list] = STATE(456), - [anon_sym_SEMI] = ACTIONS(1123), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1125), - [sym_comment] = ACTIONS(85), + [193] = { + [sym_parameter_list] = STATE(414), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1031), + [sym_comment] = ACTIONS(81), }, - [212] = { - [sym__type_declarator] = STATE(457), - [sym_pointer_type_declarator] = STATE(457), - [sym_function_type_declarator] = STATE(457), - [sym_array_type_declarator] = STATE(457), - [anon_sym_LPAREN2] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [sym_identifier] = ACTIONS(441), - [sym_comment] = ACTIONS(85), + [194] = { + [sym__type_declarator] = STATE(415), + [sym_pointer_type_declarator] = STATE(415), + [sym_function_type_declarator] = STATE(415), + [sym_array_type_declarator] = STATE(415), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(401), + [sym_identifier] = ACTIONS(403), + [sym_comment] = ACTIONS(81), }, - [213] = { - [sym_type_qualifier] = STATE(213), - [aux_sym_type_definition_repeat1] = STATE(213), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_restrict] = ACTIONS(1127), - [anon_sym_volatile] = ACTIONS(1127), - [anon_sym__Atomic] = ACTIONS(1127), - [anon_sym_unsigned] = ACTIONS(1130), - [anon_sym_long] = ACTIONS(1130), - [anon_sym_short] = ACTIONS(1130), - [sym_primitive_type] = ACTIONS(1130), - [anon_sym_enum] = ACTIONS(1130), - [anon_sym_struct] = ACTIONS(1130), - [anon_sym_union] = ACTIONS(1130), - [sym_identifier] = ACTIONS(1130), - [sym_comment] = ACTIONS(85), + [195] = { + [sym_type_qualifier] = STATE(195), + [aux_sym_type_definition_repeat1] = STATE(195), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_restrict] = ACTIONS(1033), + [anon_sym_volatile] = ACTIONS(1033), + [anon_sym__Atomic] = ACTIONS(1033), + [anon_sym_unsigned] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [sym_primitive_type] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_struct] = ACTIONS(1036), + [anon_sym_union] = ACTIONS(1036), + [sym_identifier] = ACTIONS(1036), + [sym_comment] = ACTIONS(81), }, - [214] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(214), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_unsigned] = ACTIONS(1132), - [anon_sym_long] = ACTIONS(1132), - [anon_sym_short] = ACTIONS(1132), - [sym_primitive_type] = ACTIONS(980), - [sym_identifier] = ACTIONS(980), - [sym_comment] = ACTIONS(85), + [196] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(196), + [anon_sym_LPAREN2] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_unsigned] = ACTIONS(1038), + [anon_sym_long] = ACTIONS(1038), + [anon_sym_short] = ACTIONS(1038), + [sym_primitive_type] = ACTIONS(896), + [sym_identifier] = ACTIONS(896), + [sym_comment] = ACTIONS(81), }, - [215] = { - [sym_preproc_include] = STATE(459), - [sym_preproc_def] = STATE(459), - [sym_preproc_function_def] = STATE(459), - [sym_preproc_call] = STATE(459), - [sym_preproc_if] = STATE(459), - [sym_preproc_ifdef] = STATE(459), - [sym_function_definition] = STATE(459), - [sym_declaration] = STATE(459), - [sym_type_definition] = STATE(459), - [sym__declaration_specifiers] = STATE(37), - [sym_linkage_specification] = STATE(459), - [sym_compound_statement] = STATE(459), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(459), - [sym_expression_statement] = STATE(459), - [sym_if_statement] = STATE(459), - [sym_switch_statement] = STATE(459), - [sym_case_statement] = STATE(459), - [sym_while_statement] = STATE(459), - [sym_do_statement] = STATE(459), - [sym_for_statement] = STATE(459), - [sym_return_statement] = STATE(459), - [sym_break_statement] = STATE(459), - [sym_continue_statement] = STATE(459), - [sym_goto_statement] = STATE(459), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(459), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(459), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), + [197] = { + [sym_preproc_include] = STATE(417), + [sym_preproc_def] = STATE(417), + [sym_preproc_function_def] = STATE(417), + [sym_preproc_call] = STATE(417), + [sym_preproc_if] = STATE(417), + [sym_preproc_ifdef] = STATE(417), + [sym_function_definition] = STATE(417), + [sym_declaration] = STATE(417), + [sym_type_definition] = STATE(417), + [sym__declaration_specifiers] = STATE(35), + [sym_linkage_specification] = STATE(417), + [sym_compound_statement] = STATE(417), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(417), + [sym_expression_statement] = STATE(417), + [sym_if_statement] = STATE(417), + [sym_switch_statement] = STATE(417), + [sym_while_statement] = STATE(417), + [sym_do_statement] = STATE(417), + [sym_for_statement] = STATE(417), + [sym_return_statement] = STATE(417), + [sym_break_statement] = STATE(417), + [sym_continue_statement] = STATE(417), + [sym_goto_statement] = STATE(417), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(417), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(417), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), @@ -12747,7 +12101,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1135), + [anon_sym_RBRACE] = ACTIONS(1041), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -12765,110 +12119,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(133), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(123), + [sym_comment] = ACTIONS(81), }, - [216] = { - [ts_builtin_sym_end] = ACTIONS(1137), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_SEMI] = ACTIONS(1137), - [anon_sym_typedef] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_RBRACE] = ACTIONS(1137), - [anon_sym_LPAREN2] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_auto] = ACTIONS(1139), - [anon_sym_register] = ACTIONS(1139), - [anon_sym_inline] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_restrict] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1139), - [anon_sym_unsigned] = ACTIONS(1139), - [anon_sym_long] = ACTIONS(1139), - [anon_sym_short] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_sizeof] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1137), - [sym_true] = ACTIONS(1139), - [sym_false] = ACTIONS(1139), - [sym_null] = ACTIONS(1139), - [sym_identifier] = ACTIONS(1139), - [sym_comment] = ACTIONS(85), + [198] = { + [ts_builtin_sym_end] = ACTIONS(1043), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1045), + [sym_preproc_directive] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_typedef] = ACTIONS(1045), + [anon_sym_extern] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_LPAREN2] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_auto] = ACTIONS(1045), + [anon_sym_register] = ACTIONS(1045), + [anon_sym_inline] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_restrict] = ACTIONS(1045), + [anon_sym_volatile] = ACTIONS(1045), + [anon_sym__Atomic] = ACTIONS(1045), + [anon_sym_unsigned] = ACTIONS(1045), + [anon_sym_long] = ACTIONS(1045), + [anon_sym_short] = ACTIONS(1045), + [sym_primitive_type] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_union] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_switch] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [anon_sym_do] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_goto] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_TILDE] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_DASH_DASH] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1043), + [anon_sym_sizeof] = ACTIONS(1045), + [sym_number_literal] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [sym_true] = ACTIONS(1045), + [sym_false] = ACTIONS(1045), + [sym_null] = ACTIONS(1045), + [sym_identifier] = ACTIONS(1045), + [sym_comment] = ACTIONS(81), }, - [217] = { - [sym__declarator] = STATE(140), - [sym_pointer_declarator] = STATE(140), - [sym_function_declarator] = STATE(140), - [sym_array_declarator] = STATE(140), - [sym_init_declarator] = STATE(141), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [sym_identifier] = ACTIONS(297), - [sym_comment] = ACTIONS(85), + [199] = { + [sym__declarator] = STATE(124), + [sym_pointer_declarator] = STATE(124), + [sym_function_declarator] = STATE(124), + [sym_array_declarator] = STATE(124), + [sym_init_declarator] = STATE(125), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(261), + [sym_identifier] = ACTIONS(263), + [sym_comment] = ACTIONS(81), }, - [218] = { - [sym_storage_class_specifier] = STATE(460), - [sym_type_qualifier] = STATE(460), - [aux_sym__declaration_specifiers_repeat1] = STATE(460), + [200] = { + [sym_storage_class_specifier] = STATE(418), + [sym_type_qualifier] = STATE(418), + [aux_sym__declaration_specifiers_repeat1] = STATE(418), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(299), + [anon_sym_LPAREN2] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(265), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -12877,20 +12227,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(301), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(267), + [sym_comment] = ACTIONS(81), }, - [219] = { - [sym_storage_class_specifier] = STATE(165), - [sym_type_qualifier] = STATE(165), - [sym__type_specifier] = STATE(461), - [sym_sized_type_specifier] = STATE(461), - [sym_enum_specifier] = STATE(461), - [sym_struct_specifier] = STATE(461), - [sym_union_specifier] = STATE(461), - [sym_macro_type_specifier] = STATE(461), - [aux_sym__declaration_specifiers_repeat1] = STATE(165), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), + [201] = { + [sym_storage_class_specifier] = STATE(149), + [sym_type_qualifier] = STATE(149), + [sym__type_specifier] = STATE(419), + [sym_sized_type_specifier] = STATE(419), + [sym_enum_specifier] = STATE(419), + [sym_struct_specifier] = STATE(419), + [sym_union_specifier] = STATE(419), + [sym_macro_type_specifier] = STATE(419), + [aux_sym__declaration_specifiers_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), [anon_sym_extern] = ACTIONS(29), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), @@ -12900,107 +12250,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(1141), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(1047), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [220] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(462), - [anon_sym_extern] = ACTIONS(349), - [anon_sym_LPAREN2] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_static] = ACTIONS(349), - [anon_sym_auto] = ACTIONS(349), - [anon_sym_register] = ACTIONS(349), - [anon_sym_inline] = ACTIONS(349), - [anon_sym_const] = ACTIONS(349), - [anon_sym_restrict] = ACTIONS(349), - [anon_sym_volatile] = ACTIONS(349), - [anon_sym__Atomic] = ACTIONS(349), - [anon_sym_unsigned] = ACTIONS(1143), - [anon_sym_long] = ACTIONS(1143), - [anon_sym_short] = ACTIONS(1143), - [sym_primitive_type] = ACTIONS(353), - [sym_identifier] = ACTIONS(355), - [sym_comment] = ACTIONS(85), + [202] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(420), + [anon_sym_extern] = ACTIONS(315), + [anon_sym_LPAREN2] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(313), + [anon_sym_static] = ACTIONS(315), + [anon_sym_auto] = ACTIONS(315), + [anon_sym_register] = ACTIONS(315), + [anon_sym_inline] = ACTIONS(315), + [anon_sym_const] = ACTIONS(315), + [anon_sym_restrict] = ACTIONS(315), + [anon_sym_volatile] = ACTIONS(315), + [anon_sym__Atomic] = ACTIONS(315), + [anon_sym_unsigned] = ACTIONS(1049), + [anon_sym_long] = ACTIONS(1049), + [anon_sym_short] = ACTIONS(1049), + [sym_primitive_type] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), + [sym_comment] = ACTIONS(81), }, - [221] = { - [sym_preproc_include] = STATE(470), - [sym_preproc_def] = STATE(470), - [sym_preproc_function_def] = STATE(470), - [sym_preproc_call] = STATE(470), - [sym_preproc_if_in_compound_statement] = STATE(470), - [sym_preproc_ifdef_in_compound_statement] = STATE(470), - [sym_preproc_else_in_compound_statement] = STATE(468), - [sym_preproc_elif_in_compound_statement] = STATE(468), - [sym_declaration] = STATE(470), - [sym_type_definition] = STATE(470), - [sym__declaration_specifiers] = STATE(469), - [sym_compound_statement] = STATE(470), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(470), - [sym_expression_statement] = STATE(470), - [sym_if_statement] = STATE(470), - [sym_switch_statement] = STATE(470), - [sym_case_statement] = STATE(470), - [sym_while_statement] = STATE(470), - [sym_do_statement] = STATE(470), - [sym_for_statement] = STATE(470), - [sym_return_statement] = STATE(470), - [sym_break_statement] = STATE(470), - [sym_continue_statement] = STATE(470), - [sym_goto_statement] = STATE(470), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(470), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(470), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1147), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), + [203] = { + [sym_preproc_include] = STATE(428), + [sym_preproc_def] = STATE(428), + [sym_preproc_function_def] = STATE(428), + [sym_preproc_call] = STATE(428), + [sym_preproc_if_in_compound_statement] = STATE(428), + [sym_preproc_ifdef_in_compound_statement] = STATE(428), + [sym_preproc_else_in_compound_statement] = STATE(426), + [sym_preproc_elif_in_compound_statement] = STATE(426), + [sym_declaration] = STATE(428), + [sym_type_definition] = STATE(428), + [sym__declaration_specifiers] = STATE(427), + [sym_compound_statement] = STATE(428), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(428), + [sym_expression_statement] = STATE(428), + [sym_if_statement] = STATE(428), + [sym_switch_statement] = STATE(428), + [sym_while_statement] = STATE(428), + [sym_do_statement] = STATE(428), + [sym_for_statement] = STATE(428), + [sym_return_statement] = STATE(428), + [sym_break_statement] = STATE(428), + [sym_continue_statement] = STATE(428), + [sym_goto_statement] = STATE(428), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(428), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(428), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1051), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1053), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1059), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -13018,105 +12367,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [222] = { - [sym_preproc_include] = STATE(473), - [sym_preproc_def] = STATE(473), - [sym_preproc_function_def] = STATE(473), - [sym_preproc_call] = STATE(473), - [sym_preproc_if_in_compound_statement] = STATE(473), - [sym_preproc_ifdef_in_compound_statement] = STATE(473), - [sym_preproc_else_in_compound_statement] = STATE(472), - [sym_preproc_elif_in_compound_statement] = STATE(472), - [sym_declaration] = STATE(473), - [sym_type_definition] = STATE(473), - [sym__declaration_specifiers] = STATE(469), - [sym_compound_statement] = STATE(473), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(473), - [sym_expression_statement] = STATE(473), - [sym_if_statement] = STATE(473), - [sym_switch_statement] = STATE(473), - [sym_case_statement] = STATE(473), - [sym_while_statement] = STATE(473), - [sym_do_statement] = STATE(473), - [sym_for_statement] = STATE(473), - [sym_return_statement] = STATE(473), - [sym_break_statement] = STATE(473), - [sym_continue_statement] = STATE(473), - [sym_goto_statement] = STATE(473), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(473), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(473), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1155), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), + [204] = { + [sym_preproc_include] = STATE(431), + [sym_preproc_def] = STATE(431), + [sym_preproc_function_def] = STATE(431), + [sym_preproc_call] = STATE(431), + [sym_preproc_if_in_compound_statement] = STATE(431), + [sym_preproc_ifdef_in_compound_statement] = STATE(431), + [sym_preproc_else_in_compound_statement] = STATE(430), + [sym_preproc_elif_in_compound_statement] = STATE(430), + [sym_declaration] = STATE(431), + [sym_type_definition] = STATE(431), + [sym__declaration_specifiers] = STATE(427), + [sym_compound_statement] = STATE(431), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(431), + [sym_expression_statement] = STATE(431), + [sym_if_statement] = STATE(431), + [sym_switch_statement] = STATE(431), + [sym_while_statement] = STATE(431), + [sym_do_statement] = STATE(431), + [sym_for_statement] = STATE(431), + [sym_return_statement] = STATE(431), + [sym_break_statement] = STATE(431), + [sym_continue_statement] = STATE(431), + [sym_goto_statement] = STATE(431), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(431), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(431), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1051), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1061), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1059), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -13134,410 +12480,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), - }, - [223] = { - [sym_compound_statement] = STATE(481), - [sym_labeled_statement] = STATE(481), - [sym_expression_statement] = STATE(481), - [sym_if_statement] = STATE(481), - [sym_switch_statement] = STATE(481), - [sym_case_statement] = STATE(481), - [sym_while_statement] = STATE(481), - [sym_do_statement] = STATE(481), - [sym_for_statement] = STATE(481), - [sym_return_statement] = STATE(481), - [sym_break_statement] = STATE(481), - [sym_continue_statement] = STATE(481), - [sym_goto_statement] = STATE(481), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1169), - [sym_comment] = ACTIONS(85), - }, - [224] = { - [sym_compound_statement] = STATE(286), - [sym_labeled_statement] = STATE(286), - [sym_expression_statement] = STATE(286), - [sym_if_statement] = STATE(286), - [sym_switch_statement] = STATE(286), - [sym_case_statement] = STATE(286), - [sym_while_statement] = STATE(286), - [sym_do_statement] = STATE(286), - [sym_for_statement] = STATE(286), - [sym_return_statement] = STATE(286), - [sym_break_statement] = STATE(286), - [sym_continue_statement] = STATE(286), - [sym_goto_statement] = STATE(286), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(85), - }, - [225] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(1173), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [226] = { - [sym_declaration] = STATE(305), - [sym_type_definition] = STATE(305), - [sym__declaration_specifiers] = STATE(306), - [sym_compound_statement] = STATE(305), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_labeled_statement] = STATE(305), - [sym_expression_statement] = STATE(305), - [sym_if_statement] = STATE(305), - [sym_switch_statement] = STATE(305), - [sym_case_statement] = STATE(305), - [sym_while_statement] = STATE(305), - [sym_do_statement] = STATE(305), - [sym_for_statement] = STATE(305), - [sym_return_statement] = STATE(305), - [sym_break_statement] = STATE(305), - [sym_continue_statement] = STATE(305), - [sym_goto_statement] = STATE(305), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), + [205] = { + [sym_compound_statement] = STATE(436), + [sym_labeled_statement] = STATE(436), + [sym_expression_statement] = STATE(436), + [sym_if_statement] = STATE(436), + [sym_switch_statement] = STATE(436), + [sym_while_statement] = STATE(436), + [sym_do_statement] = STATE(436), + [sym_for_statement] = STATE(436), + [sym_return_statement] = STATE(436), + [sym_break_statement] = STATE(436), + [sym_continue_statement] = STATE(436), + [sym_goto_statement] = STATE(436), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1069), + [sym_comment] = ACTIONS(81), }, - [227] = { - [sym_compound_statement] = STATE(307), - [sym_labeled_statement] = STATE(307), - [sym_expression_statement] = STATE(307), - [sym_if_statement] = STATE(307), - [sym_switch_statement] = STATE(307), - [sym_case_statement] = STATE(307), - [sym_while_statement] = STATE(307), - [sym_do_statement] = STATE(307), - [sym_for_statement] = STATE(307), - [sym_return_statement] = STATE(307), - [sym_break_statement] = STATE(307), - [sym_continue_statement] = STATE(307), - [sym_goto_statement] = STATE(307), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [206] = { + [sym_compound_statement] = STATE(264), + [sym_labeled_statement] = STATE(264), + [sym_expression_statement] = STATE(264), + [sym_if_statement] = STATE(264), + [sym_switch_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_do_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_return_statement] = STATE(264), + [sym_break_statement] = STATE(264), + [sym_continue_statement] = STATE(264), + [sym_goto_statement] = STATE(264), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1071), + [sym_comment] = ACTIONS(81), }, - [228] = { - [sym_declaration] = STATE(485), - [sym__declaration_specifiers] = STATE(306), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym__expression] = STATE(486), - [sym_conditional_expression] = STATE(486), - [sym_assignment_expression] = STATE(486), - [sym_pointer_expression] = STATE(486), - [sym_logical_expression] = STATE(486), - [sym_bitwise_expression] = STATE(486), - [sym_equality_expression] = STATE(486), - [sym_relational_expression] = STATE(486), - [sym_shift_expression] = STATE(486), - [sym_math_expression] = STATE(486), - [sym_cast_expression] = STATE(486), - [sym_sizeof_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_call_expression] = STATE(486), - [sym_field_expression] = STATE(486), - [sym_compound_literal_expression] = STATE(486), - [sym_parenthesized_expression] = STATE(486), - [sym_char_literal] = STATE(486), - [sym_concatenated_string] = STATE(486), - [sym_string_literal] = STATE(123), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(1177), + [207] = { + [sym_declaration] = STATE(438), + [sym__declaration_specifiers] = STATE(273), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [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(107), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(1073), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -13546,426 +12679,420 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1179), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1181), - [sym_false] = ACTIONS(1181), - [sym_null] = ACTIONS(1181), - [sym_identifier] = ACTIONS(651), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1077), + [sym_false] = ACTIONS(1077), + [sym_null] = ACTIONS(1077), + [sym_identifier] = ACTIONS(559), + [sym_comment] = ACTIONS(81), }, - [229] = { - [sym_compound_statement] = STATE(343), - [sym_labeled_statement] = STATE(343), - [sym_expression_statement] = STATE(343), - [sym_if_statement] = STATE(343), - [sym_switch_statement] = STATE(343), - [sym_case_statement] = STATE(343), - [sym_while_statement] = STATE(343), - [sym_do_statement] = STATE(343), - [sym_for_statement] = STATE(343), - [sym_return_statement] = STATE(343), - [sym_break_statement] = STATE(343), - [sym_continue_statement] = STATE(343), - [sym_goto_statement] = STATE(343), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [208] = { + [sym_compound_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1071), + [sym_comment] = ACTIONS(81), }, - [230] = { - [sym__declarator] = STATE(346), - [sym_pointer_declarator] = STATE(346), - [sym_function_declarator] = STATE(346), - [sym_array_declarator] = STATE(346), - [sym_type_qualifier] = STATE(487), - [aux_sym_type_definition_repeat1] = STATE(487), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(471), + [209] = { + [sym__declarator] = STATE(301), + [sym_pointer_declarator] = STATE(301), + [sym_function_declarator] = STATE(301), + [sym_array_declarator] = STATE(301), + [sym_type_qualifier] = STATE(440), + [aux_sym_type_definition_repeat1] = STATE(440), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(427), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(737), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(645), + [sym_comment] = ACTIONS(81), }, - [231] = { - [sym_parameter_list] = STATE(354), - [aux_sym_declaration_repeat1] = STATE(355), - [anon_sym_COMMA] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(747), - [sym_comment] = ACTIONS(85), + [210] = { + [sym_parameter_list] = STATE(309), + [aux_sym_declaration_repeat1] = STATE(310), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(649), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(655), + [sym_comment] = ACTIONS(81), }, - [232] = { - [ts_builtin_sym_end] = ACTIONS(1183), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1185), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_LPAREN2] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_auto] = ACTIONS(1185), - [anon_sym_register] = ACTIONS(1185), - [anon_sym_inline] = ACTIONS(1185), - [anon_sym_const] = ACTIONS(1185), - [anon_sym_restrict] = ACTIONS(1185), - [anon_sym_volatile] = ACTIONS(1185), - [anon_sym__Atomic] = ACTIONS(1185), - [anon_sym_unsigned] = ACTIONS(1185), - [anon_sym_long] = ACTIONS(1185), - [anon_sym_short] = ACTIONS(1185), - [sym_primitive_type] = ACTIONS(1185), - [anon_sym_enum] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_union] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_switch] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1185), - [sym_number_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [sym_null] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1185), - [sym_comment] = ACTIONS(85), + [211] = { + [ts_builtin_sym_end] = ACTIONS(1079), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1081), + [sym_preproc_directive] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1079), + [anon_sym_typedef] = ACTIONS(1081), + [anon_sym_extern] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1079), + [anon_sym_LPAREN2] = ACTIONS(1079), + [anon_sym_STAR] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1081), + [anon_sym_auto] = ACTIONS(1081), + [anon_sym_register] = ACTIONS(1081), + [anon_sym_inline] = ACTIONS(1081), + [anon_sym_const] = ACTIONS(1081), + [anon_sym_restrict] = ACTIONS(1081), + [anon_sym_volatile] = ACTIONS(1081), + [anon_sym__Atomic] = ACTIONS(1081), + [anon_sym_unsigned] = ACTIONS(1081), + [anon_sym_long] = ACTIONS(1081), + [anon_sym_short] = ACTIONS(1081), + [sym_primitive_type] = ACTIONS(1081), + [anon_sym_enum] = ACTIONS(1081), + [anon_sym_struct] = ACTIONS(1081), + [anon_sym_union] = ACTIONS(1081), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_else] = ACTIONS(1081), + [anon_sym_switch] = ACTIONS(1081), + [anon_sym_case] = ACTIONS(1081), + [anon_sym_default] = ACTIONS(1081), + [anon_sym_while] = ACTIONS(1081), + [anon_sym_do] = ACTIONS(1081), + [anon_sym_for] = ACTIONS(1081), + [anon_sym_return] = ACTIONS(1081), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1081), + [anon_sym_goto] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_DASH_DASH] = ACTIONS(1079), + [anon_sym_PLUS_PLUS] = ACTIONS(1079), + [anon_sym_sizeof] = ACTIONS(1081), + [sym_number_literal] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_DQUOTE] = ACTIONS(1079), + [sym_true] = ACTIONS(1081), + [sym_false] = ACTIONS(1081), + [sym_null] = ACTIONS(1081), + [sym_identifier] = ACTIONS(1081), + [sym_comment] = ACTIONS(81), }, - [233] = { - [sym_preproc_include] = STATE(233), - [sym_preproc_def] = STATE(233), - [sym_preproc_function_def] = STATE(233), - [sym_preproc_call] = STATE(233), - [sym_preproc_if_in_compound_statement] = STATE(233), - [sym_preproc_ifdef_in_compound_statement] = STATE(233), - [sym_declaration] = STATE(233), - [sym_type_definition] = STATE(233), - [sym__declaration_specifiers] = STATE(67), - [sym_compound_statement] = STATE(233), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(233), - [sym_expression_statement] = STATE(233), - [sym_if_statement] = STATE(233), - [sym_switch_statement] = STATE(233), - [sym_case_statement] = STATE(233), - [sym_while_statement] = STATE(233), - [sym_do_statement] = STATE(233), - [sym_for_statement] = STATE(233), - [sym_return_statement] = STATE(233), - [sym_break_statement] = STATE(233), - [sym_continue_statement] = STATE(233), - [sym_goto_statement] = STATE(233), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(233), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(233), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1187), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1193), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1196), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1205), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1211), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_LPAREN2] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1225), - [anon_sym_long] = ACTIONS(1225), - [anon_sym_short] = ACTIONS(1225), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1243), - [anon_sym_case] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1249), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1261), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1267), - [anon_sym_goto] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1285), - [sym_number_literal] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_identifier] = ACTIONS(1300), - [sym_comment] = ACTIONS(85), + [212] = { + [sym_preproc_include] = STATE(212), + [sym_preproc_def] = STATE(212), + [sym_preproc_function_def] = STATE(212), + [sym_preproc_call] = STATE(212), + [sym_preproc_if_in_compound_statement] = STATE(212), + [sym_preproc_ifdef_in_compound_statement] = STATE(212), + [sym_declaration] = STATE(212), + [sym_type_definition] = STATE(212), + [sym__declaration_specifiers] = STATE(62), + [sym_compound_statement] = STATE(212), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_switch_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_goto_statement] = STATE(212), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(212), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(212), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1083), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1086), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1089), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1092), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1092), + [sym_preproc_directive] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_typedef] = ACTIONS(1101), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1121), + [anon_sym_long] = ACTIONS(1121), + [anon_sym_short] = ACTIONS(1121), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1133), + [anon_sym_if] = ACTIONS(1136), + [anon_sym_switch] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1145), + [anon_sym_for] = ACTIONS(1148), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1157), + [anon_sym_goto] = ACTIONS(1160), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1175), + [sym_number_literal] = ACTIONS(1178), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1184), + [sym_true] = ACTIONS(1187), + [sym_false] = ACTIONS(1187), + [sym_null] = ACTIONS(1187), + [sym_identifier] = ACTIONS(1190), + [sym_comment] = ACTIONS(81), }, - [234] = { - [anon_sym_RPAREN] = ACTIONS(1303), - [sym_comment] = ACTIONS(85), + [213] = { + [anon_sym_RPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(81), }, - [235] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(76), - [sym_sized_type_specifier] = STATE(76), - [sym_enum_specifier] = STATE(76), - [sym_struct_specifier] = STATE(76), - [sym_union_specifier] = STATE(76), - [sym__expression] = STATE(77), - [sym_comma_expression] = STATE(78), - [sym_conditional_expression] = STATE(77), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_type_descriptor] = STATE(489), - [sym_sizeof_expression] = STATE(77), - [sym_subscript_expression] = STATE(77), - [sym_call_expression] = STATE(77), - [sym_field_expression] = STATE(77), - [sym_compound_literal_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(80), - [sym_macro_type_specifier] = STATE(76), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(82), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), + [214] = { + [sym_type_qualifier] = STATE(76), + [sym__type_specifier] = STATE(71), + [sym_sized_type_specifier] = STATE(71), + [sym_enum_specifier] = STATE(71), + [sym_struct_specifier] = STATE(71), + [sym_union_specifier] = STATE(71), + [sym__expression] = STATE(72), + [sym_comma_expression] = STATE(73), + [sym_conditional_expression] = STATE(72), + [sym_assignment_expression] = STATE(72), + [sym_pointer_expression] = STATE(72), + [sym_logical_expression] = STATE(72), + [sym_bitwise_expression] = STATE(72), + [sym_equality_expression] = STATE(72), + [sym_relational_expression] = STATE(72), + [sym_shift_expression] = STATE(72), + [sym_math_expression] = STATE(72), + [sym_cast_expression] = STATE(72), + [sym_type_descriptor] = STATE(442), + [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(72), + [sym_call_expression] = STATE(72), + [sym_field_expression] = STATE(72), + [sym_compound_literal_expression] = STATE(72), + [sym_parenthesized_expression] = STATE(72), + [sym_char_literal] = STATE(72), + [sym_concatenated_string] = STATE(72), + [sym_string_literal] = STATE(75), + [sym_macro_type_specifier] = STATE(71), + [aux_sym_type_definition_repeat1] = STATE(76), + [aux_sym_sized_type_specifier_repeat1] = STATE(77), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [sym_primitive_type] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(129), + [anon_sym_long] = ACTIONS(129), + [anon_sym_short] = ACTIONS(129), + [sym_primitive_type] = ACTIONS(131), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(155), - [sym_false] = ACTIONS(155), - [sym_null] = ACTIONS(155), - [sym_identifier] = ACTIONS(157), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_identifier] = ACTIONS(147), + [sym_comment] = ACTIONS(81), }, - [236] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(715), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(717), - [anon_sym_QMARK] = ACTIONS(715), - [anon_sym_STAR_EQ] = ACTIONS(715), - [anon_sym_SLASH_EQ] = ACTIONS(715), - [anon_sym_PERCENT_EQ] = ACTIONS(715), - [anon_sym_PLUS_EQ] = ACTIONS(715), - [anon_sym_DASH_EQ] = ACTIONS(715), - [anon_sym_LT_LT_EQ] = ACTIONS(715), - [anon_sym_GT_GT_EQ] = ACTIONS(715), - [anon_sym_AMP_EQ] = ACTIONS(715), - [anon_sym_CARET_EQ] = ACTIONS(715), - [anon_sym_PIPE_EQ] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_CARET] = ACTIONS(717), - [anon_sym_EQ_EQ] = ACTIONS(715), - [anon_sym_BANG_EQ] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_LT_EQ] = ACTIONS(715), - [anon_sym_GT_EQ] = ACTIONS(715), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [215] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RPAREN] = ACTIONS(623), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_STAR_EQ] = ACTIONS(623), + [anon_sym_SLASH_EQ] = ACTIONS(623), + [anon_sym_PERCENT_EQ] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(623), + [anon_sym_DASH_EQ] = ACTIONS(623), + [anon_sym_LT_LT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_EQ] = ACTIONS(623), + [anon_sym_AMP_EQ] = ACTIONS(623), + [anon_sym_CARET_EQ] = ACTIONS(623), + [anon_sym_PIPE_EQ] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [237] = { - [sym__declaration_specifiers] = STATE(492), - [sym__abstract_declarator] = STATE(493), - [sym_abstract_pointer_declarator] = STATE(493), - [sym_abstract_function_declarator] = STATE(493), - [sym_abstract_array_declarator] = STATE(493), - [sym_storage_class_specifier] = STATE(495), - [sym_type_qualifier] = STATE(495), - [sym__type_specifier] = STATE(494), - [sym_sized_type_specifier] = STATE(494), - [sym_enum_specifier] = STATE(494), - [sym_struct_specifier] = STATE(494), - [sym_union_specifier] = STATE(494), - [sym_parameter_list] = STATE(241), - [sym_parameter_declaration] = STATE(490), - [sym_macro_type_specifier] = STATE(494), - [aux_sym__declaration_specifiers_repeat1] = STATE(495), - [aux_sym_sized_type_specifier_repeat1] = STATE(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(1307), + [216] = { + [sym__declaration_specifiers] = STATE(445), + [sym__abstract_declarator] = STATE(446), + [sym_abstract_pointer_declarator] = STATE(446), + [sym_abstract_function_declarator] = STATE(446), + [sym_abstract_array_declarator] = STATE(446), + [sym_storage_class_specifier] = STATE(448), + [sym_type_qualifier] = STATE(448), + [sym__type_specifier] = STATE(447), + [sym_sized_type_specifier] = STATE(447), + [sym_enum_specifier] = STATE(447), + [sym_struct_specifier] = STATE(447), + [sym_union_specifier] = STATE(447), + [sym_parameter_list] = STATE(220), + [sym_parameter_declaration] = STATE(443), + [sym_macro_type_specifier] = STATE(447), + [aux_sym__declaration_specifiers_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), + [anon_sym_RPAREN] = ACTIONS(1197), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(487), - [anon_sym_LBRACK] = ACTIONS(489), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(445), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -13974,878 +13101,879 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(1309), - [anon_sym_long] = ACTIONS(1309), - [anon_sym_short] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1201), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [238] = { - [sym__abstract_declarator] = STATE(497), - [sym_abstract_pointer_declarator] = STATE(497), - [sym_abstract_function_declarator] = STATE(497), - [sym_abstract_array_declarator] = STATE(497), - [sym_type_qualifier] = STATE(498), - [sym_parameter_list] = STATE(241), - [aux_sym_type_definition_repeat1] = STATE(498), - [anon_sym_RPAREN] = ACTIONS(1313), - [anon_sym_LPAREN2] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(487), - [anon_sym_LBRACK] = ACTIONS(489), - [anon_sym_const] = ACTIONS(1315), - [anon_sym_restrict] = ACTIONS(1315), - [anon_sym_volatile] = ACTIONS(1315), - [anon_sym__Atomic] = ACTIONS(1315), - [sym_comment] = ACTIONS(85), + [217] = { + [sym__abstract_declarator] = STATE(450), + [sym_abstract_pointer_declarator] = STATE(450), + [sym_abstract_function_declarator] = STATE(450), + [sym_abstract_array_declarator] = STATE(450), + [sym_type_qualifier] = STATE(451), + [sym_parameter_list] = STATE(220), + [aux_sym_type_definition_repeat1] = STATE(451), + [anon_sym_RPAREN] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(445), + [anon_sym_const] = ACTIONS(1205), + [anon_sym_restrict] = ACTIONS(1205), + [anon_sym_volatile] = ACTIONS(1205), + [anon_sym__Atomic] = ACTIONS(1205), + [sym_comment] = ACTIONS(81), }, - [239] = { - [sym_type_qualifier] = STATE(502), - [sym__expression] = STATE(501), - [sym_conditional_expression] = STATE(501), - [sym_assignment_expression] = STATE(501), - [sym_pointer_expression] = STATE(501), - [sym_logical_expression] = STATE(501), - [sym_bitwise_expression] = STATE(501), - [sym_equality_expression] = STATE(501), - [sym_relational_expression] = STATE(501), - [sym_shift_expression] = STATE(501), - [sym_math_expression] = STATE(501), - [sym_cast_expression] = STATE(501), - [sym_sizeof_expression] = STATE(501), - [sym_subscript_expression] = STATE(501), - [sym_call_expression] = STATE(501), - [sym_field_expression] = STATE(501), - [sym_compound_literal_expression] = STATE(501), - [sym_parenthesized_expression] = STATE(501), - [sym_char_literal] = STATE(501), - [sym_concatenated_string] = STATE(501), - [sym_string_literal] = STATE(369), - [aux_sym_type_definition_repeat1] = STATE(502), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_RBRACK] = ACTIONS(1319), + [218] = { + [sym_type_qualifier] = STATE(455), + [sym__expression] = STATE(454), + [sym_conditional_expression] = STATE(454), + [sym_assignment_expression] = STATE(454), + [sym_pointer_expression] = STATE(454), + [sym_logical_expression] = STATE(454), + [sym_bitwise_expression] = STATE(454), + [sym_equality_expression] = STATE(454), + [sym_relational_expression] = STATE(454), + [sym_shift_expression] = STATE(454), + [sym_math_expression] = STATE(454), + [sym_cast_expression] = STATE(454), + [sym_sizeof_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_call_expression] = STATE(454), + [sym_field_expression] = STATE(454), + [sym_compound_literal_expression] = STATE(454), + [sym_parenthesized_expression] = STATE(454), + [sym_char_literal] = STATE(454), + [sym_concatenated_string] = STATE(454), + [sym_string_literal] = STATE(324), + [aux_sym_type_definition_repeat1] = STATE(455), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_RBRACK] = ACTIONS(1209), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(1321), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1323), - [sym_false] = ACTIONS(1323), - [sym_null] = ACTIONS(1323), - [sym_identifier] = ACTIONS(1323), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1213), + [sym_false] = ACTIONS(1213), + [sym_null] = ACTIONS(1213), + [sym_identifier] = ACTIONS(1213), + [sym_comment] = ACTIONS(81), }, - [240] = { - [sym_parameter_list] = STATE(504), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1327), - [sym_comment] = ACTIONS(85), + [219] = { + [sym_parameter_list] = STATE(457), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1217), + [sym_comment] = ACTIONS(81), }, - [241] = { - [anon_sym_COMMA] = ACTIONS(1329), - [anon_sym_RPAREN] = ACTIONS(1329), - [anon_sym_LPAREN2] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(1329), - [sym_comment] = ACTIONS(85), + [220] = { + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_LPAREN2] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1219), + [sym_comment] = ACTIONS(81), }, - [242] = { - [sym__expression] = STATE(505), - [sym_comma_expression] = STATE(358), - [sym_conditional_expression] = STATE(505), - [sym_assignment_expression] = STATE(505), - [sym_pointer_expression] = STATE(505), - [sym_logical_expression] = STATE(505), - [sym_bitwise_expression] = STATE(505), - [sym_equality_expression] = STATE(505), - [sym_relational_expression] = STATE(505), - [sym_shift_expression] = STATE(505), - [sym_math_expression] = STATE(505), - [sym_cast_expression] = STATE(505), - [sym_sizeof_expression] = STATE(505), - [sym_subscript_expression] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_field_expression] = STATE(505), - [sym_compound_literal_expression] = STATE(505), - [sym_parenthesized_expression] = STATE(505), - [sym_char_literal] = STATE(505), - [sym_concatenated_string] = STATE(505), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1333), - [sym_false] = ACTIONS(1333), - [sym_null] = ACTIONS(1333), - [sym_identifier] = ACTIONS(1333), - [sym_comment] = ACTIONS(85), + [221] = { + [sym__expression] = STATE(458), + [sym_comma_expression] = STATE(313), + [sym_conditional_expression] = STATE(458), + [sym_assignment_expression] = STATE(458), + [sym_pointer_expression] = STATE(458), + [sym_logical_expression] = STATE(458), + [sym_bitwise_expression] = STATE(458), + [sym_equality_expression] = STATE(458), + [sym_relational_expression] = STATE(458), + [sym_shift_expression] = STATE(458), + [sym_math_expression] = STATE(458), + [sym_cast_expression] = STATE(458), + [sym_sizeof_expression] = STATE(458), + [sym_subscript_expression] = STATE(458), + [sym_call_expression] = STATE(458), + [sym_field_expression] = STATE(458), + [sym_compound_literal_expression] = STATE(458), + [sym_parenthesized_expression] = STATE(458), + [sym_char_literal] = STATE(458), + [sym_concatenated_string] = STATE(458), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(1221), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_null] = ACTIONS(1223), + [sym_identifier] = ACTIONS(1223), + [sym_comment] = ACTIONS(81), }, - [243] = { - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_RPAREN] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_LPAREN2] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_RBRACK] = ACTIONS(1335), - [anon_sym_EQ] = ACTIONS(1337), - [anon_sym_COLON] = ACTIONS(1335), - [anon_sym_else] = ACTIONS(1335), - [anon_sym_while] = ACTIONS(1335), - [anon_sym_QMARK] = ACTIONS(1335), - [anon_sym_STAR_EQ] = ACTIONS(1335), - [anon_sym_SLASH_EQ] = ACTIONS(1335), - [anon_sym_PERCENT_EQ] = ACTIONS(1335), - [anon_sym_PLUS_EQ] = ACTIONS(1335), - [anon_sym_DASH_EQ] = ACTIONS(1335), - [anon_sym_LT_LT_EQ] = ACTIONS(1335), - [anon_sym_GT_GT_EQ] = ACTIONS(1335), - [anon_sym_AMP_EQ] = ACTIONS(1335), - [anon_sym_CARET_EQ] = ACTIONS(1335), - [anon_sym_PIPE_EQ] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_PIPE_PIPE] = ACTIONS(1335), - [anon_sym_AMP_AMP] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1337), - [anon_sym_CARET] = ACTIONS(1337), - [anon_sym_EQ_EQ] = ACTIONS(1335), - [anon_sym_BANG_EQ] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1337), - [anon_sym_GT] = ACTIONS(1337), - [anon_sym_LT_EQ] = ACTIONS(1335), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_SLASH] = ACTIONS(1337), - [anon_sym_PERCENT] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1335), - [anon_sym_PLUS_PLUS] = ACTIONS(1335), - [anon_sym_DOT] = ACTIONS(1335), - [anon_sym_DASH_GT] = ACTIONS(1335), - [sym_comment] = ACTIONS(85), + [222] = { + [anon_sym_COMMA] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_LPAREN2] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_RBRACK] = ACTIONS(1225), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_COLON] = ACTIONS(1225), + [anon_sym_else] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_QMARK] = ACTIONS(1225), + [anon_sym_STAR_EQ] = ACTIONS(1225), + [anon_sym_SLASH_EQ] = ACTIONS(1225), + [anon_sym_PERCENT_EQ] = ACTIONS(1225), + [anon_sym_PLUS_EQ] = ACTIONS(1225), + [anon_sym_DASH_EQ] = ACTIONS(1225), + [anon_sym_LT_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_GT_EQ] = ACTIONS(1225), + [anon_sym_AMP_EQ] = ACTIONS(1225), + [anon_sym_CARET_EQ] = ACTIONS(1225), + [anon_sym_PIPE_EQ] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1225), + [anon_sym_AMP_AMP] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1225), + [anon_sym_PLUS_PLUS] = ACTIONS(1225), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_DASH_GT] = ACTIONS(1225), + [sym_comment] = ACTIONS(81), }, - [244] = { - [sym__expression] = STATE(361), - [sym_conditional_expression] = STATE(361), - [sym_assignment_expression] = STATE(361), - [sym_pointer_expression] = STATE(361), - [sym_logical_expression] = STATE(361), - [sym_bitwise_expression] = STATE(361), - [sym_equality_expression] = STATE(361), - [sym_relational_expression] = STATE(361), - [sym_shift_expression] = STATE(361), - [sym_math_expression] = STATE(361), - [sym_cast_expression] = STATE(361), - [sym_sizeof_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_call_expression] = STATE(361), - [sym_field_expression] = STATE(361), - [sym_compound_literal_expression] = STATE(361), - [sym_parenthesized_expression] = STATE(361), - [sym_char_literal] = STATE(361), - [sym_concatenated_string] = STATE(361), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(767), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(769), - [sym_false] = ACTIONS(769), - [sym_null] = ACTIONS(769), - [sym_identifier] = ACTIONS(769), - [sym_comment] = ACTIONS(85), + [223] = { + [sym__expression] = STATE(316), + [sym_conditional_expression] = STATE(316), + [sym_assignment_expression] = STATE(316), + [sym_pointer_expression] = STATE(316), + [sym_logical_expression] = STATE(316), + [sym_bitwise_expression] = STATE(316), + [sym_equality_expression] = STATE(316), + [sym_relational_expression] = STATE(316), + [sym_shift_expression] = STATE(316), + [sym_math_expression] = STATE(316), + [sym_cast_expression] = STATE(316), + [sym_sizeof_expression] = STATE(316), + [sym_subscript_expression] = STATE(316), + [sym_call_expression] = STATE(316), + [sym_field_expression] = STATE(316), + [sym_compound_literal_expression] = STATE(316), + [sym_parenthesized_expression] = STATE(316), + [sym_char_literal] = STATE(316), + [sym_concatenated_string] = STATE(316), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(677), + [sym_false] = ACTIONS(677), + [sym_null] = ACTIONS(677), + [sym_identifier] = ACTIONS(677), + [sym_comment] = ACTIONS(81), }, - [245] = { - [sym__expression] = STATE(506), - [sym_conditional_expression] = STATE(506), - [sym_assignment_expression] = STATE(506), - [sym_pointer_expression] = STATE(506), - [sym_logical_expression] = STATE(506), - [sym_bitwise_expression] = STATE(506), - [sym_equality_expression] = STATE(506), - [sym_relational_expression] = STATE(506), - [sym_shift_expression] = STATE(506), - [sym_math_expression] = STATE(506), - [sym_cast_expression] = STATE(506), - [sym_sizeof_expression] = STATE(506), - [sym_subscript_expression] = STATE(506), - [sym_call_expression] = STATE(506), - [sym_field_expression] = STATE(506), - [sym_compound_literal_expression] = STATE(506), - [sym_parenthesized_expression] = STATE(506), - [sym_char_literal] = STATE(506), - [sym_concatenated_string] = STATE(506), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1341), - [sym_false] = ACTIONS(1341), - [sym_null] = ACTIONS(1341), - [sym_identifier] = ACTIONS(1341), - [sym_comment] = ACTIONS(85), + [224] = { + [sym__expression] = STATE(459), + [sym_conditional_expression] = STATE(459), + [sym_assignment_expression] = STATE(459), + [sym_pointer_expression] = STATE(459), + [sym_logical_expression] = STATE(459), + [sym_bitwise_expression] = STATE(459), + [sym_equality_expression] = STATE(459), + [sym_relational_expression] = STATE(459), + [sym_shift_expression] = STATE(459), + [sym_math_expression] = STATE(459), + [sym_cast_expression] = STATE(459), + [sym_sizeof_expression] = STATE(459), + [sym_subscript_expression] = STATE(459), + [sym_call_expression] = STATE(459), + [sym_field_expression] = STATE(459), + [sym_compound_literal_expression] = STATE(459), + [sym_parenthesized_expression] = STATE(459), + [sym_char_literal] = STATE(459), + [sym_concatenated_string] = STATE(459), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1231), + [sym_false] = ACTIONS(1231), + [sym_null] = ACTIONS(1231), + [sym_identifier] = ACTIONS(1231), + [sym_comment] = ACTIONS(81), }, - [246] = { - [sym__expression] = STATE(507), - [sym_conditional_expression] = STATE(507), - [sym_assignment_expression] = STATE(507), - [sym_pointer_expression] = STATE(507), - [sym_logical_expression] = STATE(507), - [sym_bitwise_expression] = STATE(507), - [sym_equality_expression] = STATE(507), - [sym_relational_expression] = STATE(507), - [sym_shift_expression] = STATE(507), - [sym_math_expression] = STATE(507), - [sym_cast_expression] = STATE(507), - [sym_sizeof_expression] = STATE(507), - [sym_subscript_expression] = STATE(507), - [sym_call_expression] = STATE(507), - [sym_field_expression] = STATE(507), - [sym_compound_literal_expression] = STATE(507), - [sym_parenthesized_expression] = STATE(507), - [sym_char_literal] = STATE(507), - [sym_concatenated_string] = STATE(507), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1345), - [sym_false] = ACTIONS(1345), - [sym_null] = ACTIONS(1345), - [sym_identifier] = ACTIONS(1345), - [sym_comment] = ACTIONS(85), + [225] = { + [sym__expression] = STATE(460), + [sym_conditional_expression] = STATE(460), + [sym_assignment_expression] = STATE(460), + [sym_pointer_expression] = STATE(460), + [sym_logical_expression] = STATE(460), + [sym_bitwise_expression] = STATE(460), + [sym_equality_expression] = STATE(460), + [sym_relational_expression] = STATE(460), + [sym_shift_expression] = STATE(460), + [sym_math_expression] = STATE(460), + [sym_cast_expression] = STATE(460), + [sym_sizeof_expression] = STATE(460), + [sym_subscript_expression] = STATE(460), + [sym_call_expression] = STATE(460), + [sym_field_expression] = STATE(460), + [sym_compound_literal_expression] = STATE(460), + [sym_parenthesized_expression] = STATE(460), + [sym_char_literal] = STATE(460), + [sym_concatenated_string] = STATE(460), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(1233), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1235), + [sym_false] = ACTIONS(1235), + [sym_null] = ACTIONS(1235), + [sym_identifier] = ACTIONS(1235), + [sym_comment] = ACTIONS(81), }, - [247] = { - [sym__expression] = STATE(508), - [sym_conditional_expression] = STATE(508), - [sym_assignment_expression] = STATE(508), - [sym_pointer_expression] = STATE(508), - [sym_logical_expression] = STATE(508), - [sym_bitwise_expression] = STATE(508), - [sym_equality_expression] = STATE(508), - [sym_relational_expression] = STATE(508), - [sym_shift_expression] = STATE(508), - [sym_math_expression] = STATE(508), - [sym_cast_expression] = STATE(508), - [sym_sizeof_expression] = STATE(508), - [sym_subscript_expression] = STATE(508), - [sym_call_expression] = STATE(508), - [sym_field_expression] = STATE(508), - [sym_compound_literal_expression] = STATE(508), - [sym_parenthesized_expression] = STATE(508), - [sym_char_literal] = STATE(508), - [sym_concatenated_string] = STATE(508), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1349), - [sym_false] = ACTIONS(1349), - [sym_null] = ACTIONS(1349), - [sym_identifier] = ACTIONS(1349), - [sym_comment] = ACTIONS(85), + [226] = { + [sym__expression] = STATE(461), + [sym_conditional_expression] = STATE(461), + [sym_assignment_expression] = STATE(461), + [sym_pointer_expression] = STATE(461), + [sym_logical_expression] = STATE(461), + [sym_bitwise_expression] = STATE(461), + [sym_equality_expression] = STATE(461), + [sym_relational_expression] = STATE(461), + [sym_shift_expression] = STATE(461), + [sym_math_expression] = STATE(461), + [sym_cast_expression] = STATE(461), + [sym_sizeof_expression] = STATE(461), + [sym_subscript_expression] = STATE(461), + [sym_call_expression] = STATE(461), + [sym_field_expression] = STATE(461), + [sym_compound_literal_expression] = STATE(461), + [sym_parenthesized_expression] = STATE(461), + [sym_char_literal] = STATE(461), + [sym_concatenated_string] = STATE(461), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(1237), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1239), + [sym_false] = ACTIONS(1239), + [sym_null] = ACTIONS(1239), + [sym_identifier] = ACTIONS(1239), + [sym_comment] = ACTIONS(81), }, - [248] = { - [sym__expression] = STATE(509), - [sym_conditional_expression] = STATE(509), - [sym_assignment_expression] = STATE(509), - [sym_pointer_expression] = STATE(509), - [sym_logical_expression] = STATE(509), - [sym_bitwise_expression] = STATE(509), - [sym_equality_expression] = STATE(509), - [sym_relational_expression] = STATE(509), - [sym_shift_expression] = STATE(509), - [sym_math_expression] = STATE(509), - [sym_cast_expression] = STATE(509), - [sym_sizeof_expression] = STATE(509), - [sym_subscript_expression] = STATE(509), - [sym_call_expression] = STATE(509), - [sym_field_expression] = STATE(509), - [sym_compound_literal_expression] = STATE(509), - [sym_parenthesized_expression] = STATE(509), - [sym_char_literal] = STATE(509), - [sym_concatenated_string] = STATE(509), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [sym_null] = ACTIONS(1353), - [sym_identifier] = ACTIONS(1353), - [sym_comment] = ACTIONS(85), + [227] = { + [sym__expression] = STATE(462), + [sym_conditional_expression] = STATE(462), + [sym_assignment_expression] = STATE(462), + [sym_pointer_expression] = STATE(462), + [sym_logical_expression] = STATE(462), + [sym_bitwise_expression] = STATE(462), + [sym_equality_expression] = STATE(462), + [sym_relational_expression] = STATE(462), + [sym_shift_expression] = STATE(462), + [sym_math_expression] = STATE(462), + [sym_cast_expression] = STATE(462), + [sym_sizeof_expression] = STATE(462), + [sym_subscript_expression] = STATE(462), + [sym_call_expression] = STATE(462), + [sym_field_expression] = STATE(462), + [sym_compound_literal_expression] = STATE(462), + [sym_parenthesized_expression] = STATE(462), + [sym_char_literal] = STATE(462), + [sym_concatenated_string] = STATE(462), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1243), + [sym_false] = ACTIONS(1243), + [sym_null] = ACTIONS(1243), + [sym_identifier] = ACTIONS(1243), + [sym_comment] = ACTIONS(81), }, - [249] = { - [sym__expression] = STATE(510), - [sym_conditional_expression] = STATE(510), - [sym_assignment_expression] = STATE(510), - [sym_pointer_expression] = STATE(510), - [sym_logical_expression] = STATE(510), - [sym_bitwise_expression] = STATE(510), - [sym_equality_expression] = STATE(510), - [sym_relational_expression] = STATE(510), - [sym_shift_expression] = STATE(510), - [sym_math_expression] = STATE(510), - [sym_cast_expression] = STATE(510), - [sym_sizeof_expression] = STATE(510), - [sym_subscript_expression] = STATE(510), - [sym_call_expression] = STATE(510), - [sym_field_expression] = STATE(510), - [sym_compound_literal_expression] = STATE(510), - [sym_parenthesized_expression] = STATE(510), - [sym_char_literal] = STATE(510), - [sym_concatenated_string] = STATE(510), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1357), - [sym_false] = ACTIONS(1357), - [sym_null] = ACTIONS(1357), - [sym_identifier] = ACTIONS(1357), - [sym_comment] = ACTIONS(85), + [228] = { + [sym__expression] = STATE(463), + [sym_conditional_expression] = STATE(463), + [sym_assignment_expression] = STATE(463), + [sym_pointer_expression] = STATE(463), + [sym_logical_expression] = STATE(463), + [sym_bitwise_expression] = STATE(463), + [sym_equality_expression] = STATE(463), + [sym_relational_expression] = STATE(463), + [sym_shift_expression] = STATE(463), + [sym_math_expression] = STATE(463), + [sym_cast_expression] = STATE(463), + [sym_sizeof_expression] = STATE(463), + [sym_subscript_expression] = STATE(463), + [sym_call_expression] = STATE(463), + [sym_field_expression] = STATE(463), + [sym_compound_literal_expression] = STATE(463), + [sym_parenthesized_expression] = STATE(463), + [sym_char_literal] = STATE(463), + [sym_concatenated_string] = STATE(463), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(1245), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [sym_null] = ACTIONS(1247), + [sym_identifier] = ACTIONS(1247), + [sym_comment] = ACTIONS(81), }, - [250] = { - [sym__expression] = STATE(511), - [sym_conditional_expression] = STATE(511), - [sym_assignment_expression] = STATE(511), - [sym_pointer_expression] = STATE(511), - [sym_logical_expression] = STATE(511), - [sym_bitwise_expression] = STATE(511), - [sym_equality_expression] = STATE(511), - [sym_relational_expression] = STATE(511), - [sym_shift_expression] = STATE(511), - [sym_math_expression] = STATE(511), - [sym_cast_expression] = STATE(511), - [sym_sizeof_expression] = STATE(511), - [sym_subscript_expression] = STATE(511), - [sym_call_expression] = STATE(511), - [sym_field_expression] = STATE(511), - [sym_compound_literal_expression] = STATE(511), - [sym_parenthesized_expression] = STATE(511), - [sym_char_literal] = STATE(511), - [sym_concatenated_string] = STATE(511), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1361), - [sym_false] = ACTIONS(1361), - [sym_null] = ACTIONS(1361), - [sym_identifier] = ACTIONS(1361), - [sym_comment] = ACTIONS(85), + [229] = { + [sym__expression] = STATE(464), + [sym_conditional_expression] = STATE(464), + [sym_assignment_expression] = STATE(464), + [sym_pointer_expression] = STATE(464), + [sym_logical_expression] = STATE(464), + [sym_bitwise_expression] = STATE(464), + [sym_equality_expression] = STATE(464), + [sym_relational_expression] = STATE(464), + [sym_shift_expression] = STATE(464), + [sym_math_expression] = STATE(464), + [sym_cast_expression] = STATE(464), + [sym_sizeof_expression] = STATE(464), + [sym_subscript_expression] = STATE(464), + [sym_call_expression] = STATE(464), + [sym_field_expression] = STATE(464), + [sym_compound_literal_expression] = STATE(464), + [sym_parenthesized_expression] = STATE(464), + [sym_char_literal] = STATE(464), + [sym_concatenated_string] = STATE(464), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(1249), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1251), + [sym_false] = ACTIONS(1251), + [sym_null] = ACTIONS(1251), + [sym_identifier] = ACTIONS(1251), + [sym_comment] = ACTIONS(81), }, - [251] = { - [sym__expression] = STATE(512), - [sym_conditional_expression] = STATE(512), - [sym_assignment_expression] = STATE(512), - [sym_pointer_expression] = STATE(512), - [sym_logical_expression] = STATE(512), - [sym_bitwise_expression] = STATE(512), - [sym_equality_expression] = STATE(512), - [sym_relational_expression] = STATE(512), - [sym_shift_expression] = STATE(512), - [sym_math_expression] = STATE(512), - [sym_cast_expression] = STATE(512), - [sym_sizeof_expression] = STATE(512), - [sym_subscript_expression] = STATE(512), - [sym_call_expression] = STATE(512), - [sym_field_expression] = STATE(512), - [sym_compound_literal_expression] = STATE(512), - [sym_parenthesized_expression] = STATE(512), - [sym_char_literal] = STATE(512), - [sym_concatenated_string] = STATE(512), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1365), - [sym_false] = ACTIONS(1365), - [sym_null] = ACTIONS(1365), - [sym_identifier] = ACTIONS(1365), - [sym_comment] = ACTIONS(85), + [230] = { + [sym__expression] = STATE(465), + [sym_conditional_expression] = STATE(465), + [sym_assignment_expression] = STATE(465), + [sym_pointer_expression] = STATE(465), + [sym_logical_expression] = STATE(465), + [sym_bitwise_expression] = STATE(465), + [sym_equality_expression] = STATE(465), + [sym_relational_expression] = STATE(465), + [sym_shift_expression] = STATE(465), + [sym_math_expression] = STATE(465), + [sym_cast_expression] = STATE(465), + [sym_sizeof_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_call_expression] = STATE(465), + [sym_field_expression] = STATE(465), + [sym_compound_literal_expression] = STATE(465), + [sym_parenthesized_expression] = STATE(465), + [sym_char_literal] = STATE(465), + [sym_concatenated_string] = STATE(465), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1255), + [sym_false] = ACTIONS(1255), + [sym_null] = ACTIONS(1255), + [sym_identifier] = ACTIONS(1255), + [sym_comment] = ACTIONS(81), }, - [252] = { - [sym__expression] = STATE(513), - [sym_conditional_expression] = STATE(513), - [sym_assignment_expression] = STATE(513), - [sym_pointer_expression] = STATE(513), - [sym_logical_expression] = STATE(513), - [sym_bitwise_expression] = STATE(513), - [sym_equality_expression] = STATE(513), - [sym_relational_expression] = STATE(513), - [sym_shift_expression] = STATE(513), - [sym_math_expression] = STATE(513), - [sym_cast_expression] = STATE(513), - [sym_sizeof_expression] = STATE(513), - [sym_subscript_expression] = STATE(513), - [sym_call_expression] = STATE(513), - [sym_field_expression] = STATE(513), - [sym_compound_literal_expression] = STATE(513), - [sym_parenthesized_expression] = STATE(513), - [sym_char_literal] = STATE(513), - [sym_concatenated_string] = STATE(513), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1369), - [sym_false] = ACTIONS(1369), - [sym_null] = ACTIONS(1369), - [sym_identifier] = ACTIONS(1369), - [sym_comment] = ACTIONS(85), + [231] = { + [sym__expression] = STATE(466), + [sym_conditional_expression] = STATE(466), + [sym_assignment_expression] = STATE(466), + [sym_pointer_expression] = STATE(466), + [sym_logical_expression] = STATE(466), + [sym_bitwise_expression] = STATE(466), + [sym_equality_expression] = STATE(466), + [sym_relational_expression] = STATE(466), + [sym_shift_expression] = STATE(466), + [sym_math_expression] = STATE(466), + [sym_cast_expression] = STATE(466), + [sym_sizeof_expression] = STATE(466), + [sym_subscript_expression] = STATE(466), + [sym_call_expression] = STATE(466), + [sym_field_expression] = STATE(466), + [sym_compound_literal_expression] = STATE(466), + [sym_parenthesized_expression] = STATE(466), + [sym_char_literal] = STATE(466), + [sym_concatenated_string] = STATE(466), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [sym_null] = ACTIONS(1259), + [sym_identifier] = ACTIONS(1259), + [sym_comment] = ACTIONS(81), }, - [253] = { - [sym__expression] = STATE(514), - [sym_conditional_expression] = STATE(514), - [sym_assignment_expression] = STATE(514), - [sym_pointer_expression] = STATE(514), - [sym_logical_expression] = STATE(514), - [sym_bitwise_expression] = STATE(514), - [sym_equality_expression] = STATE(514), - [sym_relational_expression] = STATE(514), - [sym_shift_expression] = STATE(514), - [sym_math_expression] = STATE(514), - [sym_cast_expression] = STATE(514), - [sym_sizeof_expression] = STATE(514), - [sym_subscript_expression] = STATE(514), - [sym_call_expression] = STATE(514), - [sym_field_expression] = STATE(514), - [sym_compound_literal_expression] = STATE(514), - [sym_parenthesized_expression] = STATE(514), - [sym_char_literal] = STATE(514), - [sym_concatenated_string] = STATE(514), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1373), - [sym_false] = ACTIONS(1373), - [sym_null] = ACTIONS(1373), - [sym_identifier] = ACTIONS(1373), - [sym_comment] = ACTIONS(85), + [232] = { + [sym__expression] = STATE(467), + [sym_conditional_expression] = STATE(467), + [sym_assignment_expression] = STATE(467), + [sym_pointer_expression] = STATE(467), + [sym_logical_expression] = STATE(467), + [sym_bitwise_expression] = STATE(467), + [sym_equality_expression] = STATE(467), + [sym_relational_expression] = STATE(467), + [sym_shift_expression] = STATE(467), + [sym_math_expression] = STATE(467), + [sym_cast_expression] = STATE(467), + [sym_sizeof_expression] = STATE(467), + [sym_subscript_expression] = STATE(467), + [sym_call_expression] = STATE(467), + [sym_field_expression] = STATE(467), + [sym_compound_literal_expression] = STATE(467), + [sym_parenthesized_expression] = STATE(467), + [sym_char_literal] = STATE(467), + [sym_concatenated_string] = STATE(467), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [sym_null] = ACTIONS(1263), + [sym_identifier] = ACTIONS(1263), + [sym_comment] = ACTIONS(81), }, - [254] = { - [sym__expression] = STATE(515), - [sym_conditional_expression] = STATE(515), - [sym_assignment_expression] = STATE(515), - [sym_pointer_expression] = STATE(515), - [sym_logical_expression] = STATE(515), - [sym_bitwise_expression] = STATE(515), - [sym_equality_expression] = STATE(515), - [sym_relational_expression] = STATE(515), - [sym_shift_expression] = STATE(515), - [sym_math_expression] = STATE(515), - [sym_cast_expression] = STATE(515), - [sym_sizeof_expression] = STATE(515), - [sym_subscript_expression] = STATE(515), - [sym_call_expression] = STATE(515), - [sym_field_expression] = STATE(515), - [sym_compound_literal_expression] = STATE(515), - [sym_parenthesized_expression] = STATE(515), - [sym_char_literal] = STATE(515), - [sym_concatenated_string] = STATE(515), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1377), - [sym_false] = ACTIONS(1377), - [sym_null] = ACTIONS(1377), - [sym_identifier] = ACTIONS(1377), - [sym_comment] = ACTIONS(85), + [233] = { + [sym__expression] = STATE(468), + [sym_conditional_expression] = STATE(468), + [sym_assignment_expression] = STATE(468), + [sym_pointer_expression] = STATE(468), + [sym_logical_expression] = STATE(468), + [sym_bitwise_expression] = STATE(468), + [sym_equality_expression] = STATE(468), + [sym_relational_expression] = STATE(468), + [sym_shift_expression] = STATE(468), + [sym_math_expression] = STATE(468), + [sym_cast_expression] = STATE(468), + [sym_sizeof_expression] = STATE(468), + [sym_subscript_expression] = STATE(468), + [sym_call_expression] = STATE(468), + [sym_field_expression] = STATE(468), + [sym_compound_literal_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_char_literal] = STATE(468), + [sym_concatenated_string] = STATE(468), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [sym_null] = ACTIONS(1267), + [sym_identifier] = ACTIONS(1267), + [sym_comment] = ACTIONS(81), }, - [255] = { - [sym__expression] = STATE(516), - [sym_conditional_expression] = STATE(516), - [sym_assignment_expression] = STATE(516), - [sym_pointer_expression] = STATE(516), - [sym_logical_expression] = STATE(516), - [sym_bitwise_expression] = STATE(516), - [sym_equality_expression] = STATE(516), - [sym_relational_expression] = STATE(516), - [sym_shift_expression] = STATE(516), - [sym_math_expression] = STATE(516), - [sym_cast_expression] = STATE(516), - [sym_sizeof_expression] = STATE(516), - [sym_subscript_expression] = STATE(516), - [sym_call_expression] = STATE(516), - [sym_field_expression] = STATE(516), - [sym_compound_literal_expression] = STATE(516), - [sym_parenthesized_expression] = STATE(516), - [sym_char_literal] = STATE(516), - [sym_concatenated_string] = STATE(516), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1381), - [sym_false] = ACTIONS(1381), - [sym_null] = ACTIONS(1381), - [sym_identifier] = ACTIONS(1381), - [sym_comment] = ACTIONS(85), + [234] = { + [sym__expression] = STATE(469), + [sym_conditional_expression] = STATE(469), + [sym_assignment_expression] = STATE(469), + [sym_pointer_expression] = STATE(469), + [sym_logical_expression] = STATE(469), + [sym_bitwise_expression] = STATE(469), + [sym_equality_expression] = STATE(469), + [sym_relational_expression] = STATE(469), + [sym_shift_expression] = STATE(469), + [sym_math_expression] = STATE(469), + [sym_cast_expression] = STATE(469), + [sym_sizeof_expression] = STATE(469), + [sym_subscript_expression] = STATE(469), + [sym_call_expression] = STATE(469), + [sym_field_expression] = STATE(469), + [sym_compound_literal_expression] = STATE(469), + [sym_parenthesized_expression] = STATE(469), + [sym_char_literal] = STATE(469), + [sym_concatenated_string] = STATE(469), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [sym_null] = ACTIONS(1271), + [sym_identifier] = ACTIONS(1271), + [sym_comment] = ACTIONS(81), }, - [256] = { - [sym__expression] = STATE(518), - [sym_conditional_expression] = STATE(518), - [sym_assignment_expression] = STATE(518), - [sym_pointer_expression] = STATE(518), - [sym_logical_expression] = STATE(518), - [sym_bitwise_expression] = STATE(518), - [sym_equality_expression] = STATE(518), - [sym_relational_expression] = STATE(518), - [sym_shift_expression] = STATE(518), - [sym_math_expression] = STATE(518), - [sym_cast_expression] = STATE(518), - [sym_sizeof_expression] = STATE(518), - [sym_subscript_expression] = STATE(518), - [sym_call_expression] = STATE(518), - [sym_field_expression] = STATE(518), - [sym_compound_literal_expression] = STATE(518), - [sym_parenthesized_expression] = STATE(518), - [sym_initializer_list] = STATE(519), - [sym_char_literal] = STATE(518), - [sym_concatenated_string] = STATE(518), - [sym_string_literal] = STATE(41), - [anon_sym_LBRACE] = ACTIONS(1383), + [235] = { + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_pointer_expression] = STATE(471), + [sym_logical_expression] = STATE(471), + [sym_bitwise_expression] = STATE(471), + [sym_equality_expression] = STATE(471), + [sym_relational_expression] = STATE(471), + [sym_shift_expression] = STATE(471), + [sym_math_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(471), + [sym_call_expression] = STATE(471), + [sym_field_expression] = STATE(471), + [sym_compound_literal_expression] = STATE(471), + [sym_parenthesized_expression] = STATE(471), + [sym_initializer_list] = STATE(472), + [sym_char_literal] = STATE(471), + [sym_concatenated_string] = STATE(471), + [sym_string_literal] = STATE(39), + [anon_sym_LBRACE] = ACTIONS(1273), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1387), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [sym_null] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1277), + [sym_comment] = ACTIONS(81), }, - [257] = { - [sym_string_literal] = STATE(520), - [aux_sym_concatenated_string_repeat1] = STATE(520), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [anon_sym_LPAREN2] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_STAR_EQ] = ACTIONS(839), - [anon_sym_SLASH_EQ] = ACTIONS(839), - [anon_sym_PERCENT_EQ] = ACTIONS(839), - [anon_sym_PLUS_EQ] = ACTIONS(839), - [anon_sym_DASH_EQ] = ACTIONS(839), - [anon_sym_LT_LT_EQ] = ACTIONS(839), - [anon_sym_GT_GT_EQ] = ACTIONS(839), - [anon_sym_AMP_EQ] = ACTIONS(839), - [anon_sym_CARET_EQ] = ACTIONS(839), - [anon_sym_PIPE_EQ] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(841), - [anon_sym_PIPE_PIPE] = ACTIONS(839), - [anon_sym_AMP_AMP] = ACTIONS(839), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(839), - [anon_sym_BANG_EQ] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_LT_EQ] = ACTIONS(839), - [anon_sym_GT_EQ] = ACTIONS(839), - [anon_sym_LT_LT] = ACTIONS(841), - [anon_sym_GT_GT] = ACTIONS(841), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_PERCENT] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(839), - [anon_sym_PLUS_PLUS] = ACTIONS(839), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_DASH_GT] = ACTIONS(839), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_comment] = ACTIONS(85), + [236] = { + [sym_string_literal] = STATE(473), + [aux_sym_concatenated_string_repeat1] = STATE(473), + [anon_sym_COMMA] = ACTIONS(761), + [anon_sym_RPAREN] = ACTIONS(761), + [anon_sym_LPAREN2] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_STAR_EQ] = ACTIONS(761), + [anon_sym_SLASH_EQ] = ACTIONS(761), + [anon_sym_PERCENT_EQ] = ACTIONS(761), + [anon_sym_PLUS_EQ] = ACTIONS(761), + [anon_sym_DASH_EQ] = ACTIONS(761), + [anon_sym_LT_LT_EQ] = ACTIONS(761), + [anon_sym_GT_GT_EQ] = ACTIONS(761), + [anon_sym_AMP_EQ] = ACTIONS(761), + [anon_sym_CARET_EQ] = ACTIONS(761), + [anon_sym_PIPE_EQ] = ACTIONS(761), + [anon_sym_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(761), + [anon_sym_AMP_AMP] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_CARET] = ACTIONS(763), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_LT_LT] = ACTIONS(763), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_PERCENT] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(761), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_comment] = ACTIONS(81), }, - [258] = { - [sym__abstract_declarator] = STATE(521), - [sym_abstract_pointer_declarator] = STATE(521), - [sym_abstract_function_declarator] = STATE(521), - [sym_abstract_array_declarator] = STATE(521), - [sym_parameter_list] = STATE(241), - [anon_sym_RPAREN] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(487), - [anon_sym_LBRACK] = ACTIONS(489), - [sym_comment] = ACTIONS(85), + [237] = { + [sym__abstract_declarator] = STATE(474), + [sym_abstract_pointer_declarator] = STATE(474), + [sym_abstract_function_declarator] = STATE(474), + [sym_abstract_array_declarator] = STATE(474), + [sym_parameter_list] = STATE(220), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(445), + [sym_comment] = ACTIONS(81), }, - [259] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(259), - [anon_sym_RPAREN] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_unsigned] = ACTIONS(1389), - [anon_sym_long] = ACTIONS(1389), - [anon_sym_short] = ACTIONS(1389), - [sym_primitive_type] = ACTIONS(980), - [sym_identifier] = ACTIONS(980), - [sym_comment] = ACTIONS(85), + [238] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(238), + [anon_sym_RPAREN] = ACTIONS(894), + [anon_sym_LPAREN2] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(896), + [sym_identifier] = ACTIONS(896), + [sym_comment] = ACTIONS(81), }, - [260] = { - [anon_sym_RBRACE] = ACTIONS(1392), - [sym_comment] = ACTIONS(85), + [239] = { + [anon_sym_RBRACE] = ACTIONS(1282), + [sym_comment] = ACTIONS(81), }, - [261] = { - [anon_sym_COMMA] = ACTIONS(1394), - [anon_sym_RPAREN] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym_LPAREN2] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_auto] = ACTIONS(1396), - [anon_sym_register] = ACTIONS(1396), - [anon_sym_inline] = ACTIONS(1396), - [anon_sym_const] = ACTIONS(1396), - [anon_sym_restrict] = ACTIONS(1396), - [anon_sym_volatile] = ACTIONS(1396), - [anon_sym__Atomic] = ACTIONS(1396), - [anon_sym_COLON] = ACTIONS(1394), - [sym_identifier] = ACTIONS(1396), - [sym_comment] = ACTIONS(85), + [240] = { + [anon_sym_COMMA] = ACTIONS(1284), + [anon_sym_RPAREN] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym_LPAREN2] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_LBRACK] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_restrict] = ACTIONS(1286), + [anon_sym_volatile] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(1286), + [anon_sym_COLON] = ACTIONS(1284), + [sym_identifier] = ACTIONS(1286), + [sym_comment] = ACTIONS(81), }, - [262] = { - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_EQ] = ACTIONS(1400), - [sym_comment] = ACTIONS(85), + [241] = { + [anon_sym_COMMA] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_EQ] = ACTIONS(1290), + [sym_comment] = ACTIONS(81), }, - [263] = { - [aux_sym_enumerator_list_repeat1] = STATE(525), - [anon_sym_COMMA] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1392), - [sym_comment] = ACTIONS(85), + [242] = { + [aux_sym_enumerator_list_repeat1] = STATE(478), + [anon_sym_COMMA] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1282), + [sym_comment] = ACTIONS(81), }, - [264] = { - [anon_sym_COMMA] = ACTIONS(1404), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym_COLON] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1406), - [sym_comment] = ACTIONS(85), + [243] = { + [anon_sym_COMMA] = ACTIONS(1294), + [anon_sym_RPAREN] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym_COLON] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1296), + [sym_comment] = ACTIONS(81), }, - [265] = { - [sym_preproc_arg] = ACTIONS(1408), - [sym_comment] = ACTIONS(95), + [244] = { + [sym_preproc_arg] = ACTIONS(1298), + [sym_comment] = ACTIONS(91), }, - [266] = { - [sym_identifier] = ACTIONS(1410), - [sym_comment] = ACTIONS(85), + [245] = { + [sym_identifier] = ACTIONS(1300), + [sym_comment] = ACTIONS(81), }, - [267] = { - [anon_sym_COMMA] = ACTIONS(1412), - [anon_sym_RPAREN] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(1412), - [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_COLON] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1414), - [sym_comment] = ACTIONS(85), + [246] = { + [anon_sym_COMMA] = ACTIONS(1302), + [anon_sym_RPAREN] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym_COLON] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1304), + [sym_comment] = ACTIONS(81), }, - [268] = { - [sym__field_declarator] = STATE(533), - [sym_pointer_field_declarator] = STATE(533), - [sym_function_field_declarator] = STATE(533), - [sym_array_field_declarator] = STATE(533), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_LPAREN2] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_COLON] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1424), - [sym_comment] = ACTIONS(85), + [247] = { + [sym__field_declarator] = STATE(486), + [sym_pointer_field_declarator] = STATE(486), + [sym_function_field_declarator] = STATE(486), + [sym_array_field_declarator] = STATE(486), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_COLON] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1314), + [sym_comment] = ACTIONS(81), }, - [269] = { - [sym_storage_class_specifier] = STATE(534), - [sym_type_qualifier] = STATE(534), - [aux_sym__declaration_specifiers_repeat1] = STATE(534), - [anon_sym_SEMI] = ACTIONS(299), + [248] = { + [sym_storage_class_specifier] = STATE(487), + [sym_type_qualifier] = STATE(487), + [aux_sym__declaration_specifiers_repeat1] = STATE(487), + [anon_sym_SEMI] = ACTIONS(265), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(299), + [anon_sym_LPAREN2] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(265), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -14854,32 +13982,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_COLON] = ACTIONS(299), - [sym_identifier] = ACTIONS(301), - [sym_comment] = ACTIONS(85), + [anon_sym_COLON] = ACTIONS(265), + [sym_identifier] = ACTIONS(267), + [sym_comment] = ACTIONS(81), }, - [270] = { - [sym_preproc_if_in_field_declaration_list] = STATE(536), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(536), - [sym__declaration_specifiers] = STATE(268), - [sym_storage_class_specifier] = STATE(271), - [sym_type_qualifier] = STATE(271), - [sym__type_specifier] = STATE(269), - [sym_sized_type_specifier] = STATE(269), - [sym_enum_specifier] = STATE(269), - [sym_struct_specifier] = STATE(269), - [sym_union_specifier] = STATE(269), - [sym__field_declaration_list_item] = STATE(536), - [sym_field_declaration] = STATE(536), - [sym_macro_type_specifier] = STATE(269), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(536), - [aux_sym__declaration_specifiers_repeat1] = STATE(271), - [aux_sym_sized_type_specifier_repeat1] = STATE(272), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(551), + [249] = { + [sym_preproc_if_in_field_declaration_list] = STATE(489), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(489), + [sym__declaration_specifiers] = STATE(247), + [sym_storage_class_specifier] = STATE(250), + [sym_type_qualifier] = STATE(250), + [sym__type_specifier] = STATE(248), + [sym_sized_type_specifier] = STATE(248), + [sym_enum_specifier] = STATE(248), + [sym_struct_specifier] = STATE(248), + [sym_union_specifier] = STATE(248), + [sym__field_declaration_list_item] = STATE(489), + [sym_field_declaration] = STATE(489), + [sym_macro_type_specifier] = STATE(248), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(489), + [aux_sym__declaration_specifiers_repeat1] = STATE(250), + [aux_sym_sized_type_specifier_repeat1] = STATE(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(507), [anon_sym_extern] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1316), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -14888,27 +14016,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(557), + [anon_sym_unsigned] = ACTIONS(511), + [anon_sym_long] = ACTIONS(511), + [anon_sym_short] = ACTIONS(511), + [sym_primitive_type] = ACTIONS(513), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [271] = { - [sym_storage_class_specifier] = STATE(165), - [sym_type_qualifier] = STATE(165), - [sym__type_specifier] = STATE(537), - [sym_sized_type_specifier] = STATE(537), - [sym_enum_specifier] = STATE(537), - [sym_struct_specifier] = STATE(537), - [sym_union_specifier] = STATE(537), - [sym_macro_type_specifier] = STATE(537), - [aux_sym__declaration_specifiers_repeat1] = STATE(165), - [aux_sym_sized_type_specifier_repeat1] = STATE(272), + [250] = { + [sym_storage_class_specifier] = STATE(149), + [sym_type_qualifier] = STATE(149), + [sym__type_specifier] = STATE(490), + [sym_sized_type_specifier] = STATE(490), + [sym_enum_specifier] = STATE(490), + [sym_struct_specifier] = STATE(490), + [sym_union_specifier] = STATE(490), + [sym_macro_type_specifier] = STATE(490), + [aux_sym__declaration_specifiers_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(251), [anon_sym_extern] = ACTIONS(29), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), @@ -14918,1525 +14046,634 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(1428), + [anon_sym_unsigned] = ACTIONS(511), + [anon_sym_long] = ACTIONS(511), + [anon_sym_short] = ACTIONS(511), + [sym_primitive_type] = ACTIONS(1318), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [272] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(538), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_extern] = ACTIONS(349), - [anon_sym_LPAREN2] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_static] = ACTIONS(349), - [anon_sym_auto] = ACTIONS(349), - [anon_sym_register] = ACTIONS(349), - [anon_sym_inline] = ACTIONS(349), - [anon_sym_const] = ACTIONS(349), - [anon_sym_restrict] = ACTIONS(349), - [anon_sym_volatile] = ACTIONS(349), - [anon_sym__Atomic] = ACTIONS(349), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(353), - [anon_sym_COLON] = ACTIONS(347), - [sym_identifier] = ACTIONS(355), - [sym_comment] = ACTIONS(85), + [251] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(491), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_extern] = ACTIONS(315), + [anon_sym_LPAREN2] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(313), + [anon_sym_static] = ACTIONS(315), + [anon_sym_auto] = ACTIONS(315), + [anon_sym_register] = ACTIONS(315), + [anon_sym_inline] = ACTIONS(315), + [anon_sym_const] = ACTIONS(315), + [anon_sym_restrict] = ACTIONS(315), + [anon_sym_volatile] = ACTIONS(315), + [anon_sym__Atomic] = ACTIONS(315), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(319), + [anon_sym_COLON] = ACTIONS(313), + [sym_identifier] = ACTIONS(321), + [sym_comment] = ACTIONS(81), }, - [273] = { - [anon_sym_COMMA] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym_COLON] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [sym_comment] = ACTIONS(85), + [252] = { + [anon_sym_COMMA] = ACTIONS(1322), + [anon_sym_RPAREN] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym_COLON] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1324), + [sym_comment] = ACTIONS(81), }, - [274] = { - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym_COLON] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1438), - [sym_comment] = ACTIONS(85), + [253] = { + [anon_sym_COMMA] = ACTIONS(1326), + [anon_sym_RPAREN] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym_COLON] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1328), + [sym_comment] = ACTIONS(81), }, - [275] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(491), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [254] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(447), + [anon_sym_RPAREN] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [276] = { - [anon_sym_RPAREN] = ACTIONS(1440), - [sym_comment] = ACTIONS(85), + [255] = { + [anon_sym_RPAREN] = ACTIONS(1330), + [sym_comment] = ACTIONS(81), }, - [277] = { - [sym_parenthesized_expression] = STATE(540), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [256] = { + [sym_parenthesized_expression] = STATE(493), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [278] = { - [sym_parenthesized_expression] = STATE(541), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [257] = { + [sym_parenthesized_expression] = STATE(494), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [279] = { - [sym__expression] = STATE(542), - [sym_conditional_expression] = STATE(542), - [sym_assignment_expression] = STATE(542), - [sym_pointer_expression] = STATE(542), - [sym_logical_expression] = STATE(542), - [sym_bitwise_expression] = STATE(542), - [sym_equality_expression] = STATE(542), - [sym_relational_expression] = STATE(542), - [sym_shift_expression] = STATE(542), - [sym_math_expression] = STATE(542), - [sym_cast_expression] = STATE(542), - [sym_sizeof_expression] = STATE(542), - [sym_subscript_expression] = STATE(542), - [sym_call_expression] = STATE(542), - [sym_field_expression] = STATE(542), - [sym_compound_literal_expression] = STATE(542), - [sym_parenthesized_expression] = STATE(542), - [sym_char_literal] = STATE(542), - [sym_concatenated_string] = STATE(542), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1444), - [sym_false] = ACTIONS(1444), - [sym_null] = ACTIONS(1444), - [sym_identifier] = ACTIONS(1444), - [sym_comment] = ACTIONS(85), + [258] = { + [anon_sym_LPAREN2] = ACTIONS(1332), + [sym_comment] = ACTIONS(81), }, - [280] = { - [anon_sym_COLON] = ACTIONS(1446), - [sym_comment] = ACTIONS(85), + [259] = { + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(1334), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_comment] = ACTIONS(81), }, - [281] = { - [sym_parenthesized_expression] = STATE(544), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [260] = { + [ts_builtin_sym_end] = ACTIONS(1336), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_null] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1338), + [sym_comment] = ACTIONS(81), }, - [282] = { - [anon_sym_LPAREN2] = ACTIONS(1448), - [sym_comment] = ACTIONS(85), + [261] = { + [sym_compound_statement] = STATE(505), + [sym_labeled_statement] = STATE(505), + [sym_expression_statement] = STATE(505), + [sym_if_statement] = STATE(505), + [sym_switch_statement] = STATE(505), + [sym_case_statement] = STATE(505), + [sym_while_statement] = STATE(505), + [sym_do_statement] = STATE(505), + [sym_for_statement] = STATE(505), + [sym_return_statement] = STATE(505), + [sym_break_statement] = STATE(505), + [sym_continue_statement] = STATE(505), + [sym_goto_statement] = STATE(505), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(505), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(81), }, - [283] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(1450), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_comment] = ACTIONS(85), + [262] = { + [ts_builtin_sym_end] = ACTIONS(1356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [sym_null] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1358), + [sym_comment] = ACTIONS(81), }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_else] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [sym_null] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1454), - [sym_comment] = ACTIONS(85), + [263] = { + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_comment] = ACTIONS(81), }, - [285] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_comment] = ACTIONS(85), + [264] = { + [ts_builtin_sym_end] = ACTIONS(1360), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [sym_null] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1362), + [sym_comment] = ACTIONS(81), }, - [286] = { - [ts_builtin_sym_end] = ACTIONS(1458), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_else] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_null] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1460), - [sym_comment] = ACTIONS(85), - }, - [287] = { - [anon_sym_RPAREN] = ACTIONS(1462), - [sym_comment] = ACTIONS(85), - }, - [288] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(76), - [sym_sized_type_specifier] = STATE(76), - [sym_enum_specifier] = STATE(76), - [sym_struct_specifier] = STATE(76), - [sym_union_specifier] = STATE(76), - [sym__expression] = STATE(77), - [sym_comma_expression] = STATE(78), - [sym_conditional_expression] = STATE(77), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_type_descriptor] = STATE(549), - [sym_sizeof_expression] = STATE(77), - [sym_subscript_expression] = STATE(77), - [sym_call_expression] = STATE(77), - [sym_field_expression] = STATE(77), - [sym_compound_literal_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(80), - [sym_macro_type_specifier] = STATE(76), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(82), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [sym_primitive_type] = ACTIONS(141), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(155), - [sym_false] = ACTIONS(155), - [sym_null] = ACTIONS(155), - [sym_identifier] = ACTIONS(157), - [sym_comment] = ACTIONS(85), - }, - [289] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(717), - [anon_sym_COLON] = ACTIONS(715), - [anon_sym_QMARK] = ACTIONS(715), - [anon_sym_STAR_EQ] = ACTIONS(715), - [anon_sym_SLASH_EQ] = ACTIONS(715), - [anon_sym_PERCENT_EQ] = ACTIONS(715), - [anon_sym_PLUS_EQ] = ACTIONS(715), - [anon_sym_DASH_EQ] = ACTIONS(715), - [anon_sym_LT_LT_EQ] = ACTIONS(715), - [anon_sym_GT_GT_EQ] = ACTIONS(715), - [anon_sym_AMP_EQ] = ACTIONS(715), - [anon_sym_CARET_EQ] = ACTIONS(715), - [anon_sym_PIPE_EQ] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_CARET] = ACTIONS(717), - [anon_sym_EQ_EQ] = ACTIONS(715), - [anon_sym_BANG_EQ] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_LT_EQ] = ACTIONS(715), - [anon_sym_GT_EQ] = ACTIONS(715), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [290] = { - [sym__expression] = STATE(361), - [sym_conditional_expression] = STATE(361), - [sym_assignment_expression] = STATE(361), - [sym_pointer_expression] = STATE(361), - [sym_logical_expression] = STATE(361), - [sym_bitwise_expression] = STATE(361), - [sym_equality_expression] = STATE(361), - [sym_relational_expression] = STATE(361), - [sym_shift_expression] = STATE(361), - [sym_math_expression] = STATE(361), - [sym_cast_expression] = STATE(361), - [sym_sizeof_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_call_expression] = STATE(361), - [sym_field_expression] = STATE(361), - [sym_compound_literal_expression] = STATE(361), - [sym_parenthesized_expression] = STATE(361), - [sym_char_literal] = STATE(361), - [sym_concatenated_string] = STATE(361), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(767), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(769), - [sym_false] = ACTIONS(769), - [sym_null] = ACTIONS(769), - [sym_identifier] = ACTIONS(769), - [sym_comment] = ACTIONS(85), - }, - [291] = { - [sym__expression] = STATE(550), - [sym_conditional_expression] = STATE(550), - [sym_assignment_expression] = STATE(550), - [sym_pointer_expression] = STATE(550), - [sym_logical_expression] = STATE(550), - [sym_bitwise_expression] = STATE(550), - [sym_equality_expression] = STATE(550), - [sym_relational_expression] = STATE(550), - [sym_shift_expression] = STATE(550), - [sym_math_expression] = STATE(550), - [sym_cast_expression] = STATE(550), - [sym_sizeof_expression] = STATE(550), - [sym_subscript_expression] = STATE(550), - [sym_call_expression] = STATE(550), - [sym_field_expression] = STATE(550), - [sym_compound_literal_expression] = STATE(550), - [sym_parenthesized_expression] = STATE(550), - [sym_char_literal] = STATE(550), - [sym_concatenated_string] = STATE(550), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1464), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [sym_null] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1466), - [sym_comment] = ACTIONS(85), - }, - [292] = { - [sym_declaration] = STATE(551), - [sym_type_definition] = STATE(551), - [sym__declaration_specifiers] = STATE(306), - [sym_compound_statement] = STATE(551), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [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(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), + [265] = { + [sym_compound_statement] = STATE(510), + [sym_labeled_statement] = STATE(510), + [sym_expression_statement] = STATE(510), + [sym_if_statement] = STATE(510), + [sym_switch_statement] = STATE(510), + [sym_while_statement] = STATE(510), + [sym_do_statement] = STATE(510), + [sym_for_statement] = STATE(510), + [sym_return_statement] = STATE(510), + [sym_break_statement] = STATE(510), + [sym_continue_statement] = STATE(510), + [sym_goto_statement] = STATE(510), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), + [anon_sym_if] = ACTIONS(1364), [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_while] = ACTIONS(51), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(631), - [sym_comment] = ACTIONS(85), - }, - [293] = { - [sym__expression] = STATE(552), - [sym_conditional_expression] = STATE(552), - [sym_assignment_expression] = STATE(552), - [sym_pointer_expression] = STATE(552), - [sym_logical_expression] = STATE(552), - [sym_bitwise_expression] = STATE(552), - [sym_equality_expression] = STATE(552), - [sym_relational_expression] = STATE(552), - [sym_shift_expression] = STATE(552), - [sym_math_expression] = STATE(552), - [sym_cast_expression] = STATE(552), - [sym_sizeof_expression] = STATE(552), - [sym_subscript_expression] = STATE(552), - [sym_call_expression] = STATE(552), - [sym_field_expression] = STATE(552), - [sym_compound_literal_expression] = STATE(552), - [sym_parenthesized_expression] = STATE(552), - [sym_char_literal] = STATE(552), - [sym_concatenated_string] = STATE(552), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1468), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1470), - [sym_false] = ACTIONS(1470), - [sym_null] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1470), - [sym_comment] = ACTIONS(85), - }, - [294] = { - [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(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1472), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1474), - [sym_false] = ACTIONS(1474), - [sym_null] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1474), - [sym_comment] = ACTIONS(85), - }, - [295] = { - [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(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1476), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1478), - [sym_false] = ACTIONS(1478), - [sym_null] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1478), - [sym_comment] = ACTIONS(85), - }, - [296] = { - [sym__expression] = STATE(555), - [sym_conditional_expression] = STATE(555), - [sym_assignment_expression] = STATE(555), - [sym_pointer_expression] = STATE(555), - [sym_logical_expression] = STATE(555), - [sym_bitwise_expression] = STATE(555), - [sym_equality_expression] = STATE(555), - [sym_relational_expression] = STATE(555), - [sym_shift_expression] = STATE(555), - [sym_math_expression] = STATE(555), - [sym_cast_expression] = STATE(555), - [sym_sizeof_expression] = STATE(555), - [sym_subscript_expression] = STATE(555), - [sym_call_expression] = STATE(555), - [sym_field_expression] = STATE(555), - [sym_compound_literal_expression] = STATE(555), - [sym_parenthesized_expression] = STATE(555), - [sym_char_literal] = STATE(555), - [sym_concatenated_string] = STATE(555), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1482), - [sym_false] = ACTIONS(1482), - [sym_null] = ACTIONS(1482), - [sym_identifier] = ACTIONS(1482), - [sym_comment] = ACTIONS(85), - }, - [297] = { - [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(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1486), - [sym_false] = ACTIONS(1486), - [sym_null] = ACTIONS(1486), - [sym_identifier] = ACTIONS(1486), - [sym_comment] = ACTIONS(85), - }, - [298] = { - [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(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1488), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1490), - [sym_false] = ACTIONS(1490), - [sym_null] = ACTIONS(1490), - [sym_identifier] = ACTIONS(1490), - [sym_comment] = ACTIONS(85), - }, - [299] = { - [sym__expression] = STATE(558), - [sym_conditional_expression] = STATE(558), - [sym_assignment_expression] = STATE(558), - [sym_pointer_expression] = STATE(558), - [sym_logical_expression] = STATE(558), - [sym_bitwise_expression] = STATE(558), - [sym_equality_expression] = STATE(558), - [sym_relational_expression] = STATE(558), - [sym_shift_expression] = STATE(558), - [sym_math_expression] = STATE(558), - [sym_cast_expression] = STATE(558), - [sym_sizeof_expression] = STATE(558), - [sym_subscript_expression] = STATE(558), - [sym_call_expression] = STATE(558), - [sym_field_expression] = STATE(558), - [sym_compound_literal_expression] = STATE(558), - [sym_parenthesized_expression] = STATE(558), - [sym_char_literal] = STATE(558), - [sym_concatenated_string] = STATE(558), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1492), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1494), - [sym_false] = ACTIONS(1494), - [sym_null] = ACTIONS(1494), - [sym_identifier] = ACTIONS(1494), - [sym_comment] = ACTIONS(85), - }, - [300] = { - [sym__expression] = STATE(559), - [sym_conditional_expression] = STATE(559), - [sym_assignment_expression] = STATE(559), - [sym_pointer_expression] = STATE(559), - [sym_logical_expression] = STATE(559), - [sym_bitwise_expression] = STATE(559), - [sym_equality_expression] = STATE(559), - [sym_relational_expression] = STATE(559), - [sym_shift_expression] = STATE(559), - [sym_math_expression] = STATE(559), - [sym_cast_expression] = STATE(559), - [sym_sizeof_expression] = STATE(559), - [sym_subscript_expression] = STATE(559), - [sym_call_expression] = STATE(559), - [sym_field_expression] = STATE(559), - [sym_compound_literal_expression] = STATE(559), - [sym_parenthesized_expression] = STATE(559), - [sym_char_literal] = STATE(559), - [sym_concatenated_string] = STATE(559), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1498), - [sym_false] = ACTIONS(1498), - [sym_null] = ACTIONS(1498), - [sym_identifier] = ACTIONS(1498), - [sym_comment] = ACTIONS(85), - }, - [301] = { - [sym__expression] = STATE(560), - [sym_conditional_expression] = STATE(560), - [sym_assignment_expression] = STATE(560), - [sym_pointer_expression] = STATE(560), - [sym_logical_expression] = STATE(560), - [sym_bitwise_expression] = STATE(560), - [sym_equality_expression] = STATE(560), - [sym_relational_expression] = STATE(560), - [sym_shift_expression] = STATE(560), - [sym_math_expression] = STATE(560), - [sym_cast_expression] = STATE(560), - [sym_sizeof_expression] = STATE(560), - [sym_subscript_expression] = STATE(560), - [sym_call_expression] = STATE(560), - [sym_field_expression] = STATE(560), - [sym_compound_literal_expression] = STATE(560), - [sym_parenthesized_expression] = STATE(560), - [sym_char_literal] = STATE(560), - [sym_concatenated_string] = STATE(560), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1502), - [sym_false] = ACTIONS(1502), - [sym_null] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1502), - [sym_comment] = ACTIONS(85), - }, - [302] = { - [sym__expression] = STATE(561), - [sym_conditional_expression] = STATE(561), - [sym_assignment_expression] = STATE(561), - [sym_pointer_expression] = STATE(561), - [sym_logical_expression] = STATE(561), - [sym_bitwise_expression] = STATE(561), - [sym_equality_expression] = STATE(561), - [sym_relational_expression] = STATE(561), - [sym_shift_expression] = STATE(561), - [sym_math_expression] = STATE(561), - [sym_cast_expression] = STATE(561), - [sym_sizeof_expression] = STATE(561), - [sym_subscript_expression] = STATE(561), - [sym_call_expression] = STATE(561), - [sym_field_expression] = STATE(561), - [sym_compound_literal_expression] = STATE(561), - [sym_parenthesized_expression] = STATE(561), - [sym_char_literal] = STATE(561), - [sym_concatenated_string] = STATE(561), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1506), - [sym_false] = ACTIONS(1506), - [sym_null] = ACTIONS(1506), - [sym_identifier] = ACTIONS(1506), - [sym_comment] = ACTIONS(85), - }, - [303] = { - [sym_string_literal] = STATE(562), - [aux_sym_concatenated_string_repeat1] = STATE(562), - [anon_sym_LPAREN2] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_STAR_EQ] = ACTIONS(839), - [anon_sym_SLASH_EQ] = ACTIONS(839), - [anon_sym_PERCENT_EQ] = ACTIONS(839), - [anon_sym_PLUS_EQ] = ACTIONS(839), - [anon_sym_DASH_EQ] = ACTIONS(839), - [anon_sym_LT_LT_EQ] = ACTIONS(839), - [anon_sym_GT_GT_EQ] = ACTIONS(839), - [anon_sym_AMP_EQ] = ACTIONS(839), - [anon_sym_CARET_EQ] = ACTIONS(839), - [anon_sym_PIPE_EQ] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(841), - [anon_sym_PIPE_PIPE] = ACTIONS(839), - [anon_sym_AMP_AMP] = ACTIONS(839), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(839), - [anon_sym_BANG_EQ] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_LT_EQ] = ACTIONS(839), - [anon_sym_GT_EQ] = ACTIONS(839), - [anon_sym_LT_LT] = ACTIONS(841), - [anon_sym_GT_GT] = ACTIONS(841), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_PERCENT] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(839), - [anon_sym_PLUS_PLUS] = ACTIONS(839), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_DASH_GT] = ACTIONS(839), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_comment] = ACTIONS(85), - }, - [304] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(287), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), - }, - [305] = { - [ts_builtin_sym_end] = ACTIONS(1508), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [sym_preproc_directive] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_LPAREN2] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_auto] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_restrict] = ACTIONS(1510), - [anon_sym_volatile] = ACTIONS(1510), - [anon_sym__Atomic] = ACTIONS(1510), - [anon_sym_unsigned] = ACTIONS(1510), - [anon_sym_long] = ACTIONS(1510), - [anon_sym_short] = ACTIONS(1510), - [sym_primitive_type] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1510), - [anon_sym_case] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_goto] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1508), - [anon_sym_sizeof] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1508), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [sym_null] = ACTIONS(1510), - [sym_identifier] = ACTIONS(1510), - [sym_comment] = ACTIONS(85), - }, - [306] = { - [sym__declarator] = STATE(231), - [sym_pointer_declarator] = STATE(231), - [sym_function_declarator] = STATE(231), - [sym_array_declarator] = STATE(231), - [sym_init_declarator] = STATE(141), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(471), - [sym_identifier] = ACTIONS(473), - [sym_comment] = ACTIONS(85), - }, - [307] = { - [ts_builtin_sym_end] = ACTIONS(1512), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_auto] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_else] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_goto] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(1514), - [sym_number_literal] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_DQUOTE] = ACTIONS(1512), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_null] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1514), - [sym_comment] = ACTIONS(85), - }, - [308] = { - [sym_compound_statement] = STATE(570), - [sym_labeled_statement] = STATE(570), - [sym_expression_statement] = STATE(570), - [sym_if_statement] = STATE(570), - [sym_switch_statement] = STATE(570), - [sym_case_statement] = STATE(570), - [sym_while_statement] = STATE(570), - [sym_do_statement] = STATE(570), - [sym_for_statement] = STATE(570), - [sym_return_statement] = STATE(570), - [sym_break_statement] = STATE(570), - [sym_continue_statement] = STATE(570), - [sym_goto_statement] = STATE(570), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1528), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1370), + [sym_comment] = ACTIONS(81), }, - [309] = { - [sym_compound_statement] = STATE(286), - [sym_labeled_statement] = STATE(286), - [sym_expression_statement] = STATE(286), - [sym_if_statement] = STATE(286), - [sym_switch_statement] = STATE(286), - [sym_case_statement] = STATE(286), - [sym_while_statement] = STATE(286), - [sym_do_statement] = STATE(286), - [sym_for_statement] = STATE(286), - [sym_return_statement] = STATE(286), - [sym_break_statement] = STATE(286), - [sym_continue_statement] = STATE(286), - [sym_goto_statement] = STATE(286), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [266] = { + [sym_compound_statement] = STATE(264), + [sym_labeled_statement] = STATE(264), + [sym_expression_statement] = STATE(264), + [sym_if_statement] = STATE(264), + [sym_switch_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_do_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_return_statement] = STATE(264), + [sym_break_statement] = STATE(264), + [sym_continue_statement] = STATE(264), + [sym_goto_statement] = STATE(264), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(201), - [anon_sym_switch] = ACTIONS(203), - [anon_sym_case] = ACTIONS(205), - [anon_sym_default] = ACTIONS(207), - [anon_sym_while] = ACTIONS(209), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(213), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(173), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(215), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(181), + [sym_comment] = ACTIONS(81), }, - [310] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(1530), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [267] = { + [anon_sym_while] = ACTIONS(1372), + [sym_comment] = ACTIONS(81), }, - [311] = { - [sym_declaration] = STATE(305), - [sym_type_definition] = STATE(305), - [sym__declaration_specifiers] = STATE(306), - [sym_compound_statement] = STATE(305), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_labeled_statement] = STATE(305), - [sym_expression_statement] = STATE(305), - [sym_if_statement] = STATE(305), - [sym_switch_statement] = STATE(305), - [sym_case_statement] = STATE(305), - [sym_while_statement] = STATE(305), - [sym_do_statement] = STATE(305), - [sym_for_statement] = STATE(305), - [sym_return_statement] = STATE(305), - [sym_break_statement] = STATE(305), - [sym_continue_statement] = STATE(305), - [sym_goto_statement] = STATE(305), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), + [268] = { + [sym_declaration] = STATE(512), + [sym__declaration_specifiers] = STATE(273), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym__expression] = STATE(513), + [sym_conditional_expression] = STATE(513), + [sym_assignment_expression] = STATE(513), + [sym_pointer_expression] = STATE(513), + [sym_logical_expression] = STATE(513), + [sym_bitwise_expression] = STATE(513), + [sym_equality_expression] = STATE(513), + [sym_relational_expression] = STATE(513), + [sym_shift_expression] = STATE(513), + [sym_math_expression] = STATE(513), + [sym_cast_expression] = STATE(513), + [sym_sizeof_expression] = STATE(513), + [sym_subscript_expression] = STATE(513), + [sym_call_expression] = STATE(513), + [sym_field_expression] = STATE(513), + [sym_compound_literal_expression] = STATE(513), + [sym_parenthesized_expression] = STATE(513), + [sym_char_literal] = STATE(513), + [sym_concatenated_string] = STATE(513), + [sym_string_literal] = STATE(107), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(1374), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -16445,1451 +14682,1307 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(201), - [anon_sym_switch] = ACTIONS(203), - [anon_sym_case] = ACTIONS(205), - [anon_sym_default] = ACTIONS(207), - [anon_sym_while] = ACTIONS(209), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(213), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1532), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [sym_null] = ACTIONS(1378), + [sym_identifier] = ACTIONS(559), + [sym_comment] = ACTIONS(81), }, - [312] = { - [sym_compound_statement] = STATE(307), - [sym_labeled_statement] = STATE(307), - [sym_expression_statement] = STATE(307), - [sym_if_statement] = STATE(307), - [sym_switch_statement] = STATE(307), - [sym_case_statement] = STATE(307), - [sym_while_statement] = STATE(307), - [sym_do_statement] = STATE(307), - [sym_for_statement] = STATE(307), - [sym_return_statement] = STATE(307), - [sym_break_statement] = STATE(307), - [sym_continue_statement] = STATE(307), - [sym_goto_statement] = STATE(307), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [269] = { + [sym_compound_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(201), - [anon_sym_switch] = ACTIONS(203), - [anon_sym_case] = ACTIONS(205), - [anon_sym_default] = ACTIONS(207), - [anon_sym_while] = ACTIONS(209), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(213), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(173), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(215), - [sym_comment] = ACTIONS(85), - }, - [313] = { - [anon_sym_while] = ACTIONS(1534), - [sym_comment] = ACTIONS(85), - }, - [314] = { - [sym_declaration] = STATE(574), - [sym__declaration_specifiers] = STATE(306), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym__expression] = STATE(575), - [sym_conditional_expression] = STATE(575), - [sym_assignment_expression] = STATE(575), - [sym_pointer_expression] = STATE(575), - [sym_logical_expression] = STATE(575), - [sym_bitwise_expression] = STATE(575), - [sym_equality_expression] = STATE(575), - [sym_relational_expression] = STATE(575), - [sym_shift_expression] = STATE(575), - [sym_math_expression] = STATE(575), - [sym_cast_expression] = STATE(575), - [sym_sizeof_expression] = STATE(575), - [sym_subscript_expression] = STATE(575), - [sym_call_expression] = STATE(575), - [sym_field_expression] = STATE(575), - [sym_compound_literal_expression] = STATE(575), - [sym_parenthesized_expression] = STATE(575), - [sym_char_literal] = STATE(575), - [sym_concatenated_string] = STATE(575), - [sym_string_literal] = STATE(123), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1540), - [sym_false] = ACTIONS(1540), - [sym_null] = ACTIONS(1540), - [sym_identifier] = ACTIONS(651), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(181), + [sym_comment] = ACTIONS(81), }, - [315] = { - [sym_compound_statement] = STATE(343), - [sym_labeled_statement] = STATE(343), - [sym_expression_statement] = STATE(343), - [sym_if_statement] = STATE(343), - [sym_switch_statement] = STATE(343), - [sym_case_statement] = STATE(343), - [sym_while_statement] = STATE(343), - [sym_do_statement] = STATE(343), - [sym_for_statement] = STATE(343), - [sym_return_statement] = STATE(343), - [sym_break_statement] = STATE(343), - [sym_continue_statement] = STATE(343), - [sym_goto_statement] = STATE(343), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(201), - [anon_sym_switch] = ACTIONS(203), - [anon_sym_case] = ACTIONS(205), - [anon_sym_default] = ACTIONS(207), - [anon_sym_while] = ACTIONS(209), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(213), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(215), - [sym_comment] = ACTIONS(85), + [270] = { + [sym_parenthesized_expression] = STATE(514), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [316] = { - [sym_parenthesized_expression] = STATE(576), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [271] = { + [sym__expression] = STATE(516), + [sym_conditional_expression] = STATE(516), + [sym_assignment_expression] = STATE(516), + [sym_pointer_expression] = STATE(516), + [sym_logical_expression] = STATE(516), + [sym_bitwise_expression] = STATE(516), + [sym_equality_expression] = STATE(516), + [sym_relational_expression] = STATE(516), + [sym_shift_expression] = STATE(516), + [sym_math_expression] = STATE(516), + [sym_cast_expression] = STATE(516), + [sym_sizeof_expression] = STATE(516), + [sym_subscript_expression] = STATE(516), + [sym_call_expression] = STATE(516), + [sym_field_expression] = STATE(516), + [sym_compound_literal_expression] = STATE(516), + [sym_parenthesized_expression] = STATE(516), + [sym_char_literal] = STATE(516), + [sym_concatenated_string] = STATE(516), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [sym_null] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1384), + [sym_comment] = ACTIONS(81), }, - [317] = { - [sym__expression] = STATE(578), - [sym_conditional_expression] = STATE(578), - [sym_assignment_expression] = STATE(578), - [sym_pointer_expression] = STATE(578), - [sym_logical_expression] = STATE(578), - [sym_bitwise_expression] = STATE(578), - [sym_equality_expression] = STATE(578), - [sym_relational_expression] = STATE(578), - [sym_shift_expression] = STATE(578), - [sym_math_expression] = STATE(578), - [sym_cast_expression] = STATE(578), - [sym_sizeof_expression] = STATE(578), - [sym_subscript_expression] = STATE(578), - [sym_call_expression] = STATE(578), - [sym_field_expression] = STATE(578), - [sym_compound_literal_expression] = STATE(578), - [sym_parenthesized_expression] = STATE(578), - [sym_char_literal] = STATE(578), - [sym_concatenated_string] = STATE(578), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1544), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1546), - [sym_false] = ACTIONS(1546), - [sym_null] = ACTIONS(1546), - [sym_identifier] = ACTIONS(1546), - [sym_comment] = ACTIONS(85), + [272] = { + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_extern] = ACTIONS(242), + [anon_sym_LPAREN2] = ACTIONS(244), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_static] = ACTIONS(242), + [anon_sym_auto] = ACTIONS(242), + [anon_sym_register] = ACTIONS(242), + [anon_sym_inline] = ACTIONS(242), + [anon_sym_const] = ACTIONS(242), + [anon_sym_restrict] = ACTIONS(242), + [anon_sym_volatile] = ACTIONS(242), + [anon_sym__Atomic] = ACTIONS(242), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_identifier] = ACTIONS(242), + [sym_comment] = ACTIONS(81), }, - [318] = { - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), + [273] = { + [sym__declarator] = STATE(210), + [sym_pointer_declarator] = STATE(210), + [sym_function_declarator] = STATE(210), + [sym_array_declarator] = STATE(210), + [sym_init_declarator] = STATE(125), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), + [sym_comment] = ACTIONS(81), }, - [319] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(1548), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [274] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [320] = { - [anon_sym_RPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(85), + [275] = { + [anon_sym_RPAREN] = ACTIONS(1388), + [sym_comment] = ACTIONS(81), }, - [321] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(76), - [sym_sized_type_specifier] = STATE(76), - [sym_enum_specifier] = STATE(76), - [sym_struct_specifier] = STATE(76), - [sym_union_specifier] = STATE(76), - [sym__expression] = STATE(77), - [sym_comma_expression] = STATE(78), - [sym_conditional_expression] = STATE(77), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_type_descriptor] = STATE(581), - [sym_sizeof_expression] = STATE(77), - [sym_subscript_expression] = STATE(77), - [sym_call_expression] = STATE(77), - [sym_field_expression] = STATE(77), - [sym_compound_literal_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(80), - [sym_macro_type_specifier] = STATE(76), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(82), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), + [276] = { + [sym_type_qualifier] = STATE(76), + [sym__type_specifier] = STATE(71), + [sym_sized_type_specifier] = STATE(71), + [sym_enum_specifier] = STATE(71), + [sym_struct_specifier] = STATE(71), + [sym_union_specifier] = STATE(71), + [sym__expression] = STATE(72), + [sym_comma_expression] = STATE(73), + [sym_conditional_expression] = STATE(72), + [sym_assignment_expression] = STATE(72), + [sym_pointer_expression] = STATE(72), + [sym_logical_expression] = STATE(72), + [sym_bitwise_expression] = STATE(72), + [sym_equality_expression] = STATE(72), + [sym_relational_expression] = STATE(72), + [sym_shift_expression] = STATE(72), + [sym_math_expression] = STATE(72), + [sym_cast_expression] = STATE(72), + [sym_type_descriptor] = STATE(519), + [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(72), + [sym_call_expression] = STATE(72), + [sym_field_expression] = STATE(72), + [sym_compound_literal_expression] = STATE(72), + [sym_parenthesized_expression] = STATE(72), + [sym_char_literal] = STATE(72), + [sym_concatenated_string] = STATE(72), + [sym_string_literal] = STATE(75), + [sym_macro_type_specifier] = STATE(71), + [aux_sym_type_definition_repeat1] = STATE(76), + [aux_sym_sized_type_specifier_repeat1] = STATE(77), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [sym_primitive_type] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(129), + [anon_sym_long] = ACTIONS(129), + [anon_sym_short] = ACTIONS(129), + [sym_primitive_type] = ACTIONS(131), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(155), - [sym_false] = ACTIONS(155), - [sym_null] = ACTIONS(155), - [sym_identifier] = ACTIONS(157), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_identifier] = ACTIONS(147), + [sym_comment] = ACTIONS(81), }, - [322] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(715), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(717), - [anon_sym_QMARK] = ACTIONS(715), - [anon_sym_STAR_EQ] = ACTIONS(715), - [anon_sym_SLASH_EQ] = ACTIONS(715), - [anon_sym_PERCENT_EQ] = ACTIONS(715), - [anon_sym_PLUS_EQ] = ACTIONS(715), - [anon_sym_DASH_EQ] = ACTIONS(715), - [anon_sym_LT_LT_EQ] = ACTIONS(715), - [anon_sym_GT_GT_EQ] = ACTIONS(715), - [anon_sym_AMP_EQ] = ACTIONS(715), - [anon_sym_CARET_EQ] = ACTIONS(715), - [anon_sym_PIPE_EQ] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_CARET] = ACTIONS(717), - [anon_sym_EQ_EQ] = ACTIONS(715), - [anon_sym_BANG_EQ] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_LT_EQ] = ACTIONS(715), - [anon_sym_GT_EQ] = ACTIONS(715), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [277] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_STAR_EQ] = ACTIONS(623), + [anon_sym_SLASH_EQ] = ACTIONS(623), + [anon_sym_PERCENT_EQ] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(623), + [anon_sym_DASH_EQ] = ACTIONS(623), + [anon_sym_LT_LT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_EQ] = ACTIONS(623), + [anon_sym_AMP_EQ] = ACTIONS(623), + [anon_sym_CARET_EQ] = ACTIONS(623), + [anon_sym_PIPE_EQ] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(1552), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1554), - [sym_preproc_directive] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_typedef] = ACTIONS(1554), - [anon_sym_extern] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_static] = ACTIONS(1554), - [anon_sym_auto] = ACTIONS(1554), - [anon_sym_register] = ACTIONS(1554), - [anon_sym_inline] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1554), - [anon_sym_restrict] = ACTIONS(1554), - [anon_sym_volatile] = ACTIONS(1554), - [anon_sym__Atomic] = ACTIONS(1554), - [anon_sym_unsigned] = ACTIONS(1554), - [anon_sym_long] = ACTIONS(1554), - [anon_sym_short] = ACTIONS(1554), - [sym_primitive_type] = ACTIONS(1554), - [anon_sym_enum] = ACTIONS(1554), - [anon_sym_struct] = ACTIONS(1554), - [anon_sym_union] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_else] = ACTIONS(1554), - [anon_sym_switch] = ACTIONS(1554), - [anon_sym_case] = ACTIONS(1554), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_do] = ACTIONS(1554), - [anon_sym_for] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_goto] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1552), - [anon_sym_TILDE] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_sizeof] = ACTIONS(1554), - [sym_number_literal] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym_true] = ACTIONS(1554), - [sym_false] = ACTIONS(1554), - [sym_null] = ACTIONS(1554), - [sym_identifier] = ACTIONS(1554), - [sym_comment] = ACTIONS(85), + [278] = { + [ts_builtin_sym_end] = ACTIONS(1390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_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), + [sym_preproc_directive] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_inline] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [sym_primitive_type] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_case] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_null] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1392), + [sym_comment] = ACTIONS(81), }, - [324] = { - [sym__expression] = STATE(361), - [sym_conditional_expression] = STATE(361), - [sym_assignment_expression] = STATE(361), - [sym_pointer_expression] = STATE(361), - [sym_logical_expression] = STATE(361), - [sym_bitwise_expression] = STATE(361), - [sym_equality_expression] = STATE(361), - [sym_relational_expression] = STATE(361), - [sym_shift_expression] = STATE(361), - [sym_math_expression] = STATE(361), - [sym_cast_expression] = STATE(361), - [sym_sizeof_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_call_expression] = STATE(361), - [sym_field_expression] = STATE(361), - [sym_compound_literal_expression] = STATE(361), - [sym_parenthesized_expression] = STATE(361), - [sym_char_literal] = STATE(361), - [sym_concatenated_string] = STATE(361), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(767), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(769), - [sym_false] = ACTIONS(769), - [sym_null] = ACTIONS(769), - [sym_identifier] = ACTIONS(769), - [sym_comment] = ACTIONS(85), + [279] = { + [sym__expression] = STATE(316), + [sym_conditional_expression] = STATE(316), + [sym_assignment_expression] = STATE(316), + [sym_pointer_expression] = STATE(316), + [sym_logical_expression] = STATE(316), + [sym_bitwise_expression] = STATE(316), + [sym_equality_expression] = STATE(316), + [sym_relational_expression] = STATE(316), + [sym_shift_expression] = STATE(316), + [sym_math_expression] = STATE(316), + [sym_cast_expression] = STATE(316), + [sym_sizeof_expression] = STATE(316), + [sym_subscript_expression] = STATE(316), + [sym_call_expression] = STATE(316), + [sym_field_expression] = STATE(316), + [sym_compound_literal_expression] = STATE(316), + [sym_parenthesized_expression] = STATE(316), + [sym_char_literal] = STATE(316), + [sym_concatenated_string] = STATE(316), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(677), + [sym_false] = ACTIONS(677), + [sym_null] = ACTIONS(677), + [sym_identifier] = ACTIONS(677), + [sym_comment] = ACTIONS(81), }, - [325] = { - [sym__expression] = STATE(582), - [sym_conditional_expression] = STATE(582), - [sym_assignment_expression] = STATE(582), - [sym_pointer_expression] = STATE(582), - [sym_logical_expression] = STATE(582), - [sym_bitwise_expression] = STATE(582), - [sym_equality_expression] = STATE(582), - [sym_relational_expression] = STATE(582), - [sym_shift_expression] = STATE(582), - [sym_math_expression] = STATE(582), - [sym_cast_expression] = STATE(582), - [sym_sizeof_expression] = STATE(582), - [sym_subscript_expression] = STATE(582), - [sym_call_expression] = STATE(582), - [sym_field_expression] = STATE(582), - [sym_compound_literal_expression] = STATE(582), - [sym_parenthesized_expression] = STATE(582), - [sym_char_literal] = STATE(582), - [sym_concatenated_string] = STATE(582), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1556), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1558), - [sym_false] = ACTIONS(1558), - [sym_null] = ACTIONS(1558), - [sym_identifier] = ACTIONS(1558), - [sym_comment] = ACTIONS(85), + [280] = { + [sym__expression] = STATE(520), + [sym_conditional_expression] = STATE(520), + [sym_assignment_expression] = STATE(520), + [sym_pointer_expression] = STATE(520), + [sym_logical_expression] = STATE(520), + [sym_bitwise_expression] = STATE(520), + [sym_equality_expression] = STATE(520), + [sym_relational_expression] = STATE(520), + [sym_shift_expression] = STATE(520), + [sym_math_expression] = STATE(520), + [sym_cast_expression] = STATE(520), + [sym_sizeof_expression] = STATE(520), + [sym_subscript_expression] = STATE(520), + [sym_call_expression] = STATE(520), + [sym_field_expression] = STATE(520), + [sym_compound_literal_expression] = STATE(520), + [sym_parenthesized_expression] = STATE(520), + [sym_char_literal] = STATE(520), + [sym_concatenated_string] = STATE(520), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1396), + [sym_false] = ACTIONS(1396), + [sym_null] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1396), + [sym_comment] = ACTIONS(81), }, - [326] = { - [sym__expression] = STATE(583), - [sym_conditional_expression] = STATE(583), - [sym_assignment_expression] = STATE(583), - [sym_pointer_expression] = STATE(583), - [sym_logical_expression] = STATE(583), - [sym_bitwise_expression] = STATE(583), - [sym_equality_expression] = STATE(583), - [sym_relational_expression] = STATE(583), - [sym_shift_expression] = STATE(583), - [sym_math_expression] = STATE(583), - [sym_cast_expression] = STATE(583), - [sym_sizeof_expression] = STATE(583), - [sym_subscript_expression] = STATE(583), - [sym_call_expression] = STATE(583), - [sym_field_expression] = STATE(583), - [sym_compound_literal_expression] = STATE(583), - [sym_parenthesized_expression] = STATE(583), - [sym_char_literal] = STATE(583), - [sym_concatenated_string] = STATE(583), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1560), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1562), - [sym_false] = ACTIONS(1562), - [sym_null] = ACTIONS(1562), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(85), + [281] = { + [sym__expression] = STATE(521), + [sym_conditional_expression] = STATE(521), + [sym_assignment_expression] = STATE(521), + [sym_pointer_expression] = STATE(521), + [sym_logical_expression] = STATE(521), + [sym_bitwise_expression] = STATE(521), + [sym_equality_expression] = STATE(521), + [sym_relational_expression] = STATE(521), + [sym_shift_expression] = STATE(521), + [sym_math_expression] = STATE(521), + [sym_cast_expression] = STATE(521), + [sym_sizeof_expression] = STATE(521), + [sym_subscript_expression] = STATE(521), + [sym_call_expression] = STATE(521), + [sym_field_expression] = STATE(521), + [sym_compound_literal_expression] = STATE(521), + [sym_parenthesized_expression] = STATE(521), + [sym_char_literal] = STATE(521), + [sym_concatenated_string] = STATE(521), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1400), + [sym_false] = ACTIONS(1400), + [sym_null] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1400), + [sym_comment] = ACTIONS(81), }, - [327] = { - [sym__expression] = STATE(584), - [sym_conditional_expression] = STATE(584), - [sym_assignment_expression] = STATE(584), - [sym_pointer_expression] = STATE(584), - [sym_logical_expression] = STATE(584), - [sym_bitwise_expression] = STATE(584), - [sym_equality_expression] = STATE(584), - [sym_relational_expression] = STATE(584), - [sym_shift_expression] = STATE(584), - [sym_math_expression] = STATE(584), - [sym_cast_expression] = STATE(584), - [sym_sizeof_expression] = STATE(584), - [sym_subscript_expression] = STATE(584), - [sym_call_expression] = STATE(584), - [sym_field_expression] = STATE(584), - [sym_compound_literal_expression] = STATE(584), - [sym_parenthesized_expression] = STATE(584), - [sym_char_literal] = STATE(584), - [sym_concatenated_string] = STATE(584), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1564), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1566), - [sym_false] = ACTIONS(1566), - [sym_null] = ACTIONS(1566), - [sym_identifier] = ACTIONS(1566), - [sym_comment] = ACTIONS(85), + [282] = { + [sym__expression] = STATE(522), + [sym_conditional_expression] = STATE(522), + [sym_assignment_expression] = STATE(522), + [sym_pointer_expression] = STATE(522), + [sym_logical_expression] = STATE(522), + [sym_bitwise_expression] = STATE(522), + [sym_equality_expression] = STATE(522), + [sym_relational_expression] = STATE(522), + [sym_shift_expression] = STATE(522), + [sym_math_expression] = STATE(522), + [sym_cast_expression] = STATE(522), + [sym_sizeof_expression] = STATE(522), + [sym_subscript_expression] = STATE(522), + [sym_call_expression] = STATE(522), + [sym_field_expression] = STATE(522), + [sym_compound_literal_expression] = STATE(522), + [sym_parenthesized_expression] = STATE(522), + [sym_char_literal] = STATE(522), + [sym_concatenated_string] = STATE(522), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1404), + [sym_false] = ACTIONS(1404), + [sym_null] = ACTIONS(1404), + [sym_identifier] = ACTIONS(1404), + [sym_comment] = ACTIONS(81), }, - [328] = { - [sym__expression] = STATE(585), - [sym_conditional_expression] = STATE(585), - [sym_assignment_expression] = STATE(585), - [sym_pointer_expression] = STATE(585), - [sym_logical_expression] = STATE(585), - [sym_bitwise_expression] = STATE(585), - [sym_equality_expression] = STATE(585), - [sym_relational_expression] = STATE(585), - [sym_shift_expression] = STATE(585), - [sym_math_expression] = STATE(585), - [sym_cast_expression] = STATE(585), - [sym_sizeof_expression] = STATE(585), - [sym_subscript_expression] = STATE(585), - [sym_call_expression] = STATE(585), - [sym_field_expression] = STATE(585), - [sym_compound_literal_expression] = STATE(585), - [sym_parenthesized_expression] = STATE(585), - [sym_char_literal] = STATE(585), - [sym_concatenated_string] = STATE(585), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1568), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1570), - [sym_false] = ACTIONS(1570), - [sym_null] = ACTIONS(1570), - [sym_identifier] = ACTIONS(1570), - [sym_comment] = ACTIONS(85), + [283] = { + [sym__expression] = STATE(523), + [sym_conditional_expression] = STATE(523), + [sym_assignment_expression] = STATE(523), + [sym_pointer_expression] = STATE(523), + [sym_logical_expression] = STATE(523), + [sym_bitwise_expression] = STATE(523), + [sym_equality_expression] = STATE(523), + [sym_relational_expression] = STATE(523), + [sym_shift_expression] = STATE(523), + [sym_math_expression] = STATE(523), + [sym_cast_expression] = STATE(523), + [sym_sizeof_expression] = STATE(523), + [sym_subscript_expression] = STATE(523), + [sym_call_expression] = STATE(523), + [sym_field_expression] = STATE(523), + [sym_compound_literal_expression] = STATE(523), + [sym_parenthesized_expression] = STATE(523), + [sym_char_literal] = STATE(523), + [sym_concatenated_string] = STATE(523), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_null] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1408), + [sym_comment] = ACTIONS(81), }, - [329] = { - [sym__expression] = STATE(586), - [sym_conditional_expression] = STATE(586), - [sym_assignment_expression] = STATE(586), - [sym_pointer_expression] = STATE(586), - [sym_logical_expression] = STATE(586), - [sym_bitwise_expression] = STATE(586), - [sym_equality_expression] = STATE(586), - [sym_relational_expression] = STATE(586), - [sym_shift_expression] = STATE(586), - [sym_math_expression] = STATE(586), - [sym_cast_expression] = STATE(586), - [sym_sizeof_expression] = STATE(586), - [sym_subscript_expression] = STATE(586), - [sym_call_expression] = STATE(586), - [sym_field_expression] = STATE(586), - [sym_compound_literal_expression] = STATE(586), - [sym_parenthesized_expression] = STATE(586), - [sym_char_literal] = STATE(586), - [sym_concatenated_string] = STATE(586), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1574), - [sym_false] = ACTIONS(1574), - [sym_null] = ACTIONS(1574), - [sym_identifier] = ACTIONS(1574), - [sym_comment] = ACTIONS(85), + [284] = { + [sym__expression] = STATE(524), + [sym_conditional_expression] = STATE(524), + [sym_assignment_expression] = STATE(524), + [sym_pointer_expression] = STATE(524), + [sym_logical_expression] = STATE(524), + [sym_bitwise_expression] = STATE(524), + [sym_equality_expression] = STATE(524), + [sym_relational_expression] = STATE(524), + [sym_shift_expression] = STATE(524), + [sym_math_expression] = STATE(524), + [sym_cast_expression] = STATE(524), + [sym_sizeof_expression] = STATE(524), + [sym_subscript_expression] = STATE(524), + [sym_call_expression] = STATE(524), + [sym_field_expression] = STATE(524), + [sym_compound_literal_expression] = STATE(524), + [sym_parenthesized_expression] = STATE(524), + [sym_char_literal] = STATE(524), + [sym_concatenated_string] = STATE(524), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1412), + [sym_false] = ACTIONS(1412), + [sym_null] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1412), + [sym_comment] = ACTIONS(81), }, - [330] = { - [sym__expression] = STATE(587), - [sym_conditional_expression] = STATE(587), - [sym_assignment_expression] = STATE(587), - [sym_pointer_expression] = STATE(587), - [sym_logical_expression] = STATE(587), - [sym_bitwise_expression] = STATE(587), - [sym_equality_expression] = STATE(587), - [sym_relational_expression] = STATE(587), - [sym_shift_expression] = STATE(587), - [sym_math_expression] = STATE(587), - [sym_cast_expression] = STATE(587), - [sym_sizeof_expression] = STATE(587), - [sym_subscript_expression] = STATE(587), - [sym_call_expression] = STATE(587), - [sym_field_expression] = STATE(587), - [sym_compound_literal_expression] = STATE(587), - [sym_parenthesized_expression] = STATE(587), - [sym_char_literal] = STATE(587), - [sym_concatenated_string] = STATE(587), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1576), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1578), - [sym_false] = ACTIONS(1578), - [sym_null] = ACTIONS(1578), - [sym_identifier] = ACTIONS(1578), - [sym_comment] = ACTIONS(85), + [285] = { + [sym__expression] = STATE(525), + [sym_conditional_expression] = STATE(525), + [sym_assignment_expression] = STATE(525), + [sym_pointer_expression] = STATE(525), + [sym_logical_expression] = STATE(525), + [sym_bitwise_expression] = STATE(525), + [sym_equality_expression] = STATE(525), + [sym_relational_expression] = STATE(525), + [sym_shift_expression] = STATE(525), + [sym_math_expression] = STATE(525), + [sym_cast_expression] = STATE(525), + [sym_sizeof_expression] = STATE(525), + [sym_subscript_expression] = STATE(525), + [sym_call_expression] = STATE(525), + [sym_field_expression] = STATE(525), + [sym_compound_literal_expression] = STATE(525), + [sym_parenthesized_expression] = STATE(525), + [sym_char_literal] = STATE(525), + [sym_concatenated_string] = STATE(525), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1416), + [sym_false] = ACTIONS(1416), + [sym_null] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1416), + [sym_comment] = ACTIONS(81), }, - [331] = { - [sym__expression] = STATE(588), - [sym_conditional_expression] = STATE(588), - [sym_assignment_expression] = STATE(588), - [sym_pointer_expression] = STATE(588), - [sym_logical_expression] = STATE(588), - [sym_bitwise_expression] = STATE(588), - [sym_equality_expression] = STATE(588), - [sym_relational_expression] = STATE(588), - [sym_shift_expression] = STATE(588), - [sym_math_expression] = STATE(588), - [sym_cast_expression] = STATE(588), - [sym_sizeof_expression] = STATE(588), - [sym_subscript_expression] = STATE(588), - [sym_call_expression] = STATE(588), - [sym_field_expression] = STATE(588), - [sym_compound_literal_expression] = STATE(588), - [sym_parenthesized_expression] = STATE(588), - [sym_char_literal] = STATE(588), - [sym_concatenated_string] = STATE(588), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1580), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1582), - [sym_false] = ACTIONS(1582), - [sym_null] = ACTIONS(1582), - [sym_identifier] = ACTIONS(1582), - [sym_comment] = ACTIONS(85), + [286] = { + [sym__expression] = STATE(526), + [sym_conditional_expression] = STATE(526), + [sym_assignment_expression] = STATE(526), + [sym_pointer_expression] = STATE(526), + [sym_logical_expression] = STATE(526), + [sym_bitwise_expression] = STATE(526), + [sym_equality_expression] = STATE(526), + [sym_relational_expression] = STATE(526), + [sym_shift_expression] = STATE(526), + [sym_math_expression] = STATE(526), + [sym_cast_expression] = STATE(526), + [sym_sizeof_expression] = STATE(526), + [sym_subscript_expression] = STATE(526), + [sym_call_expression] = STATE(526), + [sym_field_expression] = STATE(526), + [sym_compound_literal_expression] = STATE(526), + [sym_parenthesized_expression] = STATE(526), + [sym_char_literal] = STATE(526), + [sym_concatenated_string] = STATE(526), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1420), + [sym_false] = ACTIONS(1420), + [sym_null] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1420), + [sym_comment] = ACTIONS(81), }, - [332] = { - [sym__expression] = STATE(589), - [sym_conditional_expression] = STATE(589), - [sym_assignment_expression] = STATE(589), - [sym_pointer_expression] = STATE(589), - [sym_logical_expression] = STATE(589), - [sym_bitwise_expression] = STATE(589), - [sym_equality_expression] = STATE(589), - [sym_relational_expression] = STATE(589), - [sym_shift_expression] = STATE(589), - [sym_math_expression] = STATE(589), - [sym_cast_expression] = STATE(589), - [sym_sizeof_expression] = STATE(589), - [sym_subscript_expression] = STATE(589), - [sym_call_expression] = STATE(589), - [sym_field_expression] = STATE(589), - [sym_compound_literal_expression] = STATE(589), - [sym_parenthesized_expression] = STATE(589), - [sym_char_literal] = STATE(589), - [sym_concatenated_string] = STATE(589), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1586), - [sym_false] = ACTIONS(1586), - [sym_null] = ACTIONS(1586), - [sym_identifier] = ACTIONS(1586), - [sym_comment] = ACTIONS(85), + [287] = { + [sym__expression] = STATE(527), + [sym_conditional_expression] = STATE(527), + [sym_assignment_expression] = STATE(527), + [sym_pointer_expression] = STATE(527), + [sym_logical_expression] = STATE(527), + [sym_bitwise_expression] = STATE(527), + [sym_equality_expression] = STATE(527), + [sym_relational_expression] = STATE(527), + [sym_shift_expression] = STATE(527), + [sym_math_expression] = STATE(527), + [sym_cast_expression] = STATE(527), + [sym_sizeof_expression] = STATE(527), + [sym_subscript_expression] = STATE(527), + [sym_call_expression] = STATE(527), + [sym_field_expression] = STATE(527), + [sym_compound_literal_expression] = STATE(527), + [sym_parenthesized_expression] = STATE(527), + [sym_char_literal] = STATE(527), + [sym_concatenated_string] = STATE(527), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1424), + [sym_false] = ACTIONS(1424), + [sym_null] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1424), + [sym_comment] = ACTIONS(81), }, - [333] = { - [sym__expression] = STATE(590), - [sym_conditional_expression] = STATE(590), - [sym_assignment_expression] = STATE(590), - [sym_pointer_expression] = STATE(590), - [sym_logical_expression] = STATE(590), - [sym_bitwise_expression] = STATE(590), - [sym_equality_expression] = STATE(590), - [sym_relational_expression] = STATE(590), - [sym_shift_expression] = STATE(590), - [sym_math_expression] = STATE(590), - [sym_cast_expression] = STATE(590), - [sym_sizeof_expression] = STATE(590), - [sym_subscript_expression] = STATE(590), - [sym_call_expression] = STATE(590), - [sym_field_expression] = STATE(590), - [sym_compound_literal_expression] = STATE(590), - [sym_parenthesized_expression] = STATE(590), - [sym_char_literal] = STATE(590), - [sym_concatenated_string] = STATE(590), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1590), - [sym_false] = ACTIONS(1590), - [sym_null] = ACTIONS(1590), - [sym_identifier] = ACTIONS(1590), - [sym_comment] = ACTIONS(85), + [288] = { + [sym__expression] = STATE(528), + [sym_conditional_expression] = STATE(528), + [sym_assignment_expression] = STATE(528), + [sym_pointer_expression] = STATE(528), + [sym_logical_expression] = STATE(528), + [sym_bitwise_expression] = STATE(528), + [sym_equality_expression] = STATE(528), + [sym_relational_expression] = STATE(528), + [sym_shift_expression] = STATE(528), + [sym_math_expression] = STATE(528), + [sym_cast_expression] = STATE(528), + [sym_sizeof_expression] = STATE(528), + [sym_subscript_expression] = STATE(528), + [sym_call_expression] = STATE(528), + [sym_field_expression] = STATE(528), + [sym_compound_literal_expression] = STATE(528), + [sym_parenthesized_expression] = STATE(528), + [sym_char_literal] = STATE(528), + [sym_concatenated_string] = STATE(528), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [sym_null] = ACTIONS(1428), + [sym_identifier] = ACTIONS(1428), + [sym_comment] = ACTIONS(81), }, - [334] = { - [sym__expression] = STATE(591), - [sym_conditional_expression] = STATE(591), - [sym_assignment_expression] = STATE(591), - [sym_pointer_expression] = STATE(591), - [sym_logical_expression] = STATE(591), - [sym_bitwise_expression] = STATE(591), - [sym_equality_expression] = STATE(591), - [sym_relational_expression] = STATE(591), - [sym_shift_expression] = STATE(591), - [sym_math_expression] = STATE(591), - [sym_cast_expression] = STATE(591), - [sym_sizeof_expression] = STATE(591), - [sym_subscript_expression] = STATE(591), - [sym_call_expression] = STATE(591), - [sym_field_expression] = STATE(591), - [sym_compound_literal_expression] = STATE(591), - [sym_parenthesized_expression] = STATE(591), - [sym_char_literal] = STATE(591), - [sym_concatenated_string] = STATE(591), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1592), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1594), - [sym_false] = ACTIONS(1594), - [sym_null] = ACTIONS(1594), - [sym_identifier] = ACTIONS(1594), - [sym_comment] = ACTIONS(85), + [289] = { + [sym__expression] = STATE(529), + [sym_conditional_expression] = STATE(529), + [sym_assignment_expression] = STATE(529), + [sym_pointer_expression] = STATE(529), + [sym_logical_expression] = STATE(529), + [sym_bitwise_expression] = STATE(529), + [sym_equality_expression] = STATE(529), + [sym_relational_expression] = STATE(529), + [sym_shift_expression] = STATE(529), + [sym_math_expression] = STATE(529), + [sym_cast_expression] = STATE(529), + [sym_sizeof_expression] = STATE(529), + [sym_subscript_expression] = STATE(529), + [sym_call_expression] = STATE(529), + [sym_field_expression] = STATE(529), + [sym_compound_literal_expression] = STATE(529), + [sym_parenthesized_expression] = STATE(529), + [sym_char_literal] = STATE(529), + [sym_concatenated_string] = STATE(529), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1432), + [sym_false] = ACTIONS(1432), + [sym_null] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1432), + [sym_comment] = ACTIONS(81), }, - [335] = { - [sym__expression] = STATE(592), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(592), - [sym_logical_expression] = STATE(592), - [sym_bitwise_expression] = STATE(592), - [sym_equality_expression] = STATE(592), - [sym_relational_expression] = STATE(592), - [sym_shift_expression] = STATE(592), - [sym_math_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(592), - [sym_call_expression] = STATE(592), - [sym_field_expression] = STATE(592), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(592), - [sym_char_literal] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1596), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1598), - [sym_false] = ACTIONS(1598), - [sym_null] = ACTIONS(1598), - [sym_identifier] = ACTIONS(1598), - [sym_comment] = ACTIONS(85), + [290] = { + [sym__expression] = STATE(530), + [sym_conditional_expression] = STATE(530), + [sym_assignment_expression] = STATE(530), + [sym_pointer_expression] = STATE(530), + [sym_logical_expression] = STATE(530), + [sym_bitwise_expression] = STATE(530), + [sym_equality_expression] = STATE(530), + [sym_relational_expression] = STATE(530), + [sym_shift_expression] = STATE(530), + [sym_math_expression] = STATE(530), + [sym_cast_expression] = STATE(530), + [sym_sizeof_expression] = STATE(530), + [sym_subscript_expression] = STATE(530), + [sym_call_expression] = STATE(530), + [sym_field_expression] = STATE(530), + [sym_compound_literal_expression] = STATE(530), + [sym_parenthesized_expression] = STATE(530), + [sym_char_literal] = STATE(530), + [sym_concatenated_string] = STATE(530), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1436), + [sym_false] = ACTIONS(1436), + [sym_null] = ACTIONS(1436), + [sym_identifier] = ACTIONS(1436), + [sym_comment] = ACTIONS(81), }, - [336] = { - [sym_string_literal] = STATE(593), - [aux_sym_concatenated_string_repeat1] = STATE(593), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_LPAREN2] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_STAR_EQ] = ACTIONS(839), - [anon_sym_SLASH_EQ] = ACTIONS(839), - [anon_sym_PERCENT_EQ] = ACTIONS(839), - [anon_sym_PLUS_EQ] = ACTIONS(839), - [anon_sym_DASH_EQ] = ACTIONS(839), - [anon_sym_LT_LT_EQ] = ACTIONS(839), - [anon_sym_GT_GT_EQ] = ACTIONS(839), - [anon_sym_AMP_EQ] = ACTIONS(839), - [anon_sym_CARET_EQ] = ACTIONS(839), - [anon_sym_PIPE_EQ] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(841), - [anon_sym_PIPE_PIPE] = ACTIONS(839), - [anon_sym_AMP_AMP] = ACTIONS(839), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(839), - [anon_sym_BANG_EQ] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_LT_EQ] = ACTIONS(839), - [anon_sym_GT_EQ] = ACTIONS(839), - [anon_sym_LT_LT] = ACTIONS(841), - [anon_sym_GT_GT] = ACTIONS(841), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_PERCENT] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(839), - [anon_sym_PLUS_PLUS] = ACTIONS(839), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_DASH_GT] = ACTIONS(839), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_comment] = ACTIONS(85), + [291] = { + [sym_string_literal] = STATE(531), + [aux_sym_concatenated_string_repeat1] = STATE(531), + [anon_sym_SEMI] = ACTIONS(761), + [anon_sym_LPAREN2] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_STAR_EQ] = ACTIONS(761), + [anon_sym_SLASH_EQ] = ACTIONS(761), + [anon_sym_PERCENT_EQ] = ACTIONS(761), + [anon_sym_PLUS_EQ] = ACTIONS(761), + [anon_sym_DASH_EQ] = ACTIONS(761), + [anon_sym_LT_LT_EQ] = ACTIONS(761), + [anon_sym_GT_GT_EQ] = ACTIONS(761), + [anon_sym_AMP_EQ] = ACTIONS(761), + [anon_sym_CARET_EQ] = ACTIONS(761), + [anon_sym_PIPE_EQ] = ACTIONS(761), + [anon_sym_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(761), + [anon_sym_AMP_AMP] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_CARET] = ACTIONS(763), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_LT_LT] = ACTIONS(763), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_PERCENT] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(761), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_comment] = ACTIONS(81), }, - [337] = { - [ts_builtin_sym_end] = ACTIONS(1600), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1602), - [sym_preproc_directive] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_typedef] = ACTIONS(1602), - [anon_sym_extern] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_LPAREN2] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_auto] = ACTIONS(1602), - [anon_sym_register] = ACTIONS(1602), - [anon_sym_inline] = ACTIONS(1602), - [anon_sym_const] = ACTIONS(1602), - [anon_sym_restrict] = ACTIONS(1602), - [anon_sym_volatile] = ACTIONS(1602), - [anon_sym__Atomic] = ACTIONS(1602), - [anon_sym_unsigned] = ACTIONS(1602), - [anon_sym_long] = ACTIONS(1602), - [anon_sym_short] = ACTIONS(1602), - [sym_primitive_type] = ACTIONS(1602), - [anon_sym_enum] = ACTIONS(1602), - [anon_sym_struct] = ACTIONS(1602), - [anon_sym_union] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1602), - [anon_sym_else] = ACTIONS(1602), - [anon_sym_switch] = ACTIONS(1602), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1602), - [anon_sym_while] = ACTIONS(1602), - [anon_sym_do] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1602), - [anon_sym_return] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1602), - [anon_sym_continue] = ACTIONS(1602), - [anon_sym_goto] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_BANG] = ACTIONS(1600), - [anon_sym_TILDE] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1602), - [anon_sym_DASH] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1600), - [anon_sym_sizeof] = ACTIONS(1602), - [sym_number_literal] = ACTIONS(1600), - [anon_sym_SQUOTE] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_identifier] = ACTIONS(1602), - [sym_comment] = ACTIONS(85), + [292] = { + [ts_builtin_sym_end] = ACTIONS(1438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_case] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [sym_null] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1440), + [sym_comment] = ACTIONS(81), }, - [338] = { - [anon_sym_RPAREN] = ACTIONS(1604), - [sym_comment] = ACTIONS(85), + [293] = { + [anon_sym_RPAREN] = ACTIONS(1442), + [sym_comment] = ACTIONS(81), }, - [339] = { - [anon_sym_COMMA] = ACTIONS(1606), - [anon_sym_RPAREN] = ACTIONS(1606), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_LPAREN2] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1606), - [anon_sym_EQ] = ACTIONS(1608), - [anon_sym_COLON] = ACTIONS(1606), - [anon_sym_QMARK] = ACTIONS(1606), - [anon_sym_STAR_EQ] = ACTIONS(1606), - [anon_sym_SLASH_EQ] = ACTIONS(1606), - [anon_sym_PERCENT_EQ] = ACTIONS(1606), - [anon_sym_PLUS_EQ] = ACTIONS(1606), - [anon_sym_DASH_EQ] = ACTIONS(1606), - [anon_sym_LT_LT_EQ] = ACTIONS(1606), - [anon_sym_GT_GT_EQ] = ACTIONS(1606), - [anon_sym_AMP_EQ] = ACTIONS(1606), - [anon_sym_CARET_EQ] = ACTIONS(1606), - [anon_sym_PIPE_EQ] = ACTIONS(1606), - [anon_sym_AMP] = ACTIONS(1608), - [anon_sym_PIPE_PIPE] = ACTIONS(1606), - [anon_sym_AMP_AMP] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1608), - [anon_sym_CARET] = ACTIONS(1608), - [anon_sym_EQ_EQ] = ACTIONS(1606), - [anon_sym_BANG_EQ] = ACTIONS(1606), - [anon_sym_LT] = ACTIONS(1608), - [anon_sym_GT] = ACTIONS(1608), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_LT_LT] = ACTIONS(1608), - [anon_sym_GT_GT] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_SLASH] = ACTIONS(1608), - [anon_sym_PERCENT] = ACTIONS(1608), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DOT] = ACTIONS(1606), - [anon_sym_DASH_GT] = ACTIONS(1606), - [sym_comment] = ACTIONS(85), + [294] = { + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_RBRACK] = ACTIONS(1444), + [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_COLON] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_STAR_EQ] = ACTIONS(1444), + [anon_sym_SLASH_EQ] = ACTIONS(1444), + [anon_sym_PERCENT_EQ] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1444), + [anon_sym_DASH_EQ] = ACTIONS(1444), + [anon_sym_LT_LT_EQ] = ACTIONS(1444), + [anon_sym_GT_GT_EQ] = ACTIONS(1444), + [anon_sym_AMP_EQ] = ACTIONS(1444), + [anon_sym_CARET_EQ] = ACTIONS(1444), + [anon_sym_PIPE_EQ] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1444), + [anon_sym_AMP_AMP] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1446), + [anon_sym_EQ_EQ] = ACTIONS(1444), + [anon_sym_BANG_EQ] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1446), + [anon_sym_LT_EQ] = ACTIONS(1444), + [anon_sym_GT_EQ] = ACTIONS(1444), + [anon_sym_LT_LT] = ACTIONS(1446), + [anon_sym_GT_GT] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_PERCENT] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [sym_comment] = ACTIONS(81), }, - [340] = { - [anon_sym_COMMA] = ACTIONS(1610), - [anon_sym_RPAREN] = ACTIONS(1610), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_extern] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_LPAREN2] = ACTIONS(1610), - [anon_sym_STAR] = ACTIONS(1612), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_RBRACK] = ACTIONS(1610), - [anon_sym_EQ] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_auto] = ACTIONS(1612), - [anon_sym_register] = ACTIONS(1612), - [anon_sym_inline] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_restrict] = ACTIONS(1612), - [anon_sym_volatile] = ACTIONS(1612), - [anon_sym__Atomic] = ACTIONS(1612), - [anon_sym_unsigned] = ACTIONS(1612), - [anon_sym_long] = ACTIONS(1612), - [anon_sym_short] = ACTIONS(1612), - [sym_primitive_type] = ACTIONS(1612), - [anon_sym_enum] = ACTIONS(1612), - [anon_sym_struct] = ACTIONS(1612), - [anon_sym_union] = ACTIONS(1612), - [anon_sym_COLON] = ACTIONS(1610), - [anon_sym_QMARK] = ACTIONS(1610), - [anon_sym_STAR_EQ] = ACTIONS(1610), - [anon_sym_SLASH_EQ] = ACTIONS(1610), - [anon_sym_PERCENT_EQ] = ACTIONS(1610), - [anon_sym_PLUS_EQ] = ACTIONS(1610), - [anon_sym_DASH_EQ] = ACTIONS(1610), - [anon_sym_LT_LT_EQ] = ACTIONS(1610), - [anon_sym_GT_GT_EQ] = ACTIONS(1610), - [anon_sym_AMP_EQ] = ACTIONS(1610), - [anon_sym_CARET_EQ] = ACTIONS(1610), - [anon_sym_PIPE_EQ] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_PIPE_PIPE] = ACTIONS(1610), - [anon_sym_AMP_AMP] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1612), - [anon_sym_EQ_EQ] = ACTIONS(1610), - [anon_sym_BANG_EQ] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_LT_EQ] = ACTIONS(1610), - [anon_sym_GT_EQ] = ACTIONS(1610), - [anon_sym_LT_LT] = ACTIONS(1612), - [anon_sym_GT_GT] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_SLASH] = ACTIONS(1612), - [anon_sym_PERCENT] = ACTIONS(1612), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1610), - [anon_sym_DOT] = ACTIONS(1610), - [anon_sym_DASH_GT] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym_identifier] = ACTIONS(1612), - [sym_comment] = ACTIONS(85), + [295] = { + [anon_sym_COMMA] = ACTIONS(1448), + [anon_sym_RPAREN] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_RBRACK] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_COLON] = ACTIONS(1448), + [anon_sym_QMARK] = ACTIONS(1448), + [anon_sym_STAR_EQ] = ACTIONS(1448), + [anon_sym_SLASH_EQ] = ACTIONS(1448), + [anon_sym_PERCENT_EQ] = ACTIONS(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1448), + [anon_sym_DASH_EQ] = ACTIONS(1448), + [anon_sym_LT_LT_EQ] = ACTIONS(1448), + [anon_sym_GT_GT_EQ] = ACTIONS(1448), + [anon_sym_AMP_EQ] = ACTIONS(1448), + [anon_sym_CARET_EQ] = ACTIONS(1448), + [anon_sym_PIPE_EQ] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_PIPE_PIPE] = ACTIONS(1448), + [anon_sym_AMP_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1450), + [anon_sym_EQ_EQ] = ACTIONS(1448), + [anon_sym_BANG_EQ] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_LT_EQ] = ACTIONS(1448), + [anon_sym_GT_EQ] = ACTIONS(1448), + [anon_sym_LT_LT] = ACTIONS(1450), + [anon_sym_GT_GT] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_SLASH] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(1448), + [anon_sym_DASH_GT] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1450), + [sym_comment] = ACTIONS(81), }, - [341] = { - [aux_sym_string_literal_repeat1] = STATE(341), - [anon_sym_DQUOTE] = ACTIONS(1614), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1616), - [sym_escape_sequence] = ACTIONS(1616), - [sym_comment] = ACTIONS(95), + [296] = { + [aux_sym_string_literal_repeat1] = STATE(296), + [anon_sym_DQUOTE] = ACTIONS(1452), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1454), + [sym_escape_sequence] = ACTIONS(1454), + [sym_comment] = ACTIONS(91), }, - [342] = { - [anon_sym_RPAREN] = ACTIONS(1619), - [sym_comment] = ACTIONS(85), + [297] = { + [anon_sym_RPAREN] = ACTIONS(1457), + [sym_comment] = ACTIONS(81), }, - [343] = { - [ts_builtin_sym_end] = ACTIONS(1621), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1623), - [sym_preproc_directive] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_typedef] = ACTIONS(1623), - [anon_sym_extern] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1623), - [anon_sym_auto] = ACTIONS(1623), - [anon_sym_register] = ACTIONS(1623), - [anon_sym_inline] = ACTIONS(1623), - [anon_sym_const] = ACTIONS(1623), - [anon_sym_restrict] = ACTIONS(1623), - [anon_sym_volatile] = ACTIONS(1623), - [anon_sym__Atomic] = ACTIONS(1623), - [anon_sym_unsigned] = ACTIONS(1623), - [anon_sym_long] = ACTIONS(1623), - [anon_sym_short] = ACTIONS(1623), - [sym_primitive_type] = ACTIONS(1623), - [anon_sym_enum] = ACTIONS(1623), - [anon_sym_struct] = ACTIONS(1623), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(1623), - [anon_sym_else] = ACTIONS(1623), - [anon_sym_switch] = ACTIONS(1623), - [anon_sym_case] = ACTIONS(1623), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_while] = ACTIONS(1623), - [anon_sym_do] = ACTIONS(1623), - [anon_sym_for] = ACTIONS(1623), - [anon_sym_return] = ACTIONS(1623), - [anon_sym_break] = ACTIONS(1623), - [anon_sym_continue] = ACTIONS(1623), - [anon_sym_goto] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym_true] = ACTIONS(1623), - [sym_false] = ACTIONS(1623), - [sym_null] = ACTIONS(1623), - [sym_identifier] = ACTIONS(1623), - [sym_comment] = ACTIONS(85), + [298] = { + [ts_builtin_sym_end] = ACTIONS(1459), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1461), + [sym_preproc_directive] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_typedef] = ACTIONS(1461), + [anon_sym_extern] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_LPAREN2] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_auto] = ACTIONS(1461), + [anon_sym_register] = ACTIONS(1461), + [anon_sym_inline] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_restrict] = ACTIONS(1461), + [anon_sym_volatile] = ACTIONS(1461), + [anon_sym__Atomic] = ACTIONS(1461), + [anon_sym_unsigned] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [sym_primitive_type] = ACTIONS(1461), + [anon_sym_enum] = ACTIONS(1461), + [anon_sym_struct] = ACTIONS(1461), + [anon_sym_union] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_case] = ACTIONS(1461), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_goto] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_sizeof] = ACTIONS(1461), + [sym_number_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [sym_true] = ACTIONS(1461), + [sym_false] = ACTIONS(1461), + [sym_null] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1461), + [sym_comment] = ACTIONS(81), }, - [344] = { - [sym__declarator] = STATE(346), - [sym_pointer_declarator] = STATE(346), - [sym_function_declarator] = STATE(346), - [sym_array_declarator] = STATE(346), - [sym_type_qualifier] = STATE(596), - [aux_sym_type_definition_repeat1] = STATE(596), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(733), + [299] = { + [sym__declarator] = STATE(301), + [sym_pointer_declarator] = STATE(301), + [sym_function_declarator] = STATE(301), + [sym_array_declarator] = STATE(301), + [sym_type_qualifier] = STATE(534), + [aux_sym_type_definition_repeat1] = STATE(534), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(641), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(737), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(645), + [sym_comment] = ACTIONS(81), }, - [345] = { - [sym_parameter_list] = STATE(354), - [anon_sym_RPAREN] = ACTIONS(1625), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [sym_comment] = ACTIONS(85), + [300] = { + [sym_parameter_list] = STATE(309), + [anon_sym_RPAREN] = ACTIONS(1463), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(653), + [sym_comment] = ACTIONS(81), }, - [346] = { - [sym_parameter_list] = STATE(354), - [anon_sym_COMMA] = ACTIONS(1627), - [anon_sym_RPAREN] = ACTIONS(1627), - [anon_sym_SEMI] = ACTIONS(1627), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(1627), - [sym_comment] = ACTIONS(85), + [301] = { + [sym_parameter_list] = STATE(309), + [anon_sym_COMMA] = ACTIONS(1465), + [anon_sym_RPAREN] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(1465), + [sym_comment] = ACTIONS(81), }, - [347] = { - [sym__declarator] = STATE(598), - [sym_pointer_declarator] = STATE(598), - [sym_function_declarator] = STATE(598), - [sym_array_declarator] = STATE(598), - [sym_type_qualifier] = STATE(599), - [aux_sym_type_definition_repeat1] = STATE(599), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), + [302] = { + [sym__declarator] = STATE(536), + [sym_pointer_declarator] = STATE(536), + [sym_function_declarator] = STATE(536), + [sym_array_declarator] = STATE(536), + [sym_type_qualifier] = STATE(537), + [aux_sym_type_definition_repeat1] = STATE(537), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(261), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1629), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(1467), + [sym_comment] = ACTIONS(81), }, - [348] = { - [sym__declarator] = STATE(600), - [sym_pointer_declarator] = STATE(600), - [sym_function_declarator] = STATE(600), - [sym_array_declarator] = STATE(600), - [sym_init_declarator] = STATE(601), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(471), - [sym_identifier] = ACTIONS(1631), - [sym_comment] = ACTIONS(85), + [303] = { + [sym__declarator] = STATE(538), + [sym_pointer_declarator] = STATE(538), + [sym_function_declarator] = STATE(538), + [sym_array_declarator] = STATE(538), + [sym_init_declarator] = STATE(539), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(427), + [sym_identifier] = ACTIONS(1469), + [sym_comment] = ACTIONS(81), }, - [349] = { - [ts_builtin_sym_end] = ACTIONS(1633), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1635), - [sym_preproc_directive] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_typedef] = ACTIONS(1635), - [anon_sym_extern] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1635), - [anon_sym_auto] = ACTIONS(1635), - [anon_sym_register] = ACTIONS(1635), - [anon_sym_inline] = ACTIONS(1635), - [anon_sym_const] = ACTIONS(1635), - [anon_sym_restrict] = ACTIONS(1635), - [anon_sym_volatile] = ACTIONS(1635), - [anon_sym__Atomic] = ACTIONS(1635), - [anon_sym_unsigned] = ACTIONS(1635), - [anon_sym_long] = ACTIONS(1635), - [anon_sym_short] = ACTIONS(1635), - [sym_primitive_type] = ACTIONS(1635), - [anon_sym_enum] = ACTIONS(1635), - [anon_sym_struct] = ACTIONS(1635), - [anon_sym_union] = ACTIONS(1635), - [anon_sym_if] = ACTIONS(1635), - [anon_sym_else] = ACTIONS(1635), - [anon_sym_switch] = ACTIONS(1635), - [anon_sym_case] = ACTIONS(1635), - [anon_sym_default] = ACTIONS(1635), - [anon_sym_while] = ACTIONS(1635), - [anon_sym_do] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1635), - [anon_sym_return] = ACTIONS(1635), - [anon_sym_break] = ACTIONS(1635), - [anon_sym_continue] = ACTIONS(1635), - [anon_sym_goto] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(1633), - [anon_sym_TILDE] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_PLUS_PLUS] = ACTIONS(1633), - [anon_sym_sizeof] = ACTIONS(1635), - [sym_number_literal] = ACTIONS(1633), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym_true] = ACTIONS(1635), - [sym_false] = ACTIONS(1635), - [sym_null] = ACTIONS(1635), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(85), + [304] = { + [ts_builtin_sym_end] = ACTIONS(1471), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1473), + [sym_preproc_directive] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_typedef] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_LPAREN2] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_auto] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_inline] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_restrict] = ACTIONS(1473), + [anon_sym_volatile] = ACTIONS(1473), + [anon_sym__Atomic] = ACTIONS(1473), + [anon_sym_unsigned] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [sym_primitive_type] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_case] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_goto] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_sizeof] = ACTIONS(1473), + [sym_number_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [sym_true] = ACTIONS(1473), + [sym_false] = ACTIONS(1473), + [sym_null] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1473), + [sym_comment] = ACTIONS(81), }, - [350] = { - [sym__declaration_specifiers] = STATE(492), - [sym_storage_class_specifier] = STATE(495), - [sym_type_qualifier] = STATE(495), - [sym__type_specifier] = STATE(494), - [sym_sized_type_specifier] = STATE(494), - [sym_enum_specifier] = STATE(494), - [sym_struct_specifier] = STATE(494), - [sym_union_specifier] = STATE(494), - [sym_parameter_declaration] = STATE(490), - [sym_macro_type_specifier] = STATE(494), - [aux_sym__declaration_specifiers_repeat1] = STATE(495), - [aux_sym_sized_type_specifier_repeat1] = STATE(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(1307), + [305] = { + [sym__declaration_specifiers] = STATE(445), + [sym_storage_class_specifier] = STATE(448), + [sym_type_qualifier] = STATE(448), + [sym__type_specifier] = STATE(447), + [sym_sized_type_specifier] = STATE(447), + [sym_enum_specifier] = STATE(447), + [sym_struct_specifier] = STATE(447), + [sym_union_specifier] = STATE(447), + [sym_parameter_declaration] = STATE(443), + [sym_macro_type_specifier] = STATE(447), + [aux_sym__declaration_specifiers_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), + [anon_sym_RPAREN] = ACTIONS(1197), [anon_sym_extern] = ACTIONS(29), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), @@ -17899,1283 +15992,1586 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(1309), - [anon_sym_long] = ACTIONS(1309), - [anon_sym_short] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1201), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [351] = { - [sym_type_qualifier] = STATE(605), - [sym__expression] = STATE(604), - [sym_conditional_expression] = STATE(604), - [sym_assignment_expression] = STATE(604), - [sym_pointer_expression] = STATE(604), - [sym_logical_expression] = STATE(604), - [sym_bitwise_expression] = STATE(604), - [sym_equality_expression] = STATE(604), - [sym_relational_expression] = STATE(604), - [sym_shift_expression] = STATE(604), - [sym_math_expression] = STATE(604), - [sym_cast_expression] = STATE(604), - [sym_sizeof_expression] = STATE(604), - [sym_subscript_expression] = STATE(604), - [sym_call_expression] = STATE(604), - [sym_field_expression] = STATE(604), - [sym_compound_literal_expression] = STATE(604), - [sym_parenthesized_expression] = STATE(604), - [sym_char_literal] = STATE(604), - [sym_concatenated_string] = STATE(604), - [sym_string_literal] = STATE(369), - [aux_sym_type_definition_repeat1] = STATE(605), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(1637), - [anon_sym_RBRACK] = ACTIONS(1639), + [306] = { + [sym_type_qualifier] = STATE(543), + [sym__expression] = STATE(542), + [sym_conditional_expression] = STATE(542), + [sym_assignment_expression] = STATE(542), + [sym_pointer_expression] = STATE(542), + [sym_logical_expression] = STATE(542), + [sym_bitwise_expression] = STATE(542), + [sym_equality_expression] = STATE(542), + [sym_relational_expression] = STATE(542), + [sym_shift_expression] = STATE(542), + [sym_math_expression] = STATE(542), + [sym_cast_expression] = STATE(542), + [sym_sizeof_expression] = STATE(542), + [sym_subscript_expression] = STATE(542), + [sym_call_expression] = STATE(542), + [sym_field_expression] = STATE(542), + [sym_compound_literal_expression] = STATE(542), + [sym_parenthesized_expression] = STATE(542), + [sym_char_literal] = STATE(542), + [sym_concatenated_string] = STATE(542), + [sym_string_literal] = STATE(324), + [aux_sym_type_definition_repeat1] = STATE(543), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_RBRACK] = ACTIONS(1477), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(1641), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1643), - [sym_false] = ACTIONS(1643), - [sym_null] = ACTIONS(1643), - [sym_identifier] = ACTIONS(1643), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1481), + [sym_false] = ACTIONS(1481), + [sym_null] = ACTIONS(1481), + [sym_identifier] = ACTIONS(1481), + [sym_comment] = ACTIONS(81), }, - [352] = { - [sym__expression] = STATE(606), - [sym_conditional_expression] = STATE(606), - [sym_assignment_expression] = STATE(606), - [sym_pointer_expression] = STATE(606), - [sym_logical_expression] = STATE(606), - [sym_bitwise_expression] = STATE(606), - [sym_equality_expression] = STATE(606), - [sym_relational_expression] = STATE(606), - [sym_shift_expression] = STATE(606), - [sym_math_expression] = STATE(606), - [sym_cast_expression] = STATE(606), - [sym_sizeof_expression] = STATE(606), - [sym_subscript_expression] = STATE(606), - [sym_call_expression] = STATE(606), - [sym_field_expression] = STATE(606), - [sym_compound_literal_expression] = STATE(606), - [sym_parenthesized_expression] = STATE(606), - [sym_initializer_list] = STATE(607), - [sym_char_literal] = STATE(606), - [sym_concatenated_string] = STATE(606), - [sym_string_literal] = STATE(41), - [anon_sym_LBRACE] = ACTIONS(1383), + [307] = { + [sym__expression] = STATE(544), + [sym_conditional_expression] = STATE(544), + [sym_assignment_expression] = STATE(544), + [sym_pointer_expression] = STATE(544), + [sym_logical_expression] = STATE(544), + [sym_bitwise_expression] = STATE(544), + [sym_equality_expression] = STATE(544), + [sym_relational_expression] = STATE(544), + [sym_shift_expression] = STATE(544), + [sym_math_expression] = STATE(544), + [sym_cast_expression] = STATE(544), + [sym_sizeof_expression] = STATE(544), + [sym_subscript_expression] = STATE(544), + [sym_call_expression] = STATE(544), + [sym_field_expression] = STATE(544), + [sym_compound_literal_expression] = STATE(544), + [sym_parenthesized_expression] = STATE(544), + [sym_initializer_list] = STATE(545), + [sym_char_literal] = STATE(544), + [sym_concatenated_string] = STATE(544), + [sym_string_literal] = STATE(39), + [anon_sym_LBRACE] = ACTIONS(1273), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1645), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1647), - [sym_false] = ACTIONS(1647), - [sym_null] = ACTIONS(1647), - [sym_identifier] = ACTIONS(1647), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1485), + [sym_false] = ACTIONS(1485), + [sym_null] = ACTIONS(1485), + [sym_identifier] = ACTIONS(1485), + [sym_comment] = ACTIONS(81), }, - [353] = { - [ts_builtin_sym_end] = ACTIONS(1649), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1651), - [sym_preproc_directive] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_typedef] = ACTIONS(1651), - [anon_sym_extern] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1649), - [anon_sym_LPAREN2] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1651), - [anon_sym_auto] = ACTIONS(1651), - [anon_sym_register] = ACTIONS(1651), - [anon_sym_inline] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [anon_sym_restrict] = ACTIONS(1651), - [anon_sym_volatile] = ACTIONS(1651), - [anon_sym__Atomic] = ACTIONS(1651), - [anon_sym_unsigned] = ACTIONS(1651), - [anon_sym_long] = ACTIONS(1651), - [anon_sym_short] = ACTIONS(1651), - [sym_primitive_type] = ACTIONS(1651), - [anon_sym_enum] = ACTIONS(1651), - [anon_sym_struct] = ACTIONS(1651), - [anon_sym_union] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_switch] = ACTIONS(1651), - [anon_sym_case] = ACTIONS(1651), - [anon_sym_default] = ACTIONS(1651), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_do] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_goto] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1649), - [anon_sym_TILDE] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_DASH_DASH] = ACTIONS(1649), - [anon_sym_PLUS_PLUS] = ACTIONS(1649), - [anon_sym_sizeof] = ACTIONS(1651), - [sym_number_literal] = ACTIONS(1649), - [anon_sym_SQUOTE] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_true] = ACTIONS(1651), - [sym_false] = ACTIONS(1651), - [sym_null] = ACTIONS(1651), - [sym_identifier] = ACTIONS(1651), - [sym_comment] = ACTIONS(85), + [308] = { + [ts_builtin_sym_end] = ACTIONS(1487), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1489), + [sym_preproc_directive] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_typedef] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_auto] = ACTIONS(1489), + [anon_sym_register] = ACTIONS(1489), + [anon_sym_inline] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_restrict] = ACTIONS(1489), + [anon_sym_volatile] = ACTIONS(1489), + [anon_sym__Atomic] = ACTIONS(1489), + [anon_sym_unsigned] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [sym_primitive_type] = ACTIONS(1489), + [anon_sym_enum] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1489), + [anon_sym_union] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_goto] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_sizeof] = ACTIONS(1489), + [sym_number_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [sym_true] = ACTIONS(1489), + [sym_false] = ACTIONS(1489), + [sym_null] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1489), + [sym_comment] = ACTIONS(81), }, - [354] = { - [anon_sym_COMMA] = ACTIONS(1653), - [anon_sym_RPAREN] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1653), - [anon_sym_LPAREN2] = ACTIONS(1653), - [anon_sym_LBRACK] = ACTIONS(1653), - [anon_sym_EQ] = ACTIONS(1653), - [sym_comment] = ACTIONS(85), + [309] = { + [anon_sym_COMMA] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_LPAREN2] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1491), + [sym_comment] = ACTIONS(81), }, - [355] = { - [aux_sym_declaration_repeat1] = STATE(609), - [anon_sym_COMMA] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(1655), - [sym_comment] = ACTIONS(85), + [310] = { + [aux_sym_declaration_repeat1] = STATE(547), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(1493), + [sym_comment] = ACTIONS(81), }, - [356] = { - [sym_storage_class_specifier] = STATE(356), - [sym_type_qualifier] = STATE(356), - [aux_sym__declaration_specifiers_repeat1] = STATE(356), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_LPAREN2] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(965), - [anon_sym_restrict] = ACTIONS(965), - [anon_sym_volatile] = ACTIONS(965), - [anon_sym__Atomic] = ACTIONS(965), - [sym_identifier] = ACTIONS(968), - [sym_comment] = ACTIONS(85), + [311] = { + [sym_storage_class_specifier] = STATE(311), + [sym_type_qualifier] = STATE(311), + [aux_sym__declaration_specifiers_repeat1] = STATE(311), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LPAREN2] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_static] = ACTIONS(878), + [anon_sym_auto] = ACTIONS(878), + [anon_sym_register] = ACTIONS(878), + [anon_sym_inline] = ACTIONS(878), + [anon_sym_const] = ACTIONS(881), + [anon_sym_restrict] = ACTIONS(881), + [anon_sym_volatile] = ACTIONS(881), + [anon_sym__Atomic] = ACTIONS(881), + [sym_identifier] = ACTIONS(884), + [sym_comment] = ACTIONS(81), }, - [357] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_STAR_EQ] = ACTIONS(317), - [anon_sym_SLASH_EQ] = ACTIONS(317), - [anon_sym_PERCENT_EQ] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(317), - [anon_sym_DASH_EQ] = ACTIONS(317), - [anon_sym_LT_LT_EQ] = ACTIONS(317), - [anon_sym_GT_GT_EQ] = ACTIONS(317), - [anon_sym_AMP_EQ] = ACTIONS(317), - [anon_sym_CARET_EQ] = ACTIONS(317), - [anon_sym_PIPE_EQ] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(319), - [anon_sym_PIPE_PIPE] = ACTIONS(321), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [312] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_SEMI] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(281), + [anon_sym_STAR_EQ] = ACTIONS(283), + [anon_sym_SLASH_EQ] = ACTIONS(283), + [anon_sym_PERCENT_EQ] = ACTIONS(283), + [anon_sym_PLUS_EQ] = ACTIONS(283), + [anon_sym_DASH_EQ] = ACTIONS(283), + [anon_sym_LT_LT_EQ] = ACTIONS(283), + [anon_sym_GT_GT_EQ] = ACTIONS(283), + [anon_sym_AMP_EQ] = ACTIONS(283), + [anon_sym_CARET_EQ] = ACTIONS(283), + [anon_sym_PIPE_EQ] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [358] = { - [anon_sym_RPAREN] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [sym_comment] = ACTIONS(85), + [313] = { + [anon_sym_RPAREN] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1497), + [sym_comment] = ACTIONS(81), }, - [359] = { - [anon_sym_COMMA] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_RBRACK] = ACTIONS(1661), - [anon_sym_EQ] = ACTIONS(1663), - [anon_sym_COLON] = ACTIONS(1661), - [anon_sym_QMARK] = ACTIONS(1661), - [anon_sym_STAR_EQ] = ACTIONS(1661), - [anon_sym_SLASH_EQ] = ACTIONS(1661), - [anon_sym_PERCENT_EQ] = ACTIONS(1661), - [anon_sym_PLUS_EQ] = ACTIONS(1661), - [anon_sym_DASH_EQ] = ACTIONS(1661), - [anon_sym_LT_LT_EQ] = ACTIONS(1661), - [anon_sym_GT_GT_EQ] = ACTIONS(1661), - [anon_sym_AMP_EQ] = ACTIONS(1661), - [anon_sym_CARET_EQ] = ACTIONS(1661), - [anon_sym_PIPE_EQ] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_PIPE_PIPE] = ACTIONS(1661), - [anon_sym_AMP_AMP] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1663), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1661), - [anon_sym_BANG_EQ] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(1663), - [anon_sym_GT] = ACTIONS(1663), - [anon_sym_LT_EQ] = ACTIONS(1661), - [anon_sym_GT_EQ] = ACTIONS(1661), - [anon_sym_LT_LT] = ACTIONS(1663), - [anon_sym_GT_GT] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1663), - [anon_sym_PERCENT] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1661), - [anon_sym_DOT] = ACTIONS(1661), - [anon_sym_DASH_GT] = ACTIONS(1661), - [sym_comment] = ACTIONS(85), + [314] = { + [anon_sym_COMMA] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_RBRACK] = ACTIONS(1499), + [anon_sym_EQ] = ACTIONS(1501), + [anon_sym_COLON] = ACTIONS(1499), + [anon_sym_QMARK] = ACTIONS(1499), + [anon_sym_STAR_EQ] = ACTIONS(1499), + [anon_sym_SLASH_EQ] = ACTIONS(1499), + [anon_sym_PERCENT_EQ] = ACTIONS(1499), + [anon_sym_PLUS_EQ] = ACTIONS(1499), + [anon_sym_DASH_EQ] = ACTIONS(1499), + [anon_sym_LT_LT_EQ] = ACTIONS(1499), + [anon_sym_GT_GT_EQ] = ACTIONS(1499), + [anon_sym_AMP_EQ] = ACTIONS(1499), + [anon_sym_CARET_EQ] = ACTIONS(1499), + [anon_sym_PIPE_EQ] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE_PIPE] = ACTIONS(1499), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1499), + [anon_sym_BANG_EQ] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1501), + [anon_sym_LT_EQ] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1499), + [anon_sym_LT_LT] = ACTIONS(1501), + [anon_sym_GT_GT] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_SLASH] = ACTIONS(1501), + [anon_sym_PERCENT] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(1499), + [anon_sym_DASH_GT] = ACTIONS(1499), + [sym_comment] = ACTIONS(81), }, - [360] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(612), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [315] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(550), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [361] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(1669), - [anon_sym_EQ] = ACTIONS(1671), - [anon_sym_COLON] = ACTIONS(1669), - [anon_sym_QMARK] = ACTIONS(1669), - [anon_sym_STAR_EQ] = ACTIONS(1669), - [anon_sym_SLASH_EQ] = ACTIONS(1669), - [anon_sym_PERCENT_EQ] = ACTIONS(1669), - [anon_sym_PLUS_EQ] = ACTIONS(1669), - [anon_sym_DASH_EQ] = ACTIONS(1669), - [anon_sym_LT_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_GT_EQ] = ACTIONS(1669), - [anon_sym_AMP_EQ] = ACTIONS(1669), - [anon_sym_CARET_EQ] = ACTIONS(1669), - [anon_sym_PIPE_EQ] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_CARET] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [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(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_SLASH] = ACTIONS(1671), - [anon_sym_PERCENT] = ACTIONS(1671), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [316] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_RPAREN] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(1507), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_COLON] = ACTIONS(1507), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1509), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_PERCENT] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [362] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(76), - [sym_sized_type_specifier] = STATE(76), - [sym_enum_specifier] = STATE(76), - [sym_struct_specifier] = STATE(76), - [sym_union_specifier] = STATE(76), - [sym__expression] = STATE(77), - [sym_comma_expression] = STATE(78), - [sym_conditional_expression] = STATE(77), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_type_descriptor] = STATE(613), - [sym_sizeof_expression] = STATE(77), - [sym_subscript_expression] = STATE(77), - [sym_call_expression] = STATE(77), - [sym_field_expression] = STATE(77), - [sym_compound_literal_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(80), - [sym_macro_type_specifier] = STATE(76), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(82), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), + [317] = { + [sym_type_qualifier] = STATE(76), + [sym__type_specifier] = STATE(71), + [sym_sized_type_specifier] = STATE(71), + [sym_enum_specifier] = STATE(71), + [sym_struct_specifier] = STATE(71), + [sym_union_specifier] = STATE(71), + [sym__expression] = STATE(72), + [sym_comma_expression] = STATE(73), + [sym_conditional_expression] = STATE(72), + [sym_assignment_expression] = STATE(72), + [sym_pointer_expression] = STATE(72), + [sym_logical_expression] = STATE(72), + [sym_bitwise_expression] = STATE(72), + [sym_equality_expression] = STATE(72), + [sym_relational_expression] = STATE(72), + [sym_shift_expression] = STATE(72), + [sym_math_expression] = STATE(72), + [sym_cast_expression] = STATE(72), + [sym_type_descriptor] = STATE(551), + [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(72), + [sym_call_expression] = STATE(72), + [sym_field_expression] = STATE(72), + [sym_compound_literal_expression] = STATE(72), + [sym_parenthesized_expression] = STATE(72), + [sym_char_literal] = STATE(72), + [sym_concatenated_string] = STATE(72), + [sym_string_literal] = STATE(75), + [sym_macro_type_specifier] = STATE(71), + [aux_sym_type_definition_repeat1] = STATE(76), + [aux_sym_sized_type_specifier_repeat1] = STATE(77), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [sym_primitive_type] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(129), + [anon_sym_long] = ACTIONS(129), + [anon_sym_short] = ACTIONS(129), + [sym_primitive_type] = ACTIONS(131), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(155), - [sym_false] = ACTIONS(155), - [sym_null] = ACTIONS(155), - [sym_identifier] = ACTIONS(157), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_identifier] = ACTIONS(147), + [sym_comment] = ACTIONS(81), }, - [363] = { - [sym__expression] = STATE(83), - [sym_conditional_expression] = STATE(83), - [sym_assignment_expression] = STATE(83), - [sym_pointer_expression] = STATE(83), - [sym_logical_expression] = STATE(83), - [sym_bitwise_expression] = STATE(83), - [sym_equality_expression] = STATE(83), - [sym_relational_expression] = STATE(83), - [sym_shift_expression] = STATE(83), - [sym_math_expression] = STATE(83), - [sym_cast_expression] = STATE(83), - [sym_sizeof_expression] = STATE(83), - [sym_subscript_expression] = STATE(83), - [sym_call_expression] = STATE(83), - [sym_field_expression] = STATE(83), - [sym_compound_literal_expression] = STATE(83), - [sym_parenthesized_expression] = STATE(83), - [sym_char_literal] = STATE(83), - [sym_concatenated_string] = STATE(83), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(85), + [318] = { + [sym__expression] = STATE(78), + [sym_conditional_expression] = STATE(78), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(78), + [sym_call_expression] = STATE(78), + [sym_field_expression] = STATE(78), + [sym_compound_literal_expression] = STATE(78), + [sym_parenthesized_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_concatenated_string] = STATE(78), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(151), + [sym_false] = ACTIONS(151), + [sym_null] = ACTIONS(151), + [sym_identifier] = ACTIONS(151), + [sym_comment] = ACTIONS(81), }, - [364] = { - [sym__expression] = STATE(127), - [sym_conditional_expression] = STATE(127), - [sym_assignment_expression] = STATE(127), - [sym_pointer_expression] = STATE(127), - [sym_logical_expression] = STATE(127), - [sym_bitwise_expression] = STATE(127), - [sym_equality_expression] = STATE(127), - [sym_relational_expression] = STATE(127), - [sym_shift_expression] = STATE(127), - [sym_math_expression] = STATE(127), - [sym_cast_expression] = STATE(127), - [sym_sizeof_expression] = STATE(127), - [sym_subscript_expression] = STATE(127), - [sym_call_expression] = STATE(127), - [sym_field_expression] = STATE(127), - [sym_compound_literal_expression] = STATE(127), - [sym_parenthesized_expression] = STATE(127), - [sym_char_literal] = STATE(127), - [sym_concatenated_string] = STATE(127), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(247), - [sym_false] = ACTIONS(247), - [sym_null] = ACTIONS(247), - [sym_identifier] = ACTIONS(247), - [sym_comment] = ACTIONS(85), + [319] = { + [sym__expression] = STATE(111), + [sym_conditional_expression] = STATE(111), + [sym_assignment_expression] = STATE(111), + [sym_pointer_expression] = STATE(111), + [sym_logical_expression] = STATE(111), + [sym_bitwise_expression] = STATE(111), + [sym_equality_expression] = STATE(111), + [sym_relational_expression] = STATE(111), + [sym_shift_expression] = STATE(111), + [sym_math_expression] = STATE(111), + [sym_cast_expression] = STATE(111), + [sym_sizeof_expression] = STATE(111), + [sym_subscript_expression] = STATE(111), + [sym_call_expression] = STATE(111), + [sym_field_expression] = STATE(111), + [sym_compound_literal_expression] = STATE(111), + [sym_parenthesized_expression] = STATE(111), + [sym_char_literal] = STATE(111), + [sym_concatenated_string] = STATE(111), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [sym_null] = ACTIONS(213), + [sym_identifier] = ACTIONS(213), + [sym_comment] = ACTIONS(81), }, - [365] = { - [sym__expression] = STATE(128), - [sym_conditional_expression] = STATE(128), - [sym_assignment_expression] = STATE(128), - [sym_pointer_expression] = STATE(128), - [sym_logical_expression] = STATE(128), - [sym_bitwise_expression] = STATE(128), - [sym_equality_expression] = STATE(128), - [sym_relational_expression] = STATE(128), - [sym_shift_expression] = STATE(128), - [sym_math_expression] = STATE(128), - [sym_cast_expression] = STATE(128), - [sym_sizeof_expression] = STATE(128), - [sym_subscript_expression] = STATE(128), - [sym_call_expression] = STATE(128), - [sym_field_expression] = STATE(128), - [sym_compound_literal_expression] = STATE(128), - [sym_parenthesized_expression] = STATE(128), - [sym_char_literal] = STATE(128), - [sym_concatenated_string] = STATE(128), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(251), - [sym_false] = ACTIONS(251), - [sym_null] = ACTIONS(251), - [sym_identifier] = ACTIONS(251), - [sym_comment] = ACTIONS(85), + [320] = { + [sym__expression] = STATE(112), + [sym_conditional_expression] = STATE(112), + [sym_assignment_expression] = STATE(112), + [sym_pointer_expression] = STATE(112), + [sym_logical_expression] = STATE(112), + [sym_bitwise_expression] = STATE(112), + [sym_equality_expression] = STATE(112), + [sym_relational_expression] = STATE(112), + [sym_shift_expression] = STATE(112), + [sym_math_expression] = STATE(112), + [sym_cast_expression] = STATE(112), + [sym_sizeof_expression] = STATE(112), + [sym_subscript_expression] = STATE(112), + [sym_call_expression] = STATE(112), + [sym_field_expression] = STATE(112), + [sym_compound_literal_expression] = STATE(112), + [sym_parenthesized_expression] = STATE(112), + [sym_char_literal] = STATE(112), + [sym_concatenated_string] = STATE(112), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(215), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [sym_null] = ACTIONS(217), + [sym_identifier] = ACTIONS(217), + [sym_comment] = ACTIONS(81), }, - [366] = { - [sym__expression] = STATE(129), - [sym_conditional_expression] = STATE(129), - [sym_assignment_expression] = STATE(129), - [sym_pointer_expression] = STATE(129), - [sym_logical_expression] = STATE(129), - [sym_bitwise_expression] = STATE(129), - [sym_equality_expression] = STATE(129), - [sym_relational_expression] = STATE(129), - [sym_shift_expression] = STATE(129), - [sym_math_expression] = STATE(129), - [sym_cast_expression] = STATE(129), - [sym_sizeof_expression] = STATE(129), - [sym_subscript_expression] = STATE(129), - [sym_call_expression] = STATE(129), - [sym_field_expression] = STATE(129), - [sym_compound_literal_expression] = STATE(129), - [sym_parenthesized_expression] = STATE(129), - [sym_char_literal] = STATE(129), - [sym_concatenated_string] = STATE(129), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(253), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(255), - [sym_false] = ACTIONS(255), - [sym_null] = ACTIONS(255), - [sym_identifier] = ACTIONS(255), - [sym_comment] = ACTIONS(85), + [321] = { + [sym__expression] = STATE(113), + [sym_conditional_expression] = STATE(113), + [sym_assignment_expression] = STATE(113), + [sym_pointer_expression] = STATE(113), + [sym_logical_expression] = STATE(113), + [sym_bitwise_expression] = STATE(113), + [sym_equality_expression] = STATE(113), + [sym_relational_expression] = STATE(113), + [sym_shift_expression] = STATE(113), + [sym_math_expression] = STATE(113), + [sym_cast_expression] = STATE(113), + [sym_sizeof_expression] = STATE(113), + [sym_subscript_expression] = STATE(113), + [sym_call_expression] = STATE(113), + [sym_field_expression] = STATE(113), + [sym_compound_literal_expression] = STATE(113), + [sym_parenthesized_expression] = STATE(113), + [sym_char_literal] = STATE(113), + [sym_concatenated_string] = STATE(113), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(219), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(221), + [sym_false] = ACTIONS(221), + [sym_null] = ACTIONS(221), + [sym_identifier] = ACTIONS(221), + [sym_comment] = ACTIONS(81), }, - [367] = { - [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(369), - [anon_sym_LPAREN2] = ACTIONS(1673), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1677), - [sym_false] = ACTIONS(1677), - [sym_null] = ACTIONS(1677), - [sym_identifier] = ACTIONS(1677), - [sym_comment] = ACTIONS(85), + [322] = { + [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(324), + [anon_sym_LPAREN2] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(1513), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1515), + [sym_false] = ACTIONS(1515), + [sym_null] = ACTIONS(1515), + [sym_identifier] = ACTIONS(1515), + [sym_comment] = ACTIONS(81), }, - [368] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(1681), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1685), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PERCENT_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_CARET_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [323] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(1519), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [369] = { - [sym_string_literal] = STATE(629), - [aux_sym_concatenated_string_repeat1] = STATE(629), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_RBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), + [324] = { + [sym_string_literal] = STATE(567), + [aux_sym_concatenated_string_repeat1] = STATE(567), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_RBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_comment] = ACTIONS(81), + }, + [325] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(283), + [anon_sym_SLASH_EQ] = ACTIONS(283), + [anon_sym_PERCENT_EQ] = ACTIONS(283), + [anon_sym_PLUS_EQ] = ACTIONS(283), + [anon_sym_DASH_EQ] = ACTIONS(283), + [anon_sym_LT_LT_EQ] = ACTIONS(283), + [anon_sym_GT_GT_EQ] = ACTIONS(283), + [anon_sym_AMP_EQ] = ACTIONS(283), + [anon_sym_CARET_EQ] = ACTIONS(283), + [anon_sym_PIPE_EQ] = ACTIONS(283), [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_comment] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [370] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_STAR_EQ] = ACTIONS(317), - [anon_sym_SLASH_EQ] = ACTIONS(317), - [anon_sym_PERCENT_EQ] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(317), - [anon_sym_DASH_EQ] = ACTIONS(317), - [anon_sym_LT_LT_EQ] = ACTIONS(317), - [anon_sym_GT_GT_EQ] = ACTIONS(317), - [anon_sym_AMP_EQ] = ACTIONS(317), - [anon_sym_CARET_EQ] = ACTIONS(317), - [anon_sym_PIPE_EQ] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(319), - [anon_sym_PIPE_PIPE] = ACTIONS(321), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [326] = { + [sym_type_qualifier] = STATE(76), + [sym__type_specifier] = STATE(71), + [sym_sized_type_specifier] = STATE(71), + [sym_enum_specifier] = STATE(71), + [sym_struct_specifier] = STATE(71), + [sym_union_specifier] = STATE(71), + [sym__expression] = STATE(72), + [sym_comma_expression] = STATE(73), + [sym_conditional_expression] = STATE(72), + [sym_assignment_expression] = STATE(72), + [sym_pointer_expression] = STATE(72), + [sym_logical_expression] = STATE(72), + [sym_bitwise_expression] = STATE(72), + [sym_equality_expression] = STATE(72), + [sym_relational_expression] = STATE(72), + [sym_shift_expression] = STATE(72), + [sym_math_expression] = STATE(72), + [sym_cast_expression] = STATE(72), + [sym_type_descriptor] = STATE(568), + [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(72), + [sym_call_expression] = STATE(72), + [sym_field_expression] = STATE(72), + [sym_compound_literal_expression] = STATE(72), + [sym_parenthesized_expression] = STATE(72), + [sym_char_literal] = STATE(72), + [sym_concatenated_string] = STATE(72), + [sym_string_literal] = STATE(75), + [sym_macro_type_specifier] = STATE(71), + [aux_sym_type_definition_repeat1] = STATE(76), + [aux_sym_sized_type_specifier_repeat1] = STATE(77), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_const] = ACTIONS(31), + [anon_sym_restrict] = ACTIONS(31), + [anon_sym_volatile] = ACTIONS(31), + [anon_sym__Atomic] = ACTIONS(31), + [anon_sym_unsigned] = ACTIONS(129), + [anon_sym_long] = ACTIONS(129), + [anon_sym_short] = ACTIONS(129), + [sym_primitive_type] = ACTIONS(131), + [anon_sym_enum] = ACTIONS(37), + [anon_sym_struct] = ACTIONS(39), + [anon_sym_union] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_identifier] = ACTIONS(147), + [sym_comment] = ACTIONS(81), }, - [371] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(1711), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [327] = { + [sym__expression] = STATE(78), + [sym_conditional_expression] = STATE(78), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(78), + [sym_call_expression] = STATE(78), + [sym_field_expression] = STATE(78), + [sym_compound_literal_expression] = STATE(78), + [sym_parenthesized_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_concatenated_string] = STATE(78), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(151), + [sym_false] = ACTIONS(151), + [sym_null] = ACTIONS(151), + [sym_identifier] = ACTIONS(151), + [sym_comment] = ACTIONS(81), }, - [372] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [328] = { + [sym__expression] = STATE(111), + [sym_conditional_expression] = STATE(111), + [sym_assignment_expression] = STATE(111), + [sym_pointer_expression] = STATE(111), + [sym_logical_expression] = STATE(111), + [sym_bitwise_expression] = STATE(111), + [sym_equality_expression] = STATE(111), + [sym_relational_expression] = STATE(111), + [sym_shift_expression] = STATE(111), + [sym_math_expression] = STATE(111), + [sym_cast_expression] = STATE(111), + [sym_sizeof_expression] = STATE(111), + [sym_subscript_expression] = STATE(111), + [sym_call_expression] = STATE(111), + [sym_field_expression] = STATE(111), + [sym_compound_literal_expression] = STATE(111), + [sym_parenthesized_expression] = STATE(111), + [sym_char_literal] = STATE(111), + [sym_concatenated_string] = STATE(111), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [sym_null] = ACTIONS(213), + [sym_identifier] = ACTIONS(213), + [sym_comment] = ACTIONS(81), }, - [373] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1717), - [anon_sym_STAR_EQ] = ACTIONS(1717), - [anon_sym_SLASH_EQ] = ACTIONS(1717), - [anon_sym_PERCENT_EQ] = ACTIONS(1717), - [anon_sym_PLUS_EQ] = ACTIONS(1717), - [anon_sym_DASH_EQ] = ACTIONS(1717), - [anon_sym_LT_LT_EQ] = ACTIONS(1717), - [anon_sym_GT_GT_EQ] = ACTIONS(1717), - [anon_sym_AMP_EQ] = ACTIONS(1717), - [anon_sym_CARET_EQ] = ACTIONS(1717), - [anon_sym_PIPE_EQ] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(319), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [329] = { + [sym__expression] = STATE(112), + [sym_conditional_expression] = STATE(112), + [sym_assignment_expression] = STATE(112), + [sym_pointer_expression] = STATE(112), + [sym_logical_expression] = STATE(112), + [sym_bitwise_expression] = STATE(112), + [sym_equality_expression] = STATE(112), + [sym_relational_expression] = STATE(112), + [sym_shift_expression] = STATE(112), + [sym_math_expression] = STATE(112), + [sym_cast_expression] = STATE(112), + [sym_sizeof_expression] = STATE(112), + [sym_subscript_expression] = STATE(112), + [sym_call_expression] = STATE(112), + [sym_field_expression] = STATE(112), + [sym_compound_literal_expression] = STATE(112), + [sym_parenthesized_expression] = STATE(112), + [sym_char_literal] = STATE(112), + [sym_concatenated_string] = STATE(112), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(215), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [sym_null] = ACTIONS(217), + [sym_identifier] = ACTIONS(217), + [sym_comment] = ACTIONS(81), }, - [374] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1717), - [anon_sym_STAR_EQ] = ACTIONS(1717), - [anon_sym_SLASH_EQ] = ACTIONS(1717), - [anon_sym_PERCENT_EQ] = ACTIONS(1717), - [anon_sym_PLUS_EQ] = ACTIONS(1717), - [anon_sym_DASH_EQ] = ACTIONS(1717), - [anon_sym_LT_LT_EQ] = ACTIONS(1717), - [anon_sym_GT_GT_EQ] = ACTIONS(1717), - [anon_sym_AMP_EQ] = ACTIONS(1717), - [anon_sym_CARET_EQ] = ACTIONS(1717), - [anon_sym_PIPE_EQ] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(319), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [330] = { + [sym__expression] = STATE(113), + [sym_conditional_expression] = STATE(113), + [sym_assignment_expression] = STATE(113), + [sym_pointer_expression] = STATE(113), + [sym_logical_expression] = STATE(113), + [sym_bitwise_expression] = STATE(113), + [sym_equality_expression] = STATE(113), + [sym_relational_expression] = STATE(113), + [sym_shift_expression] = STATE(113), + [sym_math_expression] = STATE(113), + [sym_cast_expression] = STATE(113), + [sym_sizeof_expression] = STATE(113), + [sym_subscript_expression] = STATE(113), + [sym_call_expression] = STATE(113), + [sym_field_expression] = STATE(113), + [sym_compound_literal_expression] = STATE(113), + [sym_parenthesized_expression] = STATE(113), + [sym_char_literal] = STATE(113), + [sym_concatenated_string] = STATE(113), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(219), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(221), + [sym_false] = ACTIONS(221), + [sym_null] = ACTIONS(221), + [sym_identifier] = ACTIONS(221), + [sym_comment] = ACTIONS(81), }, - [375] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(319), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [331] = { + [sym__expression] = STATE(570), + [sym_conditional_expression] = STATE(570), + [sym_assignment_expression] = STATE(570), + [sym_pointer_expression] = STATE(570), + [sym_logical_expression] = STATE(570), + [sym_bitwise_expression] = STATE(570), + [sym_equality_expression] = STATE(570), + [sym_relational_expression] = STATE(570), + [sym_shift_expression] = STATE(570), + [sym_math_expression] = STATE(570), + [sym_cast_expression] = STATE(570), + [sym_sizeof_expression] = STATE(570), + [sym_subscript_expression] = STATE(570), + [sym_call_expression] = STATE(570), + [sym_field_expression] = STATE(570), + [sym_compound_literal_expression] = STATE(570), + [sym_parenthesized_expression] = STATE(570), + [sym_char_literal] = STATE(570), + [sym_concatenated_string] = STATE(570), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1553), + [sym_false] = ACTIONS(1553), + [sym_null] = ACTIONS(1553), + [sym_identifier] = ACTIONS(1553), + [sym_comment] = ACTIONS(81), }, - [376] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(319), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [332] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_COLON] = ACTIONS(1559), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_LT_LT_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_AMP_EQ] = ACTIONS(1563), + [anon_sym_CARET_EQ] = ACTIONS(1563), + [anon_sym_PIPE_EQ] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [377] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1723), - [anon_sym_QMARK] = ACTIONS(1721), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_PIPE_PIPE] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1721), - [anon_sym_BANG_EQ] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [333] = { + [sym_string_literal] = STATE(584), + [aux_sym_concatenated_string_repeat1] = STATE(584), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(237), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_comment] = ACTIONS(81), }, - [378] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1727), - [anon_sym_QMARK] = ACTIONS(1725), - [anon_sym_STAR_EQ] = ACTIONS(1725), - [anon_sym_SLASH_EQ] = ACTIONS(1725), - [anon_sym_PERCENT_EQ] = ACTIONS(1725), - [anon_sym_PLUS_EQ] = ACTIONS(1725), - [anon_sym_DASH_EQ] = ACTIONS(1725), - [anon_sym_LT_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_GT_EQ] = ACTIONS(1725), - [anon_sym_AMP_EQ] = ACTIONS(1725), - [anon_sym_CARET_EQ] = ACTIONS(1725), - [anon_sym_PIPE_EQ] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_PIPE_PIPE] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [334] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [379] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1729), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_STAR_EQ] = ACTIONS(1729), - [anon_sym_SLASH_EQ] = ACTIONS(1729), - [anon_sym_PERCENT_EQ] = ACTIONS(1729), - [anon_sym_PLUS_EQ] = ACTIONS(1729), - [anon_sym_DASH_EQ] = ACTIONS(1729), - [anon_sym_LT_LT_EQ] = ACTIONS(1729), - [anon_sym_GT_GT_EQ] = ACTIONS(1729), - [anon_sym_AMP_EQ] = ACTIONS(1729), - [anon_sym_CARET_EQ] = ACTIONS(1729), - [anon_sym_PIPE_EQ] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_CARET] = ACTIONS(1731), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1731), - [anon_sym_LT_EQ] = ACTIONS(1729), - [anon_sym_GT_EQ] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1731), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [335] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(1589), + [anon_sym_STAR_EQ] = ACTIONS(1589), + [anon_sym_SLASH_EQ] = ACTIONS(1589), + [anon_sym_PERCENT_EQ] = ACTIONS(1589), + [anon_sym_PLUS_EQ] = ACTIONS(1589), + [anon_sym_DASH_EQ] = ACTIONS(1589), + [anon_sym_LT_LT_EQ] = ACTIONS(1589), + [anon_sym_GT_GT_EQ] = ACTIONS(1589), + [anon_sym_AMP_EQ] = ACTIONS(1589), + [anon_sym_CARET_EQ] = ACTIONS(1589), + [anon_sym_PIPE_EQ] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [380] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1669), - [anon_sym_STAR_EQ] = ACTIONS(1669), - [anon_sym_SLASH_EQ] = ACTIONS(1669), - [anon_sym_PERCENT_EQ] = ACTIONS(1669), - [anon_sym_PLUS_EQ] = ACTIONS(1669), - [anon_sym_DASH_EQ] = ACTIONS(1669), - [anon_sym_LT_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_GT_EQ] = ACTIONS(1669), - [anon_sym_AMP_EQ] = ACTIONS(1669), - [anon_sym_CARET_EQ] = ACTIONS(1669), - [anon_sym_PIPE_EQ] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_CARET] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [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(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [336] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(1589), + [anon_sym_STAR_EQ] = ACTIONS(1589), + [anon_sym_SLASH_EQ] = ACTIONS(1589), + [anon_sym_PERCENT_EQ] = ACTIONS(1589), + [anon_sym_PLUS_EQ] = ACTIONS(1589), + [anon_sym_DASH_EQ] = ACTIONS(1589), + [anon_sym_LT_LT_EQ] = ACTIONS(1589), + [anon_sym_GT_GT_EQ] = ACTIONS(1589), + [anon_sym_AMP_EQ] = ACTIONS(1589), + [anon_sym_CARET_EQ] = ACTIONS(1589), + [anon_sym_PIPE_EQ] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [381] = { - [anon_sym_COMMA] = ACTIONS(1733), - [anon_sym_RPAREN] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_LPAREN2] = ACTIONS(1733), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1733), - [anon_sym_RBRACK] = ACTIONS(1733), - [anon_sym_EQ] = ACTIONS(1735), - [anon_sym_COLON] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1733), - [anon_sym_STAR_EQ] = ACTIONS(1733), - [anon_sym_SLASH_EQ] = ACTIONS(1733), - [anon_sym_PERCENT_EQ] = ACTIONS(1733), - [anon_sym_PLUS_EQ] = ACTIONS(1733), - [anon_sym_DASH_EQ] = ACTIONS(1733), - [anon_sym_LT_LT_EQ] = ACTIONS(1733), - [anon_sym_GT_GT_EQ] = ACTIONS(1733), - [anon_sym_AMP_EQ] = ACTIONS(1733), - [anon_sym_CARET_EQ] = ACTIONS(1733), - [anon_sym_PIPE_EQ] = ACTIONS(1733), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE_PIPE] = ACTIONS(1733), - [anon_sym_AMP_AMP] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_CARET] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1733), - [anon_sym_BANG_EQ] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1735), - [anon_sym_LT_EQ] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1733), - [anon_sym_LT_LT] = ACTIONS(1735), - [anon_sym_GT_GT] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_SLASH] = ACTIONS(1735), - [anon_sym_PERCENT] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_DASH_GT] = ACTIONS(1733), - [sym_comment] = ACTIONS(85), + [337] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [382] = { - [sym_string_literal] = STATE(382), - [aux_sym_concatenated_string_repeat1] = STATE(382), - [anon_sym_COMMA] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1739), - [anon_sym_QMARK] = ACTIONS(1737), - [anon_sym_STAR_EQ] = ACTIONS(1737), - [anon_sym_SLASH_EQ] = ACTIONS(1737), - [anon_sym_PERCENT_EQ] = ACTIONS(1737), - [anon_sym_PLUS_EQ] = ACTIONS(1737), - [anon_sym_DASH_EQ] = ACTIONS(1737), - [anon_sym_LT_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_GT_EQ] = ACTIONS(1737), - [anon_sym_AMP_EQ] = ACTIONS(1737), - [anon_sym_CARET_EQ] = ACTIONS(1737), - [anon_sym_PIPE_EQ] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_CARET] = ACTIONS(1739), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_PERCENT] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DOT] = ACTIONS(1737), - [anon_sym_DASH_GT] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym_comment] = ACTIONS(85), + [338] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [383] = { - [sym_storage_class_specifier] = STATE(356), - [sym_type_qualifier] = STATE(356), - [aux_sym__declaration_specifiers_repeat1] = STATE(356), - [anon_sym_SEMI] = ACTIONS(1744), + [339] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1595), + [anon_sym_QMARK] = ACTIONS(1593), + [anon_sym_STAR_EQ] = ACTIONS(1593), + [anon_sym_SLASH_EQ] = ACTIONS(1593), + [anon_sym_PERCENT_EQ] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(1593), + [anon_sym_DASH_EQ] = ACTIONS(1593), + [anon_sym_LT_LT_EQ] = ACTIONS(1593), + [anon_sym_GT_GT_EQ] = ACTIONS(1593), + [anon_sym_AMP_EQ] = ACTIONS(1593), + [anon_sym_CARET_EQ] = ACTIONS(1593), + [anon_sym_PIPE_EQ] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_PIPE_PIPE] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1593), + [anon_sym_PIPE] = ACTIONS(1595), + [anon_sym_CARET] = ACTIONS(1595), + [anon_sym_EQ_EQ] = ACTIONS(1593), + [anon_sym_BANG_EQ] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [340] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1599), + [anon_sym_QMARK] = ACTIONS(1597), + [anon_sym_STAR_EQ] = ACTIONS(1597), + [anon_sym_SLASH_EQ] = ACTIONS(1597), + [anon_sym_PERCENT_EQ] = ACTIONS(1597), + [anon_sym_PLUS_EQ] = ACTIONS(1597), + [anon_sym_DASH_EQ] = ACTIONS(1597), + [anon_sym_LT_LT_EQ] = ACTIONS(1597), + [anon_sym_GT_GT_EQ] = ACTIONS(1597), + [anon_sym_AMP_EQ] = ACTIONS(1597), + [anon_sym_CARET_EQ] = ACTIONS(1597), + [anon_sym_PIPE_EQ] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_PIPE_PIPE] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [341] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1601), + [anon_sym_STAR_EQ] = ACTIONS(1601), + [anon_sym_SLASH_EQ] = ACTIONS(1601), + [anon_sym_PERCENT_EQ] = ACTIONS(1601), + [anon_sym_PLUS_EQ] = ACTIONS(1601), + [anon_sym_DASH_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_GT_EQ] = ACTIONS(1601), + [anon_sym_AMP_EQ] = ACTIONS(1601), + [anon_sym_CARET_EQ] = ACTIONS(1601), + [anon_sym_PIPE_EQ] = ACTIONS(1601), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_PIPE_PIPE] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1603), + [anon_sym_GT] = ACTIONS(1603), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_EQ] = ACTIONS(1601), + [anon_sym_LT_LT] = ACTIONS(1603), + [anon_sym_GT_GT] = ACTIONS(1603), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [342] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1509), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [343] = { + [anon_sym_COMMA] = ACTIONS(1605), + [anon_sym_RPAREN] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_RBRACK] = ACTIONS(1605), + [anon_sym_EQ] = ACTIONS(1607), + [anon_sym_COLON] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1605), + [anon_sym_STAR_EQ] = ACTIONS(1605), + [anon_sym_SLASH_EQ] = ACTIONS(1605), + [anon_sym_PERCENT_EQ] = ACTIONS(1605), + [anon_sym_PLUS_EQ] = ACTIONS(1605), + [anon_sym_DASH_EQ] = ACTIONS(1605), + [anon_sym_LT_LT_EQ] = ACTIONS(1605), + [anon_sym_GT_GT_EQ] = ACTIONS(1605), + [anon_sym_AMP_EQ] = ACTIONS(1605), + [anon_sym_CARET_EQ] = ACTIONS(1605), + [anon_sym_PIPE_EQ] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1607), + [anon_sym_PIPE_PIPE] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_CARET] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1605), + [anon_sym_BANG_EQ] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1605), + [anon_sym_LT_LT] = ACTIONS(1607), + [anon_sym_GT_GT] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_PERCENT] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(1605), + [anon_sym_DASH_GT] = ACTIONS(1605), + [sym_comment] = ACTIONS(81), + }, + [344] = { + [sym_string_literal] = STATE(344), + [aux_sym_concatenated_string_repeat1] = STATE(344), + [anon_sym_COMMA] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_QMARK] = ACTIONS(1609), + [anon_sym_STAR_EQ] = ACTIONS(1609), + [anon_sym_SLASH_EQ] = ACTIONS(1609), + [anon_sym_PERCENT_EQ] = ACTIONS(1609), + [anon_sym_PLUS_EQ] = ACTIONS(1609), + [anon_sym_DASH_EQ] = ACTIONS(1609), + [anon_sym_LT_LT_EQ] = ACTIONS(1609), + [anon_sym_GT_GT_EQ] = ACTIONS(1609), + [anon_sym_AMP_EQ] = ACTIONS(1609), + [anon_sym_CARET_EQ] = ACTIONS(1609), + [anon_sym_PIPE_EQ] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PIPE_PIPE] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1611), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1611), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT_EQ] = ACTIONS(1609), + [anon_sym_LT_LT] = ACTIONS(1611), + [anon_sym_GT_GT] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_SLASH] = ACTIONS(1611), + [anon_sym_PERCENT] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_DOT] = ACTIONS(1609), + [anon_sym_DASH_GT] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1613), + [sym_comment] = ACTIONS(81), + }, + [345] = { + [sym_storage_class_specifier] = STATE(311), + [sym_type_qualifier] = STATE(311), + [aux_sym__declaration_specifiers_repeat1] = STATE(311), + [anon_sym_SEMI] = ACTIONS(1616), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -19184,344 +17580,335 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1746), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(1618), + [sym_comment] = ACTIONS(81), }, - [384] = { - [ts_builtin_sym_end] = ACTIONS(1610), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1612), - [sym_preproc_directive] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_typedef] = ACTIONS(1612), - [anon_sym_extern] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_LPAREN2] = ACTIONS(1610), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_auto] = ACTIONS(1612), - [anon_sym_register] = ACTIONS(1612), - [anon_sym_inline] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_restrict] = ACTIONS(1612), - [anon_sym_volatile] = ACTIONS(1612), - [anon_sym__Atomic] = ACTIONS(1612), - [anon_sym_unsigned] = ACTIONS(1612), - [anon_sym_long] = ACTIONS(1612), - [anon_sym_short] = ACTIONS(1612), - [sym_primitive_type] = ACTIONS(1612), - [anon_sym_enum] = ACTIONS(1612), - [anon_sym_struct] = ACTIONS(1612), - [anon_sym_union] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_switch] = ACTIONS(1612), - [anon_sym_case] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_goto] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1610), - [anon_sym_sizeof] = ACTIONS(1612), - [sym_number_literal] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_identifier] = ACTIONS(1612), - [sym_comment] = ACTIONS(85), + [346] = { + [ts_builtin_sym_end] = ACTIONS(1448), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [sym_null] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1450), + [sym_comment] = ACTIONS(81), }, - [385] = { - [aux_sym_preproc_params_repeat1] = STATE(633), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_RPAREN] = ACTIONS(1750), - [sym_comment] = ACTIONS(85), + [347] = { + [aux_sym_preproc_params_repeat1] = STATE(587), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1622), + [sym_comment] = ACTIONS(81), }, - [386] = { - [anon_sym_LF] = ACTIONS(1752), - [sym_preproc_arg] = ACTIONS(1752), - [sym_comment] = ACTIONS(95), + [348] = { + [anon_sym_LF] = ACTIONS(1624), + [sym_preproc_arg] = ACTIONS(1624), + [sym_comment] = ACTIONS(91), }, - [387] = { - [ts_builtin_sym_end] = ACTIONS(1754), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1756), - [sym_preproc_directive] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_typedef] = ACTIONS(1756), - [anon_sym_extern] = ACTIONS(1756), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LPAREN2] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1756), - [anon_sym_auto] = ACTIONS(1756), - [anon_sym_register] = ACTIONS(1756), - [anon_sym_inline] = ACTIONS(1756), - [anon_sym_const] = ACTIONS(1756), - [anon_sym_restrict] = ACTIONS(1756), - [anon_sym_volatile] = ACTIONS(1756), - [anon_sym__Atomic] = ACTIONS(1756), - [anon_sym_unsigned] = ACTIONS(1756), - [anon_sym_long] = ACTIONS(1756), - [anon_sym_short] = ACTIONS(1756), - [sym_primitive_type] = ACTIONS(1756), - [anon_sym_enum] = ACTIONS(1756), - [anon_sym_struct] = ACTIONS(1756), - [anon_sym_union] = ACTIONS(1756), - [anon_sym_if] = ACTIONS(1756), - [anon_sym_switch] = ACTIONS(1756), - [anon_sym_case] = ACTIONS(1756), - [anon_sym_default] = ACTIONS(1756), - [anon_sym_while] = ACTIONS(1756), - [anon_sym_do] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1756), - [anon_sym_return] = ACTIONS(1756), - [anon_sym_break] = ACTIONS(1756), - [anon_sym_continue] = ACTIONS(1756), - [anon_sym_goto] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [sym_true] = ACTIONS(1756), - [sym_false] = ACTIONS(1756), - [sym_null] = ACTIONS(1756), - [sym_identifier] = ACTIONS(1756), - [sym_comment] = ACTIONS(85), + [349] = { + [ts_builtin_sym_end] = ACTIONS(1626), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1628), + [sym_preproc_directive] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1626), + [anon_sym_typedef] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_RBRACE] = ACTIONS(1626), + [anon_sym_LPAREN2] = ACTIONS(1626), + [anon_sym_STAR] = ACTIONS(1626), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_auto] = ACTIONS(1628), + [anon_sym_register] = ACTIONS(1628), + [anon_sym_inline] = ACTIONS(1628), + [anon_sym_const] = ACTIONS(1628), + [anon_sym_restrict] = ACTIONS(1628), + [anon_sym_volatile] = ACTIONS(1628), + [anon_sym__Atomic] = ACTIONS(1628), + [anon_sym_unsigned] = ACTIONS(1628), + [anon_sym_long] = ACTIONS(1628), + [anon_sym_short] = ACTIONS(1628), + [sym_primitive_type] = ACTIONS(1628), + [anon_sym_enum] = ACTIONS(1628), + [anon_sym_struct] = ACTIONS(1628), + [anon_sym_union] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1628), + [anon_sym_switch] = ACTIONS(1628), + [anon_sym_while] = ACTIONS(1628), + [anon_sym_do] = ACTIONS(1628), + [anon_sym_for] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1628), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_goto] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1626), + [anon_sym_PLUS_PLUS] = ACTIONS(1626), + [anon_sym_sizeof] = ACTIONS(1628), + [sym_number_literal] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1626), + [anon_sym_DQUOTE] = ACTIONS(1626), + [sym_true] = ACTIONS(1628), + [sym_false] = ACTIONS(1628), + [sym_null] = ACTIONS(1628), + [sym_identifier] = ACTIONS(1628), + [sym_comment] = ACTIONS(81), }, - [388] = { - [ts_builtin_sym_end] = ACTIONS(1758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1760), - [sym_preproc_directive] = ACTIONS(1760), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_typedef] = ACTIONS(1760), - [anon_sym_extern] = ACTIONS(1760), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1758), - [anon_sym_LPAREN2] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_static] = ACTIONS(1760), - [anon_sym_auto] = ACTIONS(1760), - [anon_sym_register] = ACTIONS(1760), - [anon_sym_inline] = ACTIONS(1760), - [anon_sym_const] = ACTIONS(1760), - [anon_sym_restrict] = ACTIONS(1760), - [anon_sym_volatile] = ACTIONS(1760), - [anon_sym__Atomic] = ACTIONS(1760), - [anon_sym_unsigned] = ACTIONS(1760), - [anon_sym_long] = ACTIONS(1760), - [anon_sym_short] = ACTIONS(1760), - [sym_primitive_type] = ACTIONS(1760), - [anon_sym_enum] = ACTIONS(1760), - [anon_sym_struct] = ACTIONS(1760), - [anon_sym_union] = ACTIONS(1760), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_switch] = ACTIONS(1760), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1760), - [anon_sym_while] = ACTIONS(1760), - [anon_sym_do] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1760), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_goto] = ACTIONS(1760), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_TILDE] = ACTIONS(1758), - [anon_sym_PLUS] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_DASH_DASH] = ACTIONS(1758), - [anon_sym_PLUS_PLUS] = ACTIONS(1758), - [anon_sym_sizeof] = ACTIONS(1760), - [sym_number_literal] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1758), - [anon_sym_DQUOTE] = ACTIONS(1758), - [sym_true] = ACTIONS(1760), - [sym_false] = ACTIONS(1760), - [sym_null] = ACTIONS(1760), - [sym_identifier] = ACTIONS(1760), - [sym_comment] = ACTIONS(85), + [350] = { + [ts_builtin_sym_end] = ACTIONS(1630), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1632), + [sym_preproc_directive] = ACTIONS(1632), + [anon_sym_SEMI] = ACTIONS(1630), + [anon_sym_typedef] = ACTIONS(1632), + [anon_sym_extern] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1630), + [anon_sym_RBRACE] = ACTIONS(1630), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(1630), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_auto] = ACTIONS(1632), + [anon_sym_register] = ACTIONS(1632), + [anon_sym_inline] = ACTIONS(1632), + [anon_sym_const] = ACTIONS(1632), + [anon_sym_restrict] = ACTIONS(1632), + [anon_sym_volatile] = ACTIONS(1632), + [anon_sym__Atomic] = ACTIONS(1632), + [anon_sym_unsigned] = ACTIONS(1632), + [anon_sym_long] = ACTIONS(1632), + [anon_sym_short] = ACTIONS(1632), + [sym_primitive_type] = ACTIONS(1632), + [anon_sym_enum] = ACTIONS(1632), + [anon_sym_struct] = ACTIONS(1632), + [anon_sym_union] = ACTIONS(1632), + [anon_sym_if] = ACTIONS(1632), + [anon_sym_switch] = ACTIONS(1632), + [anon_sym_while] = ACTIONS(1632), + [anon_sym_do] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1632), + [anon_sym_return] = ACTIONS(1632), + [anon_sym_break] = ACTIONS(1632), + [anon_sym_continue] = ACTIONS(1632), + [anon_sym_goto] = ACTIONS(1632), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1632), + [anon_sym_DASH_DASH] = ACTIONS(1630), + [anon_sym_PLUS_PLUS] = ACTIONS(1630), + [anon_sym_sizeof] = ACTIONS(1632), + [sym_number_literal] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_true] = ACTIONS(1632), + [sym_false] = ACTIONS(1632), + [sym_null] = ACTIONS(1632), + [sym_identifier] = ACTIONS(1632), + [sym_comment] = ACTIONS(81), }, - [389] = { - [anon_sym_LF] = ACTIONS(1762), - [sym_comment] = ACTIONS(95), + [351] = { + [anon_sym_LF] = ACTIONS(1634), + [sym_comment] = ACTIONS(91), }, - [390] = { - [aux_sym_string_literal_repeat1] = STATE(636), - [anon_sym_DQUOTE] = ACTIONS(1764), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1766), - [sym_escape_sequence] = ACTIONS(1766), - [sym_comment] = ACTIONS(95), + [352] = { + [aux_sym_string_literal_repeat1] = STATE(590), + [anon_sym_DQUOTE] = ACTIONS(1636), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(1638), + [sym_escape_sequence] = ACTIONS(1638), + [sym_comment] = ACTIONS(91), }, - [391] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(364), - [sym_preproc_directive] = ACTIONS(364), - [anon_sym_SEMI] = ACTIONS(362), - [anon_sym_typedef] = ACTIONS(364), - [anon_sym_extern] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_LPAREN2] = ACTIONS(362), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_static] = ACTIONS(364), - [anon_sym_auto] = ACTIONS(364), - [anon_sym_register] = ACTIONS(364), - [anon_sym_inline] = ACTIONS(364), - [anon_sym_const] = ACTIONS(364), - [anon_sym_restrict] = ACTIONS(364), - [anon_sym_volatile] = ACTIONS(364), - [anon_sym__Atomic] = ACTIONS(364), - [anon_sym_unsigned] = ACTIONS(364), - [anon_sym_long] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [sym_primitive_type] = ACTIONS(364), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_struct] = ACTIONS(364), - [anon_sym_union] = ACTIONS(364), - [anon_sym_if] = ACTIONS(364), - [anon_sym_switch] = ACTIONS(364), - [anon_sym_case] = ACTIONS(364), - [anon_sym_default] = ACTIONS(364), - [anon_sym_while] = ACTIONS(364), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(364), - [anon_sym_return] = ACTIONS(364), - [anon_sym_break] = ACTIONS(364), - [anon_sym_continue] = ACTIONS(364), - [anon_sym_goto] = ACTIONS(364), - [anon_sym_AMP] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(362), - [anon_sym_TILDE] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(364), - [anon_sym_DASH] = ACTIONS(364), - [anon_sym_DASH_DASH] = ACTIONS(362), - [anon_sym_PLUS_PLUS] = ACTIONS(362), - [anon_sym_sizeof] = ACTIONS(364), - [sym_number_literal] = ACTIONS(362), - [anon_sym_SQUOTE] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [sym_true] = ACTIONS(364), - [sym_false] = ACTIONS(364), - [sym_null] = ACTIONS(364), - [sym_identifier] = ACTIONS(364), - [sym_comment] = ACTIONS(85), + [353] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(330), + [sym_preproc_directive] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_typedef] = ACTIONS(330), + [anon_sym_extern] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(328), + [anon_sym_LPAREN2] = ACTIONS(328), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_static] = ACTIONS(330), + [anon_sym_auto] = ACTIONS(330), + [anon_sym_register] = ACTIONS(330), + [anon_sym_inline] = ACTIONS(330), + [anon_sym_const] = ACTIONS(330), + [anon_sym_restrict] = ACTIONS(330), + [anon_sym_volatile] = ACTIONS(330), + [anon_sym__Atomic] = ACTIONS(330), + [anon_sym_unsigned] = ACTIONS(330), + [anon_sym_long] = ACTIONS(330), + [anon_sym_short] = ACTIONS(330), + [sym_primitive_type] = ACTIONS(330), + [anon_sym_enum] = ACTIONS(330), + [anon_sym_struct] = ACTIONS(330), + [anon_sym_union] = ACTIONS(330), + [anon_sym_if] = ACTIONS(330), + [anon_sym_switch] = ACTIONS(330), + [anon_sym_while] = ACTIONS(330), + [anon_sym_do] = ACTIONS(330), + [anon_sym_for] = ACTIONS(330), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(330), + [anon_sym_continue] = ACTIONS(330), + [anon_sym_goto] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(328), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_sizeof] = ACTIONS(330), + [sym_number_literal] = ACTIONS(328), + [anon_sym_SQUOTE] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(328), + [sym_true] = ACTIONS(330), + [sym_false] = ACTIONS(330), + [sym_null] = ACTIONS(330), + [sym_identifier] = ACTIONS(330), + [sym_comment] = ACTIONS(81), }, - [392] = { - [sym_preproc_params] = STATE(639), - [anon_sym_LF] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(368), - [sym_preproc_arg] = ACTIONS(1770), - [sym_comment] = ACTIONS(95), + [354] = { + [sym_preproc_params] = STATE(593), + [anon_sym_LF] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(334), + [sym_preproc_arg] = ACTIONS(1642), + [sym_comment] = ACTIONS(91), }, - [393] = { - [sym_preproc_include] = STATE(642), - [sym_preproc_def] = STATE(642), - [sym_preproc_function_def] = STATE(642), - [sym_preproc_call] = STATE(642), - [sym_preproc_if] = STATE(642), - [sym_preproc_ifdef] = STATE(642), - [sym_preproc_else] = STATE(641), - [sym_preproc_elif] = STATE(641), - [sym_function_definition] = STATE(642), - [sym_declaration] = STATE(642), - [sym_type_definition] = STATE(642), - [sym__declaration_specifiers] = STATE(200), - [sym_linkage_specification] = STATE(642), - [sym_compound_statement] = STATE(642), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(642), - [sym_expression_statement] = STATE(642), - [sym_if_statement] = STATE(642), - [sym_switch_statement] = STATE(642), - [sym_case_statement] = STATE(642), - [sym_while_statement] = STATE(642), - [sym_do_statement] = STATE(642), - [sym_for_statement] = STATE(642), - [sym_return_statement] = STATE(642), - [sym_break_statement] = STATE(642), - [sym_continue_statement] = STATE(642), - [sym_goto_statement] = STATE(642), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(642), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(642), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1772), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(384), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [355] = { + [sym_preproc_include] = STATE(596), + [sym_preproc_def] = STATE(596), + [sym_preproc_function_def] = STATE(596), + [sym_preproc_call] = STATE(596), + [sym_preproc_if] = STATE(596), + [sym_preproc_ifdef] = STATE(596), + [sym_preproc_else] = STATE(595), + [sym_preproc_elif] = STATE(595), + [sym_function_definition] = STATE(596), + [sym_declaration] = STATE(596), + [sym_type_definition] = STATE(596), + [sym__declaration_specifiers] = STATE(182), + [sym_linkage_specification] = STATE(596), + [sym_compound_statement] = STATE(596), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(596), + [sym_expression_statement] = STATE(596), + [sym_if_statement] = STATE(596), + [sym_switch_statement] = STATE(596), + [sym_while_statement] = STATE(596), + [sym_do_statement] = STATE(596), + [sym_for_statement] = STATE(596), + [sym_return_statement] = STATE(596), + [sym_break_statement] = STATE(596), + [sym_continue_statement] = STATE(596), + [sym_goto_statement] = STATE(596), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(596), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(596), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(348), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(350), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -19539,107 +17926,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [394] = { - [sym_preproc_include] = STATE(645), - [sym_preproc_def] = STATE(645), - [sym_preproc_function_def] = STATE(645), - [sym_preproc_call] = STATE(645), - [sym_preproc_if] = STATE(645), - [sym_preproc_ifdef] = STATE(645), - [sym_preproc_else] = STATE(644), - [sym_preproc_elif] = STATE(644), - [sym_function_definition] = STATE(645), - [sym_declaration] = STATE(645), - [sym_type_definition] = STATE(645), - [sym__declaration_specifiers] = STATE(200), - [sym_linkage_specification] = STATE(645), - [sym_compound_statement] = STATE(645), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(645), - [sym_expression_statement] = STATE(645), - [sym_if_statement] = STATE(645), - [sym_switch_statement] = STATE(645), - [sym_case_statement] = STATE(645), - [sym_while_statement] = STATE(645), - [sym_do_statement] = STATE(645), - [sym_for_statement] = STATE(645), - [sym_return_statement] = STATE(645), - [sym_break_statement] = STATE(645), - [sym_continue_statement] = STATE(645), - [sym_goto_statement] = STATE(645), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(645), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(645), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1774), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(384), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [356] = { + [sym_preproc_include] = STATE(599), + [sym_preproc_def] = STATE(599), + [sym_preproc_function_def] = STATE(599), + [sym_preproc_call] = STATE(599), + [sym_preproc_if] = STATE(599), + [sym_preproc_ifdef] = STATE(599), + [sym_preproc_else] = STATE(598), + [sym_preproc_elif] = STATE(598), + [sym_function_definition] = STATE(599), + [sym_declaration] = STATE(599), + [sym_type_definition] = STATE(599), + [sym__declaration_specifiers] = STATE(182), + [sym_linkage_specification] = STATE(599), + [sym_compound_statement] = STATE(599), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(599), + [sym_expression_statement] = STATE(599), + [sym_if_statement] = STATE(599), + [sym_switch_statement] = STATE(599), + [sym_while_statement] = STATE(599), + [sym_do_statement] = STATE(599), + [sym_for_statement] = STATE(599), + [sym_return_statement] = STATE(599), + [sym_break_statement] = STATE(599), + [sym_continue_statement] = STATE(599), + [sym_goto_statement] = STATE(599), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(599), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(599), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1646), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(348), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(350), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -19657,228 +18041,223 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [395] = { - [sym_string_literal] = STATE(647), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_system_lib_string] = ACTIONS(1778), - [sym_comment] = ACTIONS(85), + [357] = { + [sym_string_literal] = STATE(601), + [anon_sym_DQUOTE] = ACTIONS(1648), + [sym_system_lib_string] = ACTIONS(1650), + [sym_comment] = ACTIONS(81), }, - [396] = { - [sym_identifier] = ACTIONS(1780), - [sym_comment] = ACTIONS(85), + [358] = { + [sym_identifier] = ACTIONS(1652), + [sym_comment] = ACTIONS(81), }, - [397] = { - [sym_preproc_arg] = ACTIONS(1782), - [sym_comment] = ACTIONS(95), + [359] = { + [sym_preproc_arg] = ACTIONS(1654), + [sym_comment] = ACTIONS(91), }, - [398] = { - [sym_identifier] = ACTIONS(1784), - [sym_comment] = ACTIONS(85), + [360] = { + [sym_identifier] = ACTIONS(1656), + [sym_comment] = ACTIONS(81), }, - [399] = { - [anon_sym_LF] = ACTIONS(1786), - [sym_preproc_arg] = ACTIONS(1788), - [sym_comment] = ACTIONS(95), + [361] = { + [anon_sym_LF] = ACTIONS(1658), + [sym_preproc_arg] = ACTIONS(1660), + [sym_comment] = ACTIONS(91), }, - [400] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(105), - [sym_preproc_directive] = ACTIONS(105), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_typedef] = ACTIONS(105), - [anon_sym_extern] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_LPAREN2] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_static] = ACTIONS(105), - [anon_sym_auto] = ACTIONS(105), - [anon_sym_register] = ACTIONS(105), - [anon_sym_inline] = ACTIONS(105), - [anon_sym_const] = ACTIONS(105), - [anon_sym_restrict] = ACTIONS(105), - [anon_sym_volatile] = ACTIONS(105), - [anon_sym__Atomic] = ACTIONS(105), - [anon_sym_unsigned] = ACTIONS(105), - [anon_sym_long] = ACTIONS(105), - [anon_sym_short] = ACTIONS(105), - [sym_primitive_type] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(105), - [anon_sym_struct] = ACTIONS(105), - [anon_sym_union] = ACTIONS(105), - [anon_sym_if] = ACTIONS(105), - [anon_sym_else] = ACTIONS(105), - [anon_sym_switch] = ACTIONS(105), - [anon_sym_case] = ACTIONS(105), - [anon_sym_default] = ACTIONS(105), - [anon_sym_while] = ACTIONS(105), - [anon_sym_do] = ACTIONS(105), - [anon_sym_for] = ACTIONS(105), - [anon_sym_return] = ACTIONS(105), - [anon_sym_break] = ACTIONS(105), - [anon_sym_continue] = ACTIONS(105), - [anon_sym_goto] = ACTIONS(105), - [anon_sym_AMP] = ACTIONS(103), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_TILDE] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(105), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_sizeof] = ACTIONS(105), - [sym_number_literal] = ACTIONS(103), - [anon_sym_SQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_identifier] = ACTIONS(105), - [sym_comment] = ACTIONS(85), + [362] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(101), + [sym_preproc_directive] = ACTIONS(101), + [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_typedef] = ACTIONS(101), + [anon_sym_extern] = ACTIONS(101), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_LPAREN2] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(99), + [anon_sym_static] = ACTIONS(101), + [anon_sym_auto] = ACTIONS(101), + [anon_sym_register] = ACTIONS(101), + [anon_sym_inline] = ACTIONS(101), + [anon_sym_const] = ACTIONS(101), + [anon_sym_restrict] = ACTIONS(101), + [anon_sym_volatile] = ACTIONS(101), + [anon_sym__Atomic] = ACTIONS(101), + [anon_sym_unsigned] = ACTIONS(101), + [anon_sym_long] = ACTIONS(101), + [anon_sym_short] = ACTIONS(101), + [sym_primitive_type] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(101), + [anon_sym_struct] = ACTIONS(101), + [anon_sym_union] = ACTIONS(101), + [anon_sym_if] = ACTIONS(101), + [anon_sym_else] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(101), + [anon_sym_while] = ACTIONS(101), + [anon_sym_do] = ACTIONS(101), + [anon_sym_for] = ACTIONS(101), + [anon_sym_return] = ACTIONS(101), + [anon_sym_break] = ACTIONS(101), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(101), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_TILDE] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_DASH_DASH] = ACTIONS(99), + [anon_sym_PLUS_PLUS] = ACTIONS(99), + [anon_sym_sizeof] = ACTIONS(101), + [sym_number_literal] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_true] = ACTIONS(101), + [sym_false] = ACTIONS(101), + [sym_null] = ACTIONS(101), + [sym_identifier] = ACTIONS(101), + [sym_comment] = ACTIONS(81), }, - [401] = { - [sym_type_qualifier] = STATE(654), - [sym__type_specifier] = STATE(653), - [sym_sized_type_specifier] = STATE(653), - [sym_enum_specifier] = STATE(653), - [sym_struct_specifier] = STATE(653), - [sym_union_specifier] = STATE(653), - [sym_macro_type_specifier] = STATE(653), - [aux_sym_type_definition_repeat1] = STATE(654), - [aux_sym_sized_type_specifier_repeat1] = STATE(55), + [363] = { + [sym_type_qualifier] = STATE(608), + [sym__type_specifier] = STATE(607), + [sym_sized_type_specifier] = STATE(607), + [sym_enum_specifier] = STATE(607), + [sym_struct_specifier] = STATE(607), + [sym_union_specifier] = STATE(607), + [sym_macro_type_specifier] = STATE(607), + [aux_sym_type_definition_repeat1] = STATE(608), + [aux_sym_sized_type_specifier_repeat1] = STATE(53), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(107), - [anon_sym_long] = ACTIONS(107), - [anon_sym_short] = ACTIONS(107), - [sym_primitive_type] = ACTIONS(1790), + [anon_sym_unsigned] = ACTIONS(103), + [anon_sym_long] = ACTIONS(103), + [anon_sym_short] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(1662), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [402] = { - [sym_string_literal] = STATE(655), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_static] = ACTIONS(113), - [anon_sym_auto] = ACTIONS(113), - [anon_sym_register] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_const] = ACTIONS(113), - [anon_sym_restrict] = ACTIONS(113), - [anon_sym_volatile] = ACTIONS(113), - [anon_sym__Atomic] = ACTIONS(113), - [anon_sym_unsigned] = ACTIONS(113), - [anon_sym_long] = ACTIONS(113), - [anon_sym_short] = ACTIONS(113), - [sym_primitive_type] = ACTIONS(113), - [anon_sym_enum] = ACTIONS(113), - [anon_sym_struct] = ACTIONS(113), - [anon_sym_union] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_identifier] = ACTIONS(113), - [sym_comment] = ACTIONS(85), + [364] = { + [sym_string_literal] = STATE(609), + [anon_sym_extern] = ACTIONS(109), + [anon_sym_static] = ACTIONS(109), + [anon_sym_auto] = ACTIONS(109), + [anon_sym_register] = ACTIONS(109), + [anon_sym_inline] = ACTIONS(109), + [anon_sym_const] = ACTIONS(109), + [anon_sym_restrict] = ACTIONS(109), + [anon_sym_volatile] = ACTIONS(109), + [anon_sym__Atomic] = ACTIONS(109), + [anon_sym_unsigned] = ACTIONS(109), + [anon_sym_long] = ACTIONS(109), + [anon_sym_short] = ACTIONS(109), + [sym_primitive_type] = ACTIONS(109), + [anon_sym_enum] = ACTIONS(109), + [anon_sym_struct] = ACTIONS(109), + [anon_sym_union] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_identifier] = ACTIONS(109), + [sym_comment] = ACTIONS(81), }, - [403] = { - [sym_preproc_include] = STATE(657), - [sym_preproc_def] = STATE(657), - [sym_preproc_function_def] = STATE(657), - [sym_preproc_call] = STATE(657), - [sym_preproc_if_in_compound_statement] = STATE(657), - [sym_preproc_ifdef_in_compound_statement] = STATE(657), - [sym_declaration] = STATE(657), - [sym_type_definition] = STATE(657), - [sym__declaration_specifiers] = STATE(67), - [sym_compound_statement] = STATE(657), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(657), - [sym_expression_statement] = STATE(657), - [sym_if_statement] = STATE(657), - [sym_switch_statement] = STATE(657), - [sym_case_statement] = STATE(657), - [sym_while_statement] = STATE(657), - [sym_do_statement] = STATE(657), - [sym_for_statement] = STATE(657), - [sym_return_statement] = STATE(657), - [sym_break_statement] = STATE(657), - [sym_continue_statement] = STATE(657), - [sym_goto_statement] = STATE(657), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(657), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(657), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), + [365] = { + [sym_preproc_include] = STATE(611), + [sym_preproc_def] = STATE(611), + [sym_preproc_function_def] = STATE(611), + [sym_preproc_call] = STATE(611), + [sym_preproc_if_in_compound_statement] = STATE(611), + [sym_preproc_ifdef_in_compound_statement] = STATE(611), + [sym_declaration] = STATE(611), + [sym_type_definition] = STATE(611), + [sym__declaration_specifiers] = STATE(62), + [sym_compound_statement] = STATE(611), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(611), + [sym_expression_statement] = STATE(611), + [sym_if_statement] = STATE(611), + [sym_switch_statement] = STATE(611), + [sym_while_statement] = STATE(611), + [sym_do_statement] = STATE(611), + [sym_for_statement] = STATE(611), + [sym_return_statement] = STATE(611), + [sym_break_statement] = STATE(611), + [sym_continue_statement] = STATE(611), + [sym_goto_statement] = STATE(611), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(611), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(611), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(117), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(117), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(111), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(113), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(113), [sym_preproc_directive] = ACTIONS(15), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1792), + [anon_sym_RBRACE] = ACTIONS(1664), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -19896,396 +18275,346 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(133), - [sym_comment] = ACTIONS(85), - }, - [404] = { - [sym_parenthesized_expression] = STATE(658), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), - }, - [405] = { - [sym_parenthesized_expression] = STATE(659), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(123), + [sym_comment] = ACTIONS(81), }, - [406] = { - [sym__expression] = STATE(660), - [sym_conditional_expression] = STATE(660), - [sym_assignment_expression] = STATE(660), - [sym_pointer_expression] = STATE(660), - [sym_logical_expression] = STATE(660), - [sym_bitwise_expression] = STATE(660), - [sym_equality_expression] = STATE(660), - [sym_relational_expression] = STATE(660), - [sym_shift_expression] = STATE(660), - [sym_math_expression] = STATE(660), - [sym_cast_expression] = STATE(660), - [sym_sizeof_expression] = STATE(660), - [sym_subscript_expression] = STATE(660), - [sym_call_expression] = STATE(660), - [sym_field_expression] = STATE(660), - [sym_compound_literal_expression] = STATE(660), - [sym_parenthesized_expression] = STATE(660), - [sym_char_literal] = STATE(660), - [sym_concatenated_string] = STATE(660), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1794), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1796), - [sym_false] = ACTIONS(1796), - [sym_null] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1796), - [sym_comment] = ACTIONS(85), + [366] = { + [sym_parenthesized_expression] = STATE(612), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [407] = { - [anon_sym_COLON] = ACTIONS(1798), - [sym_comment] = ACTIONS(85), + [367] = { + [sym_parenthesized_expression] = STATE(613), + [anon_sym_LPAREN2] = ACTIONS(171), + [sym_comment] = ACTIONS(81), }, - [408] = { - [sym_parenthesized_expression] = STATE(662), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [368] = { + [sym_parenthesized_expression] = STATE(614), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [409] = { - [sym_compound_statement] = STATE(663), - [sym_labeled_statement] = STATE(663), - [sym_expression_statement] = STATE(663), - [sym_if_statement] = STATE(663), - [sym_switch_statement] = STATE(663), - [sym_case_statement] = STATE(663), - [sym_while_statement] = STATE(663), - [sym_do_statement] = STATE(663), - [sym_for_statement] = STATE(663), - [sym_return_statement] = STATE(663), - [sym_break_statement] = STATE(663), - [sym_continue_statement] = STATE(663), - [sym_goto_statement] = STATE(663), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [369] = { + [sym_compound_statement] = STATE(615), + [sym_labeled_statement] = STATE(615), + [sym_expression_statement] = STATE(615), + [sym_if_statement] = STATE(615), + [sym_switch_statement] = STATE(615), + [sym_while_statement] = STATE(615), + [sym_do_statement] = STATE(615), + [sym_for_statement] = STATE(615), + [sym_return_statement] = STATE(615), + [sym_break_statement] = STATE(615), + [sym_continue_statement] = STATE(615), + [sym_goto_statement] = STATE(615), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(201), - [anon_sym_switch] = ACTIONS(203), - [anon_sym_case] = ACTIONS(205), - [anon_sym_default] = ACTIONS(207), - [anon_sym_while] = ACTIONS(209), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(213), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(173), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(215), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(181), + [sym_comment] = ACTIONS(81), }, - [410] = { - [anon_sym_LPAREN2] = ACTIONS(1800), - [sym_comment] = ACTIONS(85), + [370] = { + [anon_sym_LPAREN2] = ACTIONS(1666), + [sym_comment] = ACTIONS(81), }, - [411] = { - [sym__expression] = STATE(666), - [sym_conditional_expression] = STATE(666), - [sym_assignment_expression] = STATE(666), - [sym_pointer_expression] = STATE(666), - [sym_logical_expression] = STATE(666), - [sym_bitwise_expression] = STATE(666), - [sym_equality_expression] = STATE(666), - [sym_relational_expression] = STATE(666), - [sym_shift_expression] = STATE(666), - [sym_math_expression] = STATE(666), - [sym_cast_expression] = STATE(666), - [sym_sizeof_expression] = STATE(666), - [sym_subscript_expression] = STATE(666), - [sym_call_expression] = STATE(666), - [sym_field_expression] = STATE(666), - [sym_compound_literal_expression] = STATE(666), - [sym_parenthesized_expression] = STATE(666), - [sym_char_literal] = STATE(666), - [sym_concatenated_string] = STATE(666), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1806), - [sym_false] = ACTIONS(1806), - [sym_null] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1806), - [sym_comment] = ACTIONS(85), + [371] = { + [sym__expression] = STATE(618), + [sym_conditional_expression] = STATE(618), + [sym_assignment_expression] = STATE(618), + [sym_pointer_expression] = STATE(618), + [sym_logical_expression] = STATE(618), + [sym_bitwise_expression] = STATE(618), + [sym_equality_expression] = STATE(618), + [sym_relational_expression] = STATE(618), + [sym_shift_expression] = STATE(618), + [sym_math_expression] = STATE(618), + [sym_cast_expression] = STATE(618), + [sym_sizeof_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym_call_expression] = STATE(618), + [sym_field_expression] = STATE(618), + [sym_compound_literal_expression] = STATE(618), + [sym_parenthesized_expression] = STATE(618), + [sym_char_literal] = STATE(618), + [sym_concatenated_string] = STATE(618), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1670), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1672), + [sym_comment] = ACTIONS(81), }, - [412] = { - [anon_sym_SEMI] = ACTIONS(1808), - [sym_comment] = ACTIONS(85), + [372] = { + [anon_sym_SEMI] = ACTIONS(1674), + [sym_comment] = ACTIONS(81), }, - [413] = { - [anon_sym_SEMI] = ACTIONS(1810), - [sym_comment] = ACTIONS(85), + [373] = { + [anon_sym_SEMI] = ACTIONS(1676), + [sym_comment] = ACTIONS(81), }, - [414] = { - [sym_identifier] = ACTIONS(1812), - [sym_comment] = ACTIONS(85), + [374] = { + [sym_identifier] = ACTIONS(1678), + [sym_comment] = ACTIONS(81), }, - [415] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(1814), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), + [375] = { + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(239), + [anon_sym_extern] = ACTIONS(242), + [anon_sym_LPAREN2] = ACTIONS(244), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_static] = ACTIONS(242), + [anon_sym_auto] = ACTIONS(242), + [anon_sym_register] = ACTIONS(242), + [anon_sym_inline] = ACTIONS(242), + [anon_sym_const] = ACTIONS(242), + [anon_sym_restrict] = ACTIONS(242), + [anon_sym_volatile] = ACTIONS(242), + [anon_sym__Atomic] = ACTIONS(242), + [anon_sym_COLON] = ACTIONS(1680), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_identifier] = ACTIONS(242), + [sym_comment] = ACTIONS(81), }, - [416] = { - [sym__declarator] = STATE(672), - [sym_pointer_declarator] = STATE(672), - [sym_function_declarator] = STATE(672), - [sym_array_declarator] = STATE(672), - [sym_init_declarator] = STATE(673), - [anon_sym_SEMI] = ACTIONS(1816), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [sym_identifier] = ACTIONS(1818), - [sym_comment] = ACTIONS(85), + [376] = { + [sym__declarator] = STATE(624), + [sym_pointer_declarator] = STATE(624), + [sym_function_declarator] = STATE(624), + [sym_array_declarator] = STATE(624), + [sym_init_declarator] = STATE(625), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(261), + [sym_identifier] = ACTIONS(1684), + [sym_comment] = ACTIONS(81), }, - [417] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(303), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_STAR_EQ] = ACTIONS(317), - [anon_sym_SLASH_EQ] = ACTIONS(317), - [anon_sym_PERCENT_EQ] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(317), - [anon_sym_DASH_EQ] = ACTIONS(317), - [anon_sym_LT_LT_EQ] = ACTIONS(317), - [anon_sym_GT_GT_EQ] = ACTIONS(317), - [anon_sym_AMP_EQ] = ACTIONS(317), - [anon_sym_CARET_EQ] = ACTIONS(317), - [anon_sym_PIPE_EQ] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(319), - [anon_sym_PIPE_PIPE] = ACTIONS(321), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [377] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(269), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(281), + [anon_sym_STAR_EQ] = ACTIONS(283), + [anon_sym_SLASH_EQ] = ACTIONS(283), + [anon_sym_PERCENT_EQ] = ACTIONS(283), + [anon_sym_PLUS_EQ] = ACTIONS(283), + [anon_sym_DASH_EQ] = ACTIONS(283), + [anon_sym_LT_LT_EQ] = ACTIONS(283), + [anon_sym_GT_GT_EQ] = ACTIONS(283), + [anon_sym_AMP_EQ] = ACTIONS(283), + [anon_sym_CARET_EQ] = ACTIONS(283), + [anon_sym_PIPE_EQ] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [418] = { - [anon_sym_SEMI] = ACTIONS(1820), - [sym_comment] = ACTIONS(85), + [378] = { + [anon_sym_SEMI] = ACTIONS(1686), + [sym_comment] = ACTIONS(81), }, - [419] = { - [sym_preproc_include] = STATE(675), - [sym_preproc_def] = STATE(675), - [sym_preproc_function_def] = STATE(675), - [sym_preproc_call] = STATE(675), - [sym_preproc_if] = STATE(675), - [sym_preproc_ifdef] = STATE(675), - [sym_function_definition] = STATE(675), - [sym_declaration] = STATE(675), - [sym_type_definition] = STATE(675), - [sym__declaration_specifiers] = STATE(416), - [sym_linkage_specification] = STATE(675), - [sym_compound_statement] = STATE(675), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(675), - [sym_expression_statement] = STATE(675), - [sym_if_statement] = STATE(675), - [sym_switch_statement] = STATE(675), - [sym_case_statement] = STATE(675), - [sym_while_statement] = STATE(675), - [sym_do_statement] = STATE(675), - [sym_for_statement] = STATE(675), - [sym_return_statement] = STATE(675), - [sym_break_statement] = STATE(675), - [sym_continue_statement] = STATE(675), - [sym_goto_statement] = STATE(675), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(675), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(675), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1015), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1017), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1019), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1822), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1023), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1023), - [sym_preproc_directive] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_typedef] = ACTIONS(1029), - [anon_sym_extern] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1033), + [379] = { + [sym_preproc_include] = STATE(627), + [sym_preproc_def] = STATE(627), + [sym_preproc_function_def] = STATE(627), + [sym_preproc_call] = STATE(627), + [sym_preproc_if] = STATE(627), + [sym_preproc_ifdef] = STATE(627), + [sym_function_definition] = STATE(627), + [sym_declaration] = STATE(627), + [sym_type_definition] = STATE(627), + [sym__declaration_specifiers] = STATE(376), + [sym_linkage_specification] = STATE(627), + [sym_compound_statement] = STATE(627), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(627), + [sym_expression_statement] = STATE(627), + [sym_if_statement] = STATE(627), + [sym_switch_statement] = STATE(627), + [sym_while_statement] = STATE(627), + [sym_do_statement] = STATE(627), + [sym_for_statement] = STATE(627), + [sym_return_statement] = STATE(627), + [sym_break_statement] = STATE(627), + [sym_continue_statement] = STATE(627), + [sym_goto_statement] = STATE(627), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [sym__empty_declaration] = STATE(627), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(627), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(931), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(933), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(935), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1688), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(939), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(939), + [sym_preproc_directive] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_typedef] = ACTIONS(945), + [anon_sym_extern] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -20303,107 +18632,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(1061), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(973), + [sym_comment] = ACTIONS(81), }, - [420] = { - [sym_preproc_include] = STATE(677), - [sym_preproc_def] = STATE(677), - [sym_preproc_function_def] = STATE(677), - [sym_preproc_call] = STATE(677), - [sym_preproc_if] = STATE(677), - [sym_preproc_ifdef] = STATE(677), - [sym_preproc_else] = STATE(676), - [sym_preproc_elif] = STATE(676), - [sym_function_definition] = STATE(677), - [sym_declaration] = STATE(677), - [sym_type_definition] = STATE(677), - [sym__declaration_specifiers] = STATE(200), - [sym_linkage_specification] = STATE(677), - [sym_compound_statement] = STATE(677), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(677), - [sym_expression_statement] = STATE(677), - [sym_if_statement] = STATE(677), - [sym_switch_statement] = STATE(677), - [sym_case_statement] = STATE(677), - [sym_while_statement] = STATE(677), - [sym_do_statement] = STATE(677), - [sym_for_statement] = STATE(677), - [sym_return_statement] = STATE(677), - [sym_break_statement] = STATE(677), - [sym_continue_statement] = STATE(677), - [sym_goto_statement] = STATE(677), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(677), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(677), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1824), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(384), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [380] = { + [sym_preproc_include] = STATE(629), + [sym_preproc_def] = STATE(629), + [sym_preproc_function_def] = STATE(629), + [sym_preproc_call] = STATE(629), + [sym_preproc_if] = STATE(629), + [sym_preproc_ifdef] = STATE(629), + [sym_preproc_else] = STATE(628), + [sym_preproc_elif] = STATE(628), + [sym_function_definition] = STATE(629), + [sym_declaration] = STATE(629), + [sym_type_definition] = STATE(629), + [sym__declaration_specifiers] = STATE(182), + [sym_linkage_specification] = STATE(629), + [sym_compound_statement] = STATE(629), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(629), + [sym_expression_statement] = STATE(629), + [sym_if_statement] = STATE(629), + [sym_switch_statement] = STATE(629), + [sym_while_statement] = STATE(629), + [sym_do_statement] = STATE(629), + [sym_for_statement] = STATE(629), + [sym_return_statement] = STATE(629), + [sym_break_statement] = STATE(629), + [sym_continue_statement] = STATE(629), + [sym_goto_statement] = STATE(629), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(629), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(629), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(348), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(350), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -20421,148 +18747,144 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [421] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(428), - [sym_preproc_directive] = ACTIONS(428), - [anon_sym_SEMI] = ACTIONS(426), - [anon_sym_typedef] = ACTIONS(428), - [anon_sym_extern] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(426), - [anon_sym_LPAREN2] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_static] = ACTIONS(428), - [anon_sym_auto] = ACTIONS(428), - [anon_sym_register] = ACTIONS(428), - [anon_sym_inline] = ACTIONS(428), - [anon_sym_const] = ACTIONS(428), - [anon_sym_restrict] = ACTIONS(428), - [anon_sym_volatile] = ACTIONS(428), - [anon_sym__Atomic] = ACTIONS(428), - [anon_sym_unsigned] = ACTIONS(428), - [anon_sym_long] = ACTIONS(428), - [anon_sym_short] = ACTIONS(428), - [sym_primitive_type] = ACTIONS(428), - [anon_sym_enum] = ACTIONS(428), - [anon_sym_struct] = ACTIONS(428), - [anon_sym_union] = ACTIONS(428), - [anon_sym_if] = ACTIONS(428), - [anon_sym_switch] = ACTIONS(428), - [anon_sym_case] = ACTIONS(428), - [anon_sym_default] = ACTIONS(428), - [anon_sym_while] = ACTIONS(428), - [anon_sym_do] = ACTIONS(428), - [anon_sym_for] = ACTIONS(428), - [anon_sym_return] = ACTIONS(428), - [anon_sym_break] = ACTIONS(428), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_goto] = ACTIONS(428), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_BANG] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(428), - [anon_sym_DASH] = ACTIONS(428), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(426), - [anon_sym_SQUOTE] = ACTIONS(426), - [anon_sym_DQUOTE] = ACTIONS(426), - [sym_true] = ACTIONS(428), - [sym_false] = ACTIONS(428), - [sym_null] = ACTIONS(428), - [sym_identifier] = ACTIONS(428), - [sym_comment] = ACTIONS(85), + [381] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(390), + [sym_preproc_directive] = ACTIONS(390), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_typedef] = ACTIONS(390), + [anon_sym_extern] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_LPAREN2] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_static] = ACTIONS(390), + [anon_sym_auto] = ACTIONS(390), + [anon_sym_register] = ACTIONS(390), + [anon_sym_inline] = ACTIONS(390), + [anon_sym_const] = ACTIONS(390), + [anon_sym_restrict] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(390), + [anon_sym__Atomic] = ACTIONS(390), + [anon_sym_unsigned] = ACTIONS(390), + [anon_sym_long] = ACTIONS(390), + [anon_sym_short] = ACTIONS(390), + [sym_primitive_type] = ACTIONS(390), + [anon_sym_enum] = ACTIONS(390), + [anon_sym_struct] = ACTIONS(390), + [anon_sym_union] = ACTIONS(390), + [anon_sym_if] = ACTIONS(390), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_while] = ACTIONS(390), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(390), + [anon_sym_return] = ACTIONS(390), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [anon_sym_goto] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_DASH_DASH] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(388), + [anon_sym_sizeof] = ACTIONS(390), + [sym_number_literal] = ACTIONS(388), + [anon_sym_SQUOTE] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_identifier] = ACTIONS(390), + [sym_comment] = ACTIONS(81), }, - [422] = { - [anon_sym_LF] = ACTIONS(1826), - [sym_comment] = ACTIONS(95), + [382] = { + [anon_sym_LF] = ACTIONS(1692), + [sym_comment] = ACTIONS(91), }, - [423] = { - [sym__type_declarator] = STATE(679), - [sym_pointer_type_declarator] = STATE(679), - [sym_function_type_declarator] = STATE(679), - [sym_array_type_declarator] = STATE(679), - [anon_sym_LPAREN2] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [sym_identifier] = ACTIONS(441), - [sym_comment] = ACTIONS(85), + [383] = { + [sym__type_declarator] = STATE(631), + [sym_pointer_type_declarator] = STATE(631), + [sym_function_type_declarator] = STATE(631), + [sym_array_type_declarator] = STATE(631), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(401), + [sym_identifier] = ACTIONS(403), + [sym_comment] = ACTIONS(81), }, - [424] = { - [sym_type_qualifier] = STATE(213), - [sym__type_specifier] = STATE(680), - [sym_sized_type_specifier] = STATE(680), - [sym_enum_specifier] = STATE(680), - [sym_struct_specifier] = STATE(680), - [sym_union_specifier] = STATE(680), - [sym_macro_type_specifier] = STATE(680), - [aux_sym_type_definition_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(55), + [384] = { + [sym_type_qualifier] = STATE(195), + [sym__type_specifier] = STATE(632), + [sym_sized_type_specifier] = STATE(632), + [sym_enum_specifier] = STATE(632), + [sym_struct_specifier] = STATE(632), + [sym_union_specifier] = STATE(632), + [sym_macro_type_specifier] = STATE(632), + [aux_sym_type_definition_repeat1] = STATE(195), + [aux_sym_sized_type_specifier_repeat1] = STATE(53), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(107), - [anon_sym_long] = ACTIONS(107), - [anon_sym_short] = ACTIONS(107), - [sym_primitive_type] = ACTIONS(1828), + [anon_sym_unsigned] = ACTIONS(103), + [anon_sym_long] = ACTIONS(103), + [anon_sym_short] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(1694), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [425] = { - [sym_function_definition] = STATE(682), - [sym_declaration] = STATE(682), - [sym__declaration_specifiers] = STATE(683), - [sym_declaration_list] = STATE(682), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), + [385] = { + [sym_function_definition] = STATE(634), + [sym_declaration] = STATE(634), + [sym__declaration_specifiers] = STATE(635), + [sym_declaration_list] = STATE(634), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -20571,143 +18893,140 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [426] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(459), - [sym_preproc_directive] = ACTIONS(459), - [anon_sym_SEMI] = ACTIONS(457), - [anon_sym_typedef] = ACTIONS(459), - [anon_sym_extern] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(457), - [anon_sym_LPAREN2] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_static] = ACTIONS(459), - [anon_sym_auto] = ACTIONS(459), - [anon_sym_register] = ACTIONS(459), - [anon_sym_inline] = ACTIONS(459), - [anon_sym_const] = ACTIONS(459), - [anon_sym_restrict] = ACTIONS(459), - [anon_sym_volatile] = ACTIONS(459), - [anon_sym__Atomic] = ACTIONS(459), - [anon_sym_unsigned] = ACTIONS(459), - [anon_sym_long] = ACTIONS(459), - [anon_sym_short] = ACTIONS(459), - [sym_primitive_type] = ACTIONS(459), - [anon_sym_enum] = ACTIONS(459), - [anon_sym_struct] = ACTIONS(459), - [anon_sym_union] = ACTIONS(459), - [anon_sym_if] = ACTIONS(459), - [anon_sym_else] = ACTIONS(459), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_case] = ACTIONS(459), - [anon_sym_default] = ACTIONS(459), - [anon_sym_while] = ACTIONS(459), - [anon_sym_do] = ACTIONS(459), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(459), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(459), - [anon_sym_goto] = ACTIONS(459), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(457), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(457), - [anon_sym_sizeof] = ACTIONS(459), - [sym_number_literal] = ACTIONS(457), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_true] = ACTIONS(459), - [sym_false] = ACTIONS(459), - [sym_null] = ACTIONS(459), - [sym_identifier] = ACTIONS(459), - [sym_comment] = ACTIONS(85), + [386] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(421), + [sym_preproc_directive] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_typedef] = ACTIONS(421), + [anon_sym_extern] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_LPAREN2] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_static] = ACTIONS(421), + [anon_sym_auto] = ACTIONS(421), + [anon_sym_register] = ACTIONS(421), + [anon_sym_inline] = ACTIONS(421), + [anon_sym_const] = ACTIONS(421), + [anon_sym_restrict] = ACTIONS(421), + [anon_sym_volatile] = ACTIONS(421), + [anon_sym__Atomic] = ACTIONS(421), + [anon_sym_unsigned] = ACTIONS(421), + [anon_sym_long] = ACTIONS(421), + [anon_sym_short] = ACTIONS(421), + [sym_primitive_type] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(421), + [anon_sym_struct] = ACTIONS(421), + [anon_sym_union] = ACTIONS(421), + [anon_sym_if] = ACTIONS(421), + [anon_sym_else] = ACTIONS(421), + [anon_sym_switch] = ACTIONS(421), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(421), + [anon_sym_for] = ACTIONS(421), + [anon_sym_return] = ACTIONS(421), + [anon_sym_break] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_goto] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(419), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_DASH_DASH] = ACTIONS(419), + [anon_sym_PLUS_PLUS] = ACTIONS(419), + [anon_sym_sizeof] = ACTIONS(421), + [sym_number_literal] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [sym_true] = ACTIONS(421), + [sym_false] = ACTIONS(421), + [sym_null] = ACTIONS(421), + [sym_identifier] = ACTIONS(421), + [sym_comment] = ACTIONS(81), }, - [427] = { - [sym_preproc_include] = STATE(233), - [sym_preproc_def] = STATE(233), - [sym_preproc_function_def] = STATE(233), - [sym_preproc_call] = STATE(233), - [sym_preproc_if_in_compound_statement] = STATE(233), - [sym_preproc_ifdef_in_compound_statement] = STATE(233), - [sym_declaration] = STATE(233), - [sym_type_definition] = STATE(233), - [sym__declaration_specifiers] = STATE(67), - [sym_compound_statement] = STATE(233), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(233), - [sym_expression_statement] = STATE(233), - [sym_if_statement] = STATE(233), - [sym_switch_statement] = STATE(233), - [sym_case_statement] = STATE(233), - [sym_while_statement] = STATE(233), - [sym_do_statement] = STATE(233), - [sym_for_statement] = STATE(233), - [sym_return_statement] = STATE(233), - [sym_break_statement] = STATE(233), - [sym_continue_statement] = STATE(233), - [sym_goto_statement] = STATE(233), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(233), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(233), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), + [387] = { + [sym_preproc_include] = STATE(212), + [sym_preproc_def] = STATE(212), + [sym_preproc_function_def] = STATE(212), + [sym_preproc_call] = STATE(212), + [sym_preproc_if_in_compound_statement] = STATE(212), + [sym_preproc_ifdef_in_compound_statement] = STATE(212), + [sym_declaration] = STATE(212), + [sym_type_definition] = STATE(212), + [sym__declaration_specifiers] = STATE(62), + [sym_compound_statement] = STATE(212), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_switch_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_goto_statement] = STATE(212), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(212), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(212), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(117), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(117), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(111), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(113), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(113), [sym_preproc_directive] = ACTIONS(15), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_RBRACE] = ACTIONS(1698), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -20725,414 +19044,206 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(133), - [sym_comment] = ACTIONS(85), - }, - [428] = { - [sym_compound_statement] = STATE(692), - [sym_labeled_statement] = STATE(692), - [sym_expression_statement] = STATE(692), - [sym_if_statement] = STATE(692), - [sym_switch_statement] = STATE(692), - [sym_case_statement] = STATE(692), - [sym_while_statement] = STATE(692), - [sym_do_statement] = STATE(692), - [sym_for_statement] = STATE(692), - [sym_return_statement] = STATE(692), - [sym_break_statement] = STATE(692), - [sym_continue_statement] = STATE(692), - [sym_goto_statement] = STATE(692), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1846), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(123), + [sym_comment] = ACTIONS(81), }, - [429] = { - [sym_compound_statement] = STATE(694), - [sym_labeled_statement] = STATE(694), - [sym_expression_statement] = STATE(694), - [sym_if_statement] = STATE(694), - [sym_switch_statement] = STATE(694), - [sym_case_statement] = STATE(694), - [sym_while_statement] = STATE(694), - [sym_do_statement] = STATE(694), - [sym_for_statement] = STATE(694), - [sym_return_statement] = STATE(694), - [sym_break_statement] = STATE(694), - [sym_continue_statement] = STATE(694), - [sym_goto_statement] = STATE(694), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [388] = { + [sym_compound_statement] = STATE(641), + [sym_labeled_statement] = STATE(641), + [sym_expression_statement] = STATE(641), + [sym_if_statement] = STATE(641), + [sym_switch_statement] = STATE(641), + [sym_while_statement] = STATE(641), + [sym_do_statement] = STATE(641), + [sym_for_statement] = STATE(641), + [sym_return_statement] = STATE(641), + [sym_break_statement] = STATE(641), + [sym_continue_statement] = STATE(641), + [sym_goto_statement] = STATE(641), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1848), - [sym_comment] = ACTIONS(85), - }, - [430] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(1850), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1706), + [sym_comment] = ACTIONS(81), }, - [431] = { - [sym_declaration] = STATE(697), - [sym_type_definition] = STATE(697), - [sym__declaration_specifiers] = STATE(698), - [sym_compound_statement] = STATE(697), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_labeled_statement] = STATE(697), - [sym_expression_statement] = STATE(697), - [sym_if_statement] = STATE(697), - [sym_switch_statement] = STATE(697), - [sym_case_statement] = STATE(697), - [sym_while_statement] = STATE(697), - [sym_do_statement] = STATE(697), - [sym_for_statement] = STATE(697), - [sym_return_statement] = STATE(697), - [sym_break_statement] = STATE(697), - [sym_continue_statement] = STATE(697), - [sym_goto_statement] = STATE(697), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1852), - [sym_comment] = ACTIONS(85), + [389] = { + [sym_switch_body] = STATE(643), + [anon_sym_LBRACE] = ACTIONS(1708), + [sym_comment] = ACTIONS(81), }, - [432] = { - [sym_compound_statement] = STATE(699), - [sym_labeled_statement] = STATE(699), - [sym_expression_statement] = STATE(699), - [sym_if_statement] = STATE(699), - [sym_switch_statement] = STATE(699), - [sym_case_statement] = STATE(699), - [sym_while_statement] = STATE(699), - [sym_do_statement] = STATE(699), - [sym_for_statement] = STATE(699), - [sym_return_statement] = STATE(699), - [sym_break_statement] = STATE(699), - [sym_continue_statement] = STATE(699), - [sym_goto_statement] = STATE(699), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [390] = { + [sym_compound_statement] = STATE(645), + [sym_labeled_statement] = STATE(645), + [sym_expression_statement] = STATE(645), + [sym_if_statement] = STATE(645), + [sym_switch_statement] = STATE(645), + [sym_while_statement] = STATE(645), + [sym_do_statement] = STATE(645), + [sym_for_statement] = STATE(645), + [sym_return_statement] = STATE(645), + [sym_break_statement] = STATE(645), + [sym_continue_statement] = STATE(645), + [sym_goto_statement] = STATE(645), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1848), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1710), + [sym_comment] = ACTIONS(81), }, - [433] = { - [anon_sym_while] = ACTIONS(1854), - [sym_comment] = ACTIONS(85), + [391] = { + [anon_sym_while] = ACTIONS(1712), + [sym_comment] = ACTIONS(81), }, - [434] = { - [sym_declaration] = STATE(701), - [sym__declaration_specifiers] = STATE(306), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym__expression] = STATE(702), - [sym_conditional_expression] = STATE(702), - [sym_assignment_expression] = STATE(702), - [sym_pointer_expression] = STATE(702), - [sym_logical_expression] = STATE(702), - [sym_bitwise_expression] = STATE(702), - [sym_equality_expression] = STATE(702), - [sym_relational_expression] = STATE(702), - [sym_shift_expression] = STATE(702), - [sym_math_expression] = STATE(702), - [sym_cast_expression] = STATE(702), - [sym_sizeof_expression] = STATE(702), - [sym_subscript_expression] = STATE(702), - [sym_call_expression] = STATE(702), - [sym_field_expression] = STATE(702), - [sym_compound_literal_expression] = STATE(702), - [sym_parenthesized_expression] = STATE(702), - [sym_char_literal] = STATE(702), - [sym_concatenated_string] = STATE(702), - [sym_string_literal] = STATE(123), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(1856), + [392] = { + [sym_declaration] = STATE(647), + [sym__declaration_specifiers] = STATE(273), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym__expression] = STATE(648), + [sym_conditional_expression] = STATE(648), + [sym_assignment_expression] = STATE(648), + [sym_pointer_expression] = STATE(648), + [sym_logical_expression] = STATE(648), + [sym_bitwise_expression] = STATE(648), + [sym_equality_expression] = STATE(648), + [sym_relational_expression] = STATE(648), + [sym_shift_expression] = STATE(648), + [sym_math_expression] = STATE(648), + [sym_cast_expression] = STATE(648), + [sym_sizeof_expression] = STATE(648), + [sym_subscript_expression] = STATE(648), + [sym_call_expression] = STATE(648), + [sym_field_expression] = STATE(648), + [sym_compound_literal_expression] = STATE(648), + [sym_parenthesized_expression] = STATE(648), + [sym_char_literal] = STATE(648), + [sym_concatenated_string] = STATE(648), + [sym_string_literal] = STATE(107), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(1714), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -21141,982 +19252,958 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1858), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1860), - [sym_false] = ACTIONS(1860), - [sym_null] = ACTIONS(1860), - [sym_identifier] = ACTIONS(651), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1718), + [sym_false] = ACTIONS(1718), + [sym_null] = ACTIONS(1718), + [sym_identifier] = ACTIONS(559), + [sym_comment] = ACTIONS(81), }, - [435] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(655), - [sym_preproc_directive] = ACTIONS(655), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_typedef] = ACTIONS(655), - [anon_sym_extern] = ACTIONS(655), - [anon_sym_LBRACE] = ACTIONS(653), - [anon_sym_LPAREN2] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_auto] = ACTIONS(655), - [anon_sym_register] = ACTIONS(655), - [anon_sym_inline] = ACTIONS(655), - [anon_sym_const] = ACTIONS(655), - [anon_sym_restrict] = ACTIONS(655), - [anon_sym_volatile] = ACTIONS(655), - [anon_sym__Atomic] = ACTIONS(655), - [anon_sym_unsigned] = ACTIONS(655), - [anon_sym_long] = ACTIONS(655), - [anon_sym_short] = ACTIONS(655), - [sym_primitive_type] = ACTIONS(655), - [anon_sym_enum] = ACTIONS(655), - [anon_sym_struct] = ACTIONS(655), - [anon_sym_union] = ACTIONS(655), - [anon_sym_if] = ACTIONS(655), - [anon_sym_else] = ACTIONS(655), - [anon_sym_switch] = ACTIONS(655), - [anon_sym_case] = ACTIONS(655), - [anon_sym_default] = ACTIONS(655), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(655), - [anon_sym_for] = ACTIONS(655), - [anon_sym_return] = ACTIONS(655), - [anon_sym_break] = ACTIONS(655), - [anon_sym_continue] = ACTIONS(655), - [anon_sym_goto] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(653), - [anon_sym_sizeof] = ACTIONS(655), - [sym_number_literal] = ACTIONS(653), - [anon_sym_SQUOTE] = ACTIONS(653), - [anon_sym_DQUOTE] = ACTIONS(653), - [sym_true] = ACTIONS(655), - [sym_false] = ACTIONS(655), - [sym_null] = ACTIONS(655), - [sym_identifier] = ACTIONS(655), - [sym_comment] = ACTIONS(85), + [393] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(563), + [sym_preproc_directive] = ACTIONS(563), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_typedef] = ACTIONS(563), + [anon_sym_extern] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_LPAREN2] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_static] = ACTIONS(563), + [anon_sym_auto] = ACTIONS(563), + [anon_sym_register] = ACTIONS(563), + [anon_sym_inline] = ACTIONS(563), + [anon_sym_const] = ACTIONS(563), + [anon_sym_restrict] = ACTIONS(563), + [anon_sym_volatile] = ACTIONS(563), + [anon_sym__Atomic] = ACTIONS(563), + [anon_sym_unsigned] = ACTIONS(563), + [anon_sym_long] = ACTIONS(563), + [anon_sym_short] = ACTIONS(563), + [sym_primitive_type] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(563), + [anon_sym_union] = ACTIONS(563), + [anon_sym_if] = ACTIONS(563), + [anon_sym_else] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(563), + [anon_sym_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(563), + [anon_sym_for] = ACTIONS(563), + [anon_sym_return] = ACTIONS(563), + [anon_sym_break] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(563), + [anon_sym_goto] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(561), + [anon_sym_BANG] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(561), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_sizeof] = ACTIONS(563), + [sym_number_literal] = ACTIONS(561), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(561), + [sym_true] = ACTIONS(563), + [sym_false] = ACTIONS(563), + [sym_null] = ACTIONS(563), + [sym_identifier] = ACTIONS(563), + [sym_comment] = ACTIONS(81), }, - [436] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [394] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [437] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(695), - [sym_preproc_directive] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_typedef] = ACTIONS(695), - [anon_sym_extern] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_LPAREN2] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_static] = ACTIONS(695), - [anon_sym_auto] = ACTIONS(695), - [anon_sym_register] = ACTIONS(695), - [anon_sym_inline] = ACTIONS(695), - [anon_sym_const] = ACTIONS(695), - [anon_sym_restrict] = ACTIONS(695), - [anon_sym_volatile] = ACTIONS(695), - [anon_sym__Atomic] = ACTIONS(695), - [anon_sym_unsigned] = ACTIONS(695), - [anon_sym_long] = ACTIONS(695), - [anon_sym_short] = ACTIONS(695), - [sym_primitive_type] = ACTIONS(695), - [anon_sym_enum] = ACTIONS(695), - [anon_sym_struct] = ACTIONS(695), - [anon_sym_union] = ACTIONS(695), - [anon_sym_if] = ACTIONS(695), - [anon_sym_else] = ACTIONS(695), - [anon_sym_switch] = ACTIONS(695), - [anon_sym_case] = ACTIONS(695), - [anon_sym_default] = ACTIONS(695), - [anon_sym_while] = ACTIONS(695), - [anon_sym_do] = ACTIONS(695), - [anon_sym_for] = ACTIONS(695), - [anon_sym_return] = ACTIONS(695), - [anon_sym_break] = ACTIONS(695), - [anon_sym_continue] = ACTIONS(695), - [anon_sym_goto] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_DASH_DASH] = ACTIONS(693), - [anon_sym_PLUS_PLUS] = ACTIONS(693), - [anon_sym_sizeof] = ACTIONS(695), - [sym_number_literal] = ACTIONS(693), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_DQUOTE] = ACTIONS(693), - [sym_true] = ACTIONS(695), - [sym_false] = ACTIONS(695), - [sym_null] = ACTIONS(695), - [sym_identifier] = ACTIONS(695), - [sym_comment] = ACTIONS(85), + [395] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(603), + [sym_preproc_directive] = ACTIONS(603), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym_typedef] = ACTIONS(603), + [anon_sym_extern] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_LPAREN2] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(601), + [anon_sym_static] = ACTIONS(603), + [anon_sym_auto] = ACTIONS(603), + [anon_sym_register] = ACTIONS(603), + [anon_sym_inline] = ACTIONS(603), + [anon_sym_const] = ACTIONS(603), + [anon_sym_restrict] = ACTIONS(603), + [anon_sym_volatile] = ACTIONS(603), + [anon_sym__Atomic] = ACTIONS(603), + [anon_sym_unsigned] = ACTIONS(603), + [anon_sym_long] = ACTIONS(603), + [anon_sym_short] = ACTIONS(603), + [sym_primitive_type] = ACTIONS(603), + [anon_sym_enum] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(603), + [anon_sym_union] = ACTIONS(603), + [anon_sym_if] = ACTIONS(603), + [anon_sym_else] = ACTIONS(603), + [anon_sym_switch] = ACTIONS(603), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(603), + [anon_sym_for] = ACTIONS(603), + [anon_sym_return] = ACTIONS(603), + [anon_sym_break] = ACTIONS(603), + [anon_sym_continue] = ACTIONS(603), + [anon_sym_goto] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(601), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_sizeof] = ACTIONS(603), + [sym_number_literal] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(601), + [sym_true] = ACTIONS(603), + [sym_false] = ACTIONS(603), + [sym_null] = ACTIONS(603), + [sym_identifier] = ACTIONS(603), + [sym_comment] = ACTIONS(81), }, - [438] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(699), - [sym_preproc_directive] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_typedef] = ACTIONS(699), - [anon_sym_extern] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_LPAREN2] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_static] = ACTIONS(699), - [anon_sym_auto] = ACTIONS(699), - [anon_sym_register] = ACTIONS(699), - [anon_sym_inline] = ACTIONS(699), - [anon_sym_const] = ACTIONS(699), - [anon_sym_restrict] = ACTIONS(699), - [anon_sym_volatile] = ACTIONS(699), - [anon_sym__Atomic] = ACTIONS(699), - [anon_sym_unsigned] = ACTIONS(699), - [anon_sym_long] = ACTIONS(699), - [anon_sym_short] = ACTIONS(699), - [sym_primitive_type] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(699), - [anon_sym_struct] = ACTIONS(699), - [anon_sym_union] = ACTIONS(699), - [anon_sym_if] = ACTIONS(699), - [anon_sym_else] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(699), - [anon_sym_case] = ACTIONS(699), - [anon_sym_default] = ACTIONS(699), - [anon_sym_while] = ACTIONS(699), - [anon_sym_do] = ACTIONS(699), - [anon_sym_for] = ACTIONS(699), - [anon_sym_return] = ACTIONS(699), - [anon_sym_break] = ACTIONS(699), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_goto] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_sizeof] = ACTIONS(699), - [sym_number_literal] = ACTIONS(697), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(697), - [sym_true] = ACTIONS(699), - [sym_false] = ACTIONS(699), - [sym_null] = ACTIONS(699), - [sym_identifier] = ACTIONS(699), - [sym_comment] = ACTIONS(85), + [396] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(607), + [sym_preproc_directive] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_typedef] = ACTIONS(607), + [anon_sym_extern] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_LPAREN2] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_static] = ACTIONS(607), + [anon_sym_auto] = ACTIONS(607), + [anon_sym_register] = ACTIONS(607), + [anon_sym_inline] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_restrict] = ACTIONS(607), + [anon_sym_volatile] = ACTIONS(607), + [anon_sym__Atomic] = ACTIONS(607), + [anon_sym_unsigned] = ACTIONS(607), + [anon_sym_long] = ACTIONS(607), + [anon_sym_short] = ACTIONS(607), + [sym_primitive_type] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_else] = ACTIONS(607), + [anon_sym_switch] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [anon_sym_do] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_goto] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_sizeof] = ACTIONS(607), + [sym_number_literal] = ACTIONS(605), + [anon_sym_SQUOTE] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_true] = ACTIONS(607), + [sym_false] = ACTIONS(607), + [sym_null] = ACTIONS(607), + [sym_identifier] = ACTIONS(607), + [sym_comment] = ACTIONS(81), }, - [439] = { - [anon_sym_SEMI] = ACTIONS(1864), - [sym_comment] = ACTIONS(85), + [397] = { + [anon_sym_SEMI] = ACTIONS(1722), + [sym_comment] = ACTIONS(81), }, - [440] = { - [sym_compound_statement] = STATE(705), - [sym_labeled_statement] = STATE(705), - [sym_expression_statement] = STATE(705), - [sym_if_statement] = STATE(705), - [sym_switch_statement] = STATE(705), - [sym_case_statement] = STATE(705), - [sym_while_statement] = STATE(705), - [sym_do_statement] = STATE(705), - [sym_for_statement] = STATE(705), - [sym_return_statement] = STATE(705), - [sym_break_statement] = STATE(705), - [sym_continue_statement] = STATE(705), - [sym_goto_statement] = STATE(705), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [398] = { + [sym_compound_statement] = STATE(651), + [sym_labeled_statement] = STATE(651), + [sym_expression_statement] = STATE(651), + [sym_if_statement] = STATE(651), + [sym_switch_statement] = STATE(651), + [sym_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1848), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1710), + [sym_comment] = ACTIONS(81), }, - [441] = { - [ts_builtin_sym_end] = ACTIONS(1866), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1868), - [sym_preproc_directive] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_typedef] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_auto] = ACTIONS(1868), - [anon_sym_register] = ACTIONS(1868), - [anon_sym_inline] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_restrict] = ACTIONS(1868), - [anon_sym_volatile] = ACTIONS(1868), - [anon_sym__Atomic] = ACTIONS(1868), - [anon_sym_unsigned] = ACTIONS(1868), - [anon_sym_long] = ACTIONS(1868), - [anon_sym_short] = ACTIONS(1868), - [sym_primitive_type] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_switch] = ACTIONS(1868), - [anon_sym_case] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_do] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_goto] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1866), - [anon_sym_PLUS_PLUS] = ACTIONS(1866), - [anon_sym_sizeof] = ACTIONS(1868), - [sym_number_literal] = ACTIONS(1866), - [anon_sym_SQUOTE] = ACTIONS(1866), - [anon_sym_DQUOTE] = ACTIONS(1866), - [sym_true] = ACTIONS(1868), - [sym_false] = ACTIONS(1868), - [sym_null] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1868), - [sym_comment] = ACTIONS(85), + [399] = { + [ts_builtin_sym_end] = ACTIONS(1724), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1726), + [sym_preproc_directive] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1724), + [anon_sym_typedef] = ACTIONS(1726), + [anon_sym_extern] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1726), + [anon_sym_auto] = ACTIONS(1726), + [anon_sym_register] = ACTIONS(1726), + [anon_sym_inline] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1726), + [anon_sym_restrict] = ACTIONS(1726), + [anon_sym_volatile] = ACTIONS(1726), + [anon_sym__Atomic] = ACTIONS(1726), + [anon_sym_unsigned] = ACTIONS(1726), + [anon_sym_long] = ACTIONS(1726), + [anon_sym_short] = ACTIONS(1726), + [sym_primitive_type] = ACTIONS(1726), + [anon_sym_enum] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(1726), + [anon_sym_union] = ACTIONS(1726), + [anon_sym_if] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1726), + [anon_sym_do] = ACTIONS(1726), + [anon_sym_for] = ACTIONS(1726), + [anon_sym_return] = ACTIONS(1726), + [anon_sym_break] = ACTIONS(1726), + [anon_sym_continue] = ACTIONS(1726), + [anon_sym_goto] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_BANG] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1724), + [anon_sym_PLUS_PLUS] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_number_literal] = ACTIONS(1724), + [anon_sym_SQUOTE] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [sym_true] = ACTIONS(1726), + [sym_false] = ACTIONS(1726), + [sym_null] = ACTIONS(1726), + [sym_identifier] = ACTIONS(1726), + [sym_comment] = ACTIONS(81), }, - [442] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(731), - [sym_preproc_directive] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_typedef] = ACTIONS(731), - [anon_sym_extern] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_LPAREN2] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_static] = ACTIONS(731), - [anon_sym_auto] = ACTIONS(731), - [anon_sym_register] = ACTIONS(731), - [anon_sym_inline] = ACTIONS(731), - [anon_sym_const] = ACTIONS(731), - [anon_sym_restrict] = ACTIONS(731), - [anon_sym_volatile] = ACTIONS(731), - [anon_sym__Atomic] = ACTIONS(731), - [anon_sym_unsigned] = ACTIONS(731), - [anon_sym_long] = ACTIONS(731), - [anon_sym_short] = ACTIONS(731), - [sym_primitive_type] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(731), - [anon_sym_struct] = ACTIONS(731), - [anon_sym_union] = ACTIONS(731), - [anon_sym_if] = ACTIONS(731), - [anon_sym_switch] = ACTIONS(731), - [anon_sym_case] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_while] = ACTIONS(731), - [anon_sym_do] = ACTIONS(731), - [anon_sym_for] = ACTIONS(731), - [anon_sym_return] = ACTIONS(731), - [anon_sym_break] = ACTIONS(731), - [anon_sym_continue] = ACTIONS(731), - [anon_sym_goto] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_sizeof] = ACTIONS(731), - [sym_number_literal] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [sym_true] = ACTIONS(731), - [sym_false] = ACTIONS(731), - [sym_null] = ACTIONS(731), - [sym_identifier] = ACTIONS(731), - [sym_comment] = ACTIONS(85), + [400] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(639), + [sym_preproc_directive] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym_typedef] = ACTIONS(639), + [anon_sym_extern] = ACTIONS(639), + [anon_sym_LBRACE] = ACTIONS(637), + [anon_sym_LPAREN2] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_static] = ACTIONS(639), + [anon_sym_auto] = ACTIONS(639), + [anon_sym_register] = ACTIONS(639), + [anon_sym_inline] = ACTIONS(639), + [anon_sym_const] = ACTIONS(639), + [anon_sym_restrict] = ACTIONS(639), + [anon_sym_volatile] = ACTIONS(639), + [anon_sym__Atomic] = ACTIONS(639), + [anon_sym_unsigned] = ACTIONS(639), + [anon_sym_long] = ACTIONS(639), + [anon_sym_short] = ACTIONS(639), + [sym_primitive_type] = ACTIONS(639), + [anon_sym_enum] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(639), + [anon_sym_union] = ACTIONS(639), + [anon_sym_if] = ACTIONS(639), + [anon_sym_switch] = ACTIONS(639), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(639), + [anon_sym_for] = ACTIONS(639), + [anon_sym_return] = ACTIONS(639), + [anon_sym_break] = ACTIONS(639), + [anon_sym_continue] = ACTIONS(639), + [anon_sym_goto] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_DASH_DASH] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(637), + [anon_sym_sizeof] = ACTIONS(639), + [sym_number_literal] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(637), + [sym_true] = ACTIONS(639), + [sym_false] = ACTIONS(639), + [sym_null] = ACTIONS(639), + [sym_identifier] = ACTIONS(639), + [sym_comment] = ACTIONS(81), }, - [443] = { - [sym_compound_statement] = STATE(707), - [sym_parameter_list] = STATE(354), - [aux_sym_declaration_repeat1] = STATE(708), - [anon_sym_COMMA] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(747), - [sym_comment] = ACTIONS(85), + [401] = { + [sym_compound_statement] = STATE(653), + [sym_parameter_list] = STATE(309), + [aux_sym_declaration_repeat1] = STATE(654), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(360), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(655), + [sym_comment] = ACTIONS(81), }, - [444] = { - [aux_sym_declaration_repeat1] = STATE(708), - [anon_sym_COMMA] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(1870), - [sym_comment] = ACTIONS(85), + [402] = { + [aux_sym_declaration_repeat1] = STATE(654), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(1728), + [sym_comment] = ACTIONS(81), }, - [445] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(759), - [sym_preproc_directive] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(757), - [anon_sym_typedef] = ACTIONS(759), - [anon_sym_extern] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_LPAREN2] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_static] = ACTIONS(759), - [anon_sym_auto] = ACTIONS(759), - [anon_sym_register] = ACTIONS(759), - [anon_sym_inline] = ACTIONS(759), - [anon_sym_const] = ACTIONS(759), - [anon_sym_restrict] = ACTIONS(759), - [anon_sym_volatile] = ACTIONS(759), - [anon_sym__Atomic] = ACTIONS(759), - [anon_sym_unsigned] = ACTIONS(759), - [anon_sym_long] = ACTIONS(759), - [anon_sym_short] = ACTIONS(759), - [sym_primitive_type] = ACTIONS(759), - [anon_sym_enum] = ACTIONS(759), - [anon_sym_struct] = ACTIONS(759), - [anon_sym_union] = ACTIONS(759), - [anon_sym_if] = ACTIONS(759), - [anon_sym_else] = ACTIONS(759), - [anon_sym_switch] = ACTIONS(759), - [anon_sym_case] = ACTIONS(759), - [anon_sym_default] = ACTIONS(759), - [anon_sym_while] = ACTIONS(759), - [anon_sym_do] = ACTIONS(759), - [anon_sym_for] = ACTIONS(759), - [anon_sym_return] = ACTIONS(759), - [anon_sym_break] = ACTIONS(759), - [anon_sym_continue] = ACTIONS(759), - [anon_sym_goto] = ACTIONS(759), - [anon_sym_AMP] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(757), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_sizeof] = ACTIONS(759), - [sym_number_literal] = ACTIONS(757), - [anon_sym_SQUOTE] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [sym_true] = ACTIONS(759), - [sym_false] = ACTIONS(759), - [sym_null] = ACTIONS(759), - [sym_identifier] = ACTIONS(759), - [sym_comment] = ACTIONS(85), + [403] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(667), + [sym_preproc_directive] = ACTIONS(667), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_typedef] = ACTIONS(667), + [anon_sym_extern] = ACTIONS(667), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_LPAREN2] = ACTIONS(665), + [anon_sym_STAR] = ACTIONS(665), + [anon_sym_static] = ACTIONS(667), + [anon_sym_auto] = ACTIONS(667), + [anon_sym_register] = ACTIONS(667), + [anon_sym_inline] = ACTIONS(667), + [anon_sym_const] = ACTIONS(667), + [anon_sym_restrict] = ACTIONS(667), + [anon_sym_volatile] = ACTIONS(667), + [anon_sym__Atomic] = ACTIONS(667), + [anon_sym_unsigned] = ACTIONS(667), + [anon_sym_long] = ACTIONS(667), + [anon_sym_short] = ACTIONS(667), + [sym_primitive_type] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(667), + [anon_sym_struct] = ACTIONS(667), + [anon_sym_union] = ACTIONS(667), + [anon_sym_if] = ACTIONS(667), + [anon_sym_else] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(667), + [anon_sym_while] = ACTIONS(667), + [anon_sym_do] = ACTIONS(667), + [anon_sym_for] = ACTIONS(667), + [anon_sym_return] = ACTIONS(667), + [anon_sym_break] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(667), + [anon_sym_goto] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_PLUS] = ACTIONS(667), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_sizeof] = ACTIONS(667), + [sym_number_literal] = ACTIONS(665), + [anon_sym_SQUOTE] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [sym_null] = ACTIONS(667), + [sym_identifier] = ACTIONS(667), + [sym_comment] = ACTIONS(81), }, - [446] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1872), - [sym_comment] = ACTIONS(85), + [404] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(81), }, - [447] = { - [sym_preproc_include] = STATE(447), - [sym_preproc_def] = STATE(447), - [sym_preproc_function_def] = STATE(447), - [sym_preproc_call] = STATE(447), - [sym_preproc_if] = STATE(447), - [sym_preproc_ifdef] = STATE(447), - [sym_function_definition] = STATE(447), - [sym_declaration] = STATE(447), - [sym_type_definition] = STATE(447), - [sym__declaration_specifiers] = STATE(200), - [sym_linkage_specification] = STATE(447), - [sym_compound_statement] = STATE(447), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(447), - [sym_expression_statement] = STATE(447), - [sym_if_statement] = STATE(447), - [sym_switch_statement] = STATE(447), - [sym_case_statement] = STATE(447), - [sym_while_statement] = STATE(447), - [sym_do_statement] = STATE(447), - [sym_for_statement] = STATE(447), - [sym_return_statement] = STATE(447), - [sym_break_statement] = STATE(447), - [sym_continue_statement] = STATE(447), - [sym_goto_statement] = STATE(447), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(447), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(447), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1874), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1880), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1885), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1885), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1883), - [sym_preproc_directive] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1891), - [anon_sym_typedef] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1900), - [anon_sym_LPAREN2] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(875), - [anon_sym_static] = ACTIONS(878), - [anon_sym_auto] = ACTIONS(878), - [anon_sym_register] = ACTIONS(878), - [anon_sym_inline] = ACTIONS(878), - [anon_sym_const] = ACTIONS(881), - [anon_sym_restrict] = ACTIONS(881), - [anon_sym_volatile] = ACTIONS(881), - [anon_sym__Atomic] = ACTIONS(881), - [anon_sym_unsigned] = ACTIONS(884), - [anon_sym_long] = ACTIONS(884), - [anon_sym_short] = ACTIONS(884), - [sym_primitive_type] = ACTIONS(887), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(893), - [anon_sym_union] = ACTIONS(896), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_switch] = ACTIONS(1906), - [anon_sym_case] = ACTIONS(1909), - [anon_sym_default] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_do] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_goto] = ACTIONS(1933), - [anon_sym_AMP] = ACTIONS(875), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_sizeof] = ACTIONS(944), - [sym_number_literal] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym_true] = ACTIONS(1939), - [sym_false] = ACTIONS(1939), - [sym_null] = ACTIONS(1939), - [sym_identifier] = ACTIONS(1942), - [sym_comment] = ACTIONS(85), + [405] = { + [sym_preproc_include] = STATE(405), + [sym_preproc_def] = STATE(405), + [sym_preproc_function_def] = STATE(405), + [sym_preproc_call] = STATE(405), + [sym_preproc_if] = STATE(405), + [sym_preproc_ifdef] = STATE(405), + [sym_function_definition] = STATE(405), + [sym_declaration] = STATE(405), + [sym_type_definition] = STATE(405), + [sym__declaration_specifiers] = STATE(182), + [sym_linkage_specification] = STATE(405), + [sym_compound_statement] = STATE(405), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(405), + [sym_expression_statement] = STATE(405), + [sym_if_statement] = STATE(405), + [sym_switch_statement] = STATE(405), + [sym_while_statement] = STATE(405), + [sym_do_statement] = STATE(405), + [sym_for_statement] = STATE(405), + [sym_return_statement] = STATE(405), + [sym_break_statement] = STATE(405), + [sym_continue_statement] = STATE(405), + [sym_goto_statement] = STATE(405), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(405), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(405), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1732), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1735), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1741), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1743), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1743), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1741), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1741), + [sym_preproc_directive] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1749), + [anon_sym_typedef] = ACTIONS(1752), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_LPAREN2] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_static] = ACTIONS(800), + [anon_sym_auto] = ACTIONS(800), + [anon_sym_register] = ACTIONS(800), + [anon_sym_inline] = ACTIONS(800), + [anon_sym_const] = ACTIONS(803), + [anon_sym_restrict] = ACTIONS(803), + [anon_sym_volatile] = ACTIONS(803), + [anon_sym__Atomic] = ACTIONS(803), + [anon_sym_unsigned] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [sym_primitive_type] = ACTIONS(809), + [anon_sym_enum] = ACTIONS(812), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_union] = ACTIONS(818), + [anon_sym_if] = ACTIONS(1761), + [anon_sym_switch] = ACTIONS(1764), + [anon_sym_while] = ACTIONS(1767), + [anon_sym_do] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1782), + [anon_sym_goto] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(797), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_sizeof] = ACTIONS(860), + [sym_number_literal] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(869), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1794), + [sym_comment] = ACTIONS(81), }, - [448] = { - [ts_builtin_sym_end] = ACTIONS(1945), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1947), - [sym_preproc_directive] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1945), - [anon_sym_typedef] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_LPAREN2] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_static] = ACTIONS(1947), - [anon_sym_auto] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1947), - [anon_sym_inline] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [anon_sym_restrict] = ACTIONS(1947), - [anon_sym_volatile] = ACTIONS(1947), - [anon_sym__Atomic] = ACTIONS(1947), - [anon_sym_unsigned] = ACTIONS(1947), - [anon_sym_long] = ACTIONS(1947), - [anon_sym_short] = ACTIONS(1947), - [sym_primitive_type] = ACTIONS(1947), - [anon_sym_enum] = ACTIONS(1947), - [anon_sym_struct] = ACTIONS(1947), - [anon_sym_union] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_switch] = ACTIONS(1947), - [anon_sym_case] = ACTIONS(1947), - [anon_sym_default] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_do] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_goto] = ACTIONS(1947), - [anon_sym_AMP] = ACTIONS(1945), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_DASH_DASH] = ACTIONS(1945), - [anon_sym_PLUS_PLUS] = ACTIONS(1945), - [anon_sym_sizeof] = ACTIONS(1947), - [sym_number_literal] = ACTIONS(1945), - [anon_sym_SQUOTE] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym_true] = ACTIONS(1947), - [sym_false] = ACTIONS(1947), - [sym_null] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1947), - [sym_comment] = ACTIONS(85), + [406] = { + [ts_builtin_sym_end] = ACTIONS(1797), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1799), + [sym_preproc_directive] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_typedef] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_auto] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_inline] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_restrict] = ACTIONS(1799), + [anon_sym_volatile] = ACTIONS(1799), + [anon_sym__Atomic] = ACTIONS(1799), + [anon_sym_unsigned] = ACTIONS(1799), + [anon_sym_long] = ACTIONS(1799), + [anon_sym_short] = ACTIONS(1799), + [sym_primitive_type] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(1799), + [anon_sym_union] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_switch] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_goto] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1797), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1797), + [anon_sym_PLUS_PLUS] = ACTIONS(1797), + [anon_sym_sizeof] = ACTIONS(1799), + [sym_number_literal] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(1797), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_null] = ACTIONS(1799), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(81), }, - [449] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1949), - [sym_comment] = ACTIONS(85), + [407] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1801), + [sym_comment] = ACTIONS(81), }, - [450] = { - [sym__type_declarator] = STATE(452), - [sym_pointer_type_declarator] = STATE(452), - [sym_function_type_declarator] = STATE(452), - [sym_array_type_declarator] = STATE(452), - [sym_type_qualifier] = STATE(711), - [aux_sym_type_definition_repeat1] = STATE(711), - [anon_sym_LPAREN2] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(1117), + [408] = { + [sym__type_declarator] = STATE(410), + [sym_pointer_type_declarator] = STATE(410), + [sym_function_type_declarator] = STATE(410), + [sym_array_type_declarator] = STATE(410), + [sym_type_qualifier] = STATE(657), + [aux_sym_type_definition_repeat1] = STATE(657), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(1023), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1119), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(1025), + [sym_comment] = ACTIONS(81), }, - [451] = { - [sym_parameter_list] = STATE(456), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1125), - [sym_comment] = ACTIONS(85), + [409] = { + [sym_parameter_list] = STATE(414), + [anon_sym_RPAREN] = ACTIONS(1803), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1031), + [sym_comment] = ACTIONS(81), }, - [452] = { - [sym_parameter_list] = STATE(456), - [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1125), - [sym_comment] = ACTIONS(85), + [410] = { + [sym_parameter_list] = STATE(414), + [anon_sym_RPAREN] = ACTIONS(1805), + [anon_sym_SEMI] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1031), + [sym_comment] = ACTIONS(81), }, - [453] = { - [sym__type_declarator] = STATE(713), - [sym_pointer_type_declarator] = STATE(713), - [sym_function_type_declarator] = STATE(713), - [sym_array_type_declarator] = STATE(713), - [sym_type_qualifier] = STATE(599), - [aux_sym_type_definition_repeat1] = STATE(599), - [anon_sym_LPAREN2] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), + [411] = { + [sym__type_declarator] = STATE(659), + [sym_pointer_type_declarator] = STATE(659), + [sym_function_type_declarator] = STATE(659), + [sym_array_type_declarator] = STATE(659), + [sym_type_qualifier] = STATE(537), + [aux_sym_type_definition_repeat1] = STATE(537), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(401), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1119), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(1025), + [sym_comment] = ACTIONS(81), }, - [454] = { - [ts_builtin_sym_end] = ACTIONS(1955), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1957), - [sym_preproc_directive] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_typedef] = ACTIONS(1957), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_static] = ACTIONS(1957), - [anon_sym_auto] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), - [anon_sym_inline] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [anon_sym_restrict] = ACTIONS(1957), - [anon_sym_volatile] = ACTIONS(1957), - [anon_sym__Atomic] = ACTIONS(1957), - [anon_sym_unsigned] = ACTIONS(1957), - [anon_sym_long] = ACTIONS(1957), - [anon_sym_short] = ACTIONS(1957), - [sym_primitive_type] = ACTIONS(1957), - [anon_sym_enum] = ACTIONS(1957), - [anon_sym_struct] = ACTIONS(1957), - [anon_sym_union] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_switch] = ACTIONS(1957), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_goto] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1957), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_sizeof] = ACTIONS(1957), - [sym_number_literal] = ACTIONS(1955), - [anon_sym_SQUOTE] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym_true] = ACTIONS(1957), - [sym_false] = ACTIONS(1957), - [sym_null] = ACTIONS(1957), - [sym_identifier] = ACTIONS(1957), - [sym_comment] = ACTIONS(85), + [412] = { + [ts_builtin_sym_end] = ACTIONS(1807), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1809), + [sym_preproc_directive] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_typedef] = ACTIONS(1809), + [anon_sym_extern] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_static] = ACTIONS(1809), + [anon_sym_auto] = ACTIONS(1809), + [anon_sym_register] = ACTIONS(1809), + [anon_sym_inline] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_restrict] = ACTIONS(1809), + [anon_sym_volatile] = ACTIONS(1809), + [anon_sym__Atomic] = ACTIONS(1809), + [anon_sym_unsigned] = ACTIONS(1809), + [anon_sym_long] = ACTIONS(1809), + [anon_sym_short] = ACTIONS(1809), + [sym_primitive_type] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_switch] = ACTIONS(1809), + [anon_sym_case] = ACTIONS(1809), + [anon_sym_default] = ACTIONS(1809), + [anon_sym_while] = ACTIONS(1809), + [anon_sym_do] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_TILDE] = ACTIONS(1807), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_sizeof] = ACTIONS(1809), + [sym_number_literal] = ACTIONS(1807), + [anon_sym_SQUOTE] = ACTIONS(1807), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_null] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1809), + [sym_comment] = ACTIONS(81), }, - [455] = { - [sym_type_qualifier] = STATE(717), - [sym__expression] = STATE(716), - [sym_conditional_expression] = STATE(716), - [sym_assignment_expression] = STATE(716), - [sym_pointer_expression] = STATE(716), - [sym_logical_expression] = STATE(716), - [sym_bitwise_expression] = STATE(716), - [sym_equality_expression] = STATE(716), - [sym_relational_expression] = STATE(716), - [sym_shift_expression] = STATE(716), - [sym_math_expression] = STATE(716), - [sym_cast_expression] = STATE(716), - [sym_sizeof_expression] = STATE(716), - [sym_subscript_expression] = STATE(716), - [sym_call_expression] = STATE(716), - [sym_field_expression] = STATE(716), - [sym_compound_literal_expression] = STATE(716), - [sym_parenthesized_expression] = STATE(716), - [sym_char_literal] = STATE(716), - [sym_concatenated_string] = STATE(716), - [sym_string_literal] = STATE(369), - [aux_sym_type_definition_repeat1] = STATE(717), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1961), + [413] = { + [sym_type_qualifier] = STATE(663), + [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(324), + [aux_sym_type_definition_repeat1] = STATE(663), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_RBRACK] = ACTIONS(1813), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(1963), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1965), - [sym_false] = ACTIONS(1965), - [sym_null] = ACTIONS(1965), - [sym_identifier] = ACTIONS(1965), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(1815), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1817), + [sym_false] = ACTIONS(1817), + [sym_null] = ACTIONS(1817), + [sym_identifier] = ACTIONS(1817), + [sym_comment] = ACTIONS(81), }, - [456] = { - [anon_sym_RPAREN] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_LPAREN2] = ACTIONS(1967), - [anon_sym_LBRACK] = ACTIONS(1967), - [sym_comment] = ACTIONS(85), + [414] = { + [anon_sym_RPAREN] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_LPAREN2] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1819), + [sym_comment] = ACTIONS(81), }, - [457] = { - [sym_parameter_list] = STATE(456), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1125), - [sym_comment] = ACTIONS(85), + [415] = { + [sym_parameter_list] = STATE(414), + [anon_sym_SEMI] = ACTIONS(1821), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1031), + [sym_comment] = ACTIONS(81), }, - [458] = { - [ts_builtin_sym_end] = ACTIONS(1971), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1973), - [sym_preproc_directive] = ACTIONS(1973), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_typedef] = ACTIONS(1973), - [anon_sym_extern] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1973), - [anon_sym_auto] = ACTIONS(1973), - [anon_sym_register] = ACTIONS(1973), - [anon_sym_inline] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1973), - [anon_sym_restrict] = ACTIONS(1973), - [anon_sym_volatile] = ACTIONS(1973), - [anon_sym__Atomic] = ACTIONS(1973), - [anon_sym_unsigned] = ACTIONS(1973), - [anon_sym_long] = ACTIONS(1973), - [anon_sym_short] = ACTIONS(1973), - [sym_primitive_type] = ACTIONS(1973), - [anon_sym_enum] = ACTIONS(1973), - [anon_sym_struct] = ACTIONS(1973), - [anon_sym_union] = ACTIONS(1973), - [anon_sym_if] = ACTIONS(1973), - [anon_sym_switch] = ACTIONS(1973), - [anon_sym_case] = ACTIONS(1973), - [anon_sym_default] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1973), - [anon_sym_do] = ACTIONS(1973), - [anon_sym_for] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1973), - [anon_sym_break] = ACTIONS(1973), - [anon_sym_continue] = ACTIONS(1973), - [anon_sym_goto] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_sizeof] = ACTIONS(1973), - [sym_number_literal] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_null] = ACTIONS(1973), - [sym_identifier] = ACTIONS(1973), - [sym_comment] = ACTIONS(85), + [416] = { + [ts_builtin_sym_end] = ACTIONS(1823), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1825), + [sym_preproc_directive] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_typedef] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_LPAREN2] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_auto] = ACTIONS(1825), + [anon_sym_register] = ACTIONS(1825), + [anon_sym_inline] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_restrict] = ACTIONS(1825), + [anon_sym_volatile] = ACTIONS(1825), + [anon_sym__Atomic] = ACTIONS(1825), + [anon_sym_unsigned] = ACTIONS(1825), + [anon_sym_long] = ACTIONS(1825), + [anon_sym_short] = ACTIONS(1825), + [sym_primitive_type] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_switch] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_do] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_goto] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DASH_DASH] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1823), + [anon_sym_sizeof] = ACTIONS(1825), + [sym_number_literal] = ACTIONS(1823), + [anon_sym_SQUOTE] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [sym_true] = ACTIONS(1825), + [sym_false] = ACTIONS(1825), + [sym_null] = ACTIONS(1825), + [sym_identifier] = ACTIONS(1825), + [sym_comment] = ACTIONS(81), }, - [459] = { - [sym_preproc_include] = STATE(720), - [sym_preproc_def] = STATE(720), - [sym_preproc_function_def] = STATE(720), - [sym_preproc_call] = STATE(720), - [sym_preproc_if] = STATE(720), - [sym_preproc_ifdef] = STATE(720), - [sym_function_definition] = STATE(720), - [sym_declaration] = STATE(720), - [sym_type_definition] = STATE(720), - [sym__declaration_specifiers] = STATE(37), - [sym_linkage_specification] = STATE(720), - [sym_compound_statement] = STATE(720), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(720), - [sym_expression_statement] = STATE(720), - [sym_if_statement] = STATE(720), - [sym_switch_statement] = STATE(720), - [sym_case_statement] = STATE(720), - [sym_while_statement] = STATE(720), - [sym_do_statement] = STATE(720), - [sym_for_statement] = STATE(720), - [sym_return_statement] = STATE(720), - [sym_break_statement] = STATE(720), - [sym_continue_statement] = STATE(720), - [sym_goto_statement] = STATE(720), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(720), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(720), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), + [417] = { + [sym_preproc_include] = STATE(666), + [sym_preproc_def] = STATE(666), + [sym_preproc_function_def] = STATE(666), + [sym_preproc_call] = STATE(666), + [sym_preproc_if] = STATE(666), + [sym_preproc_ifdef] = STATE(666), + [sym_function_definition] = STATE(666), + [sym_declaration] = STATE(666), + [sym_type_definition] = STATE(666), + [sym__declaration_specifiers] = STATE(35), + [sym_linkage_specification] = STATE(666), + [sym_compound_statement] = STATE(666), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(666), + [sym_expression_statement] = STATE(666), + [sym_if_statement] = STATE(666), + [sym_switch_statement] = STATE(666), + [sym_while_statement] = STATE(666), + [sym_do_statement] = STATE(666), + [sym_for_statement] = STATE(666), + [sym_return_statement] = STATE(666), + [sym_break_statement] = STATE(666), + [sym_continue_statement] = STATE(666), + [sym_goto_statement] = STATE(666), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(666), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(666), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), @@ -22127,7 +20214,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_RBRACE] = ACTIONS(1827), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -22145,41 +20232,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(133), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(123), + [sym_comment] = ACTIONS(81), }, - [460] = { - [sym_storage_class_specifier] = STATE(721), - [sym_type_qualifier] = STATE(721), - [aux_sym__declaration_specifiers_repeat1] = STATE(721), + [418] = { + [sym_storage_class_specifier] = STATE(667), + [sym_type_qualifier] = STATE(667), + [aux_sym__declaration_specifiers_repeat1] = STATE(667), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(657), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -22188,16 +20273,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(751), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(659), + [sym_comment] = ACTIONS(81), }, - [461] = { - [sym_storage_class_specifier] = STATE(722), - [sym_type_qualifier] = STATE(722), - [aux_sym__declaration_specifiers_repeat1] = STATE(722), + [419] = { + [sym_storage_class_specifier] = STATE(668), + [sym_type_qualifier] = STATE(668), + [aux_sym__declaration_specifiers_repeat1] = STATE(668), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(657), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -22206,161 +20291,158 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(751), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(659), + [sym_comment] = ACTIONS(81), }, - [462] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(462), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(1977), - [anon_sym_long] = ACTIONS(1977), - [anon_sym_short] = ACTIONS(1977), - [sym_primitive_type] = ACTIONS(980), - [sym_identifier] = ACTIONS(980), - [sym_comment] = ACTIONS(85), + [420] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(420), + [anon_sym_extern] = ACTIONS(896), + [anon_sym_LPAREN2] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_static] = ACTIONS(896), + [anon_sym_auto] = ACTIONS(896), + [anon_sym_register] = ACTIONS(896), + [anon_sym_inline] = ACTIONS(896), + [anon_sym_const] = ACTIONS(896), + [anon_sym_restrict] = ACTIONS(896), + [anon_sym_volatile] = ACTIONS(896), + [anon_sym__Atomic] = ACTIONS(896), + [anon_sym_unsigned] = ACTIONS(1829), + [anon_sym_long] = ACTIONS(1829), + [anon_sym_short] = ACTIONS(1829), + [sym_primitive_type] = ACTIONS(896), + [sym_identifier] = ACTIONS(896), + [sym_comment] = ACTIONS(81), }, - [463] = { - [sym_preproc_arg] = ACTIONS(1980), - [sym_comment] = ACTIONS(95), + [421] = { + [sym_preproc_arg] = ACTIONS(1832), + [sym_comment] = ACTIONS(91), }, - [464] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1982), - [sym_preproc_directive] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_typedef] = ACTIONS(1982), - [anon_sym_extern] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1984), - [anon_sym_RBRACE] = ACTIONS(1984), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1982), - [anon_sym_auto] = ACTIONS(1982), - [anon_sym_register] = ACTIONS(1982), - [anon_sym_inline] = ACTIONS(1982), - [anon_sym_const] = ACTIONS(1982), - [anon_sym_restrict] = ACTIONS(1982), - [anon_sym_volatile] = ACTIONS(1982), - [anon_sym__Atomic] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [sym_primitive_type] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1982), - [anon_sym_struct] = ACTIONS(1982), - [anon_sym_union] = ACTIONS(1982), - [anon_sym_if] = ACTIONS(1982), - [anon_sym_switch] = ACTIONS(1982), - [anon_sym_case] = ACTIONS(1982), - [anon_sym_default] = ACTIONS(1982), - [anon_sym_while] = ACTIONS(1982), - [anon_sym_do] = ACTIONS(1982), - [anon_sym_for] = ACTIONS(1982), - [anon_sym_return] = ACTIONS(1982), - [anon_sym_break] = ACTIONS(1982), - [anon_sym_continue] = ACTIONS(1982), - [anon_sym_goto] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_TILDE] = ACTIONS(1984), - [anon_sym_PLUS] = ACTIONS(1982), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1982), - [sym_number_literal] = ACTIONS(1984), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1984), - [sym_true] = ACTIONS(1982), - [sym_false] = ACTIONS(1982), - [sym_null] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1982), - [sym_comment] = ACTIONS(85), + [422] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1834), + [sym_preproc_directive] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_typedef] = ACTIONS(1834), + [anon_sym_extern] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_RBRACE] = ACTIONS(1836), + [anon_sym_LPAREN2] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_static] = ACTIONS(1834), + [anon_sym_auto] = ACTIONS(1834), + [anon_sym_register] = ACTIONS(1834), + [anon_sym_inline] = ACTIONS(1834), + [anon_sym_const] = ACTIONS(1834), + [anon_sym_restrict] = ACTIONS(1834), + [anon_sym_volatile] = ACTIONS(1834), + [anon_sym__Atomic] = ACTIONS(1834), + [anon_sym_unsigned] = ACTIONS(1834), + [anon_sym_long] = ACTIONS(1834), + [anon_sym_short] = ACTIONS(1834), + [sym_primitive_type] = ACTIONS(1834), + [anon_sym_enum] = ACTIONS(1834), + [anon_sym_struct] = ACTIONS(1834), + [anon_sym_union] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_switch] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [anon_sym_do] = ACTIONS(1834), + [anon_sym_for] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_break] = ACTIONS(1834), + [anon_sym_continue] = ACTIONS(1834), + [anon_sym_goto] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1836), + [anon_sym_TILDE] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_DASH_DASH] = ACTIONS(1836), + [anon_sym_PLUS_PLUS] = ACTIONS(1836), + [anon_sym_sizeof] = ACTIONS(1834), + [sym_number_literal] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_DQUOTE] = ACTIONS(1836), + [sym_true] = ACTIONS(1834), + [sym_false] = ACTIONS(1834), + [sym_null] = ACTIONS(1834), + [sym_identifier] = ACTIONS(1834), + [sym_comment] = ACTIONS(81), }, - [465] = { - [sym_identifier] = ACTIONS(1986), - [sym_comment] = ACTIONS(85), + [423] = { + [sym_identifier] = ACTIONS(1838), + [sym_comment] = ACTIONS(81), }, - [466] = { - [sym_preproc_include] = STATE(728), - [sym_preproc_def] = STATE(728), - [sym_preproc_function_def] = STATE(728), - [sym_preproc_call] = STATE(728), - [sym_preproc_if_in_compound_statement] = STATE(728), - [sym_preproc_ifdef_in_compound_statement] = STATE(728), - [sym_declaration] = STATE(728), - [sym_type_definition] = STATE(728), - [sym__declaration_specifiers] = STATE(727), - [sym_compound_statement] = STATE(728), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [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(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(728), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(728), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1015), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1017), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1990), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1992), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1992), - [sym_preproc_directive] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_typedef] = ACTIONS(1029), + [424] = { + [sym_preproc_include] = STATE(674), + [sym_preproc_def] = STATE(674), + [sym_preproc_function_def] = STATE(674), + [sym_preproc_call] = STATE(674), + [sym_preproc_if_in_compound_statement] = STATE(674), + [sym_preproc_ifdef_in_compound_statement] = STATE(674), + [sym_declaration] = STATE(674), + [sym_type_definition] = STATE(674), + [sym__declaration_specifiers] = STATE(673), + [sym_compound_statement] = STATE(674), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(674), + [sym_expression_statement] = STATE(674), + [sym_if_statement] = STATE(674), + [sym_switch_statement] = STATE(674), + [sym_while_statement] = STATE(674), + [sym_do_statement] = STATE(674), + [sym_for_statement] = STATE(674), + [sym_return_statement] = STATE(674), + [sym_break_statement] = STATE(674), + [sym_continue_statement] = STATE(674), + [sym_goto_statement] = STATE(674), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [sym__empty_declaration] = STATE(674), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(674), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(931), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(933), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1840), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1842), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_typedef] = ACTIONS(945), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -22378,125 +20460,122 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(1061), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(973), + [sym_comment] = ACTIONS(81), }, - [467] = { - [sym_preproc_arg] = ACTIONS(1994), - [sym_comment] = ACTIONS(95), + [425] = { + [sym_preproc_arg] = ACTIONS(1846), + [sym_comment] = ACTIONS(91), }, - [468] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1996), - [sym_comment] = ACTIONS(85), + [426] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1848), + [sym_comment] = ACTIONS(81), }, - [469] = { - [sym__declarator] = STATE(731), - [sym_pointer_declarator] = STATE(731), - [sym_function_declarator] = STATE(731), - [sym_array_declarator] = STATE(731), - [sym_init_declarator] = STATE(444), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(471), - [sym_identifier] = ACTIONS(1998), - [sym_comment] = ACTIONS(85), + [427] = { + [sym__declarator] = STATE(677), + [sym_pointer_declarator] = STATE(677), + [sym_function_declarator] = STATE(677), + [sym_array_declarator] = STATE(677), + [sym_init_declarator] = STATE(402), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(427), + [sym_identifier] = ACTIONS(1850), + [sym_comment] = ACTIONS(81), }, - [470] = { - [sym_preproc_include] = STATE(733), - [sym_preproc_def] = STATE(733), - [sym_preproc_function_def] = STATE(733), - [sym_preproc_call] = STATE(733), - [sym_preproc_if_in_compound_statement] = STATE(733), - [sym_preproc_ifdef_in_compound_statement] = STATE(733), - [sym_preproc_else_in_compound_statement] = STATE(732), - [sym_preproc_elif_in_compound_statement] = STATE(732), - [sym_declaration] = STATE(733), - [sym_type_definition] = STATE(733), - [sym__declaration_specifiers] = STATE(469), - [sym_compound_statement] = STATE(733), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(733), - [sym_expression_statement] = STATE(733), - [sym_if_statement] = STATE(733), - [sym_switch_statement] = STATE(733), - [sym_case_statement] = STATE(733), - [sym_while_statement] = STATE(733), - [sym_do_statement] = STATE(733), - [sym_for_statement] = STATE(733), - [sym_return_statement] = STATE(733), - [sym_break_statement] = STATE(733), - [sym_continue_statement] = STATE(733), - [sym_goto_statement] = STATE(733), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(733), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(733), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2000), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), + [428] = { + [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(679), + [sym_preproc_ifdef_in_compound_statement] = STATE(679), + [sym_preproc_else_in_compound_statement] = STATE(678), + [sym_preproc_elif_in_compound_statement] = STATE(678), + [sym_declaration] = STATE(679), + [sym_type_definition] = STATE(679), + [sym__declaration_specifiers] = STATE(427), + [sym_compound_statement] = STATE(679), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(679), + [sym_expression_statement] = STATE(679), + [sym_if_statement] = STATE(679), + [sym_switch_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(679), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(679), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1051), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1059), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -22514,166 +20593,161 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), - }, - [471] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2002), - [sym_preproc_directive] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_typedef] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_RBRACE] = ACTIONS(2004), - [anon_sym_LPAREN2] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2002), - [anon_sym_auto] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2002), - [anon_sym_inline] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_restrict] = ACTIONS(2002), - [anon_sym_volatile] = ACTIONS(2002), - [anon_sym__Atomic] = ACTIONS(2002), - [anon_sym_unsigned] = ACTIONS(2002), - [anon_sym_long] = ACTIONS(2002), - [anon_sym_short] = ACTIONS(2002), - [sym_primitive_type] = ACTIONS(2002), - [anon_sym_enum] = ACTIONS(2002), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_switch] = ACTIONS(2002), - [anon_sym_case] = ACTIONS(2002), - [anon_sym_default] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_do] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_goto] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2004), - [anon_sym_PLUS_PLUS] = ACTIONS(2004), - [anon_sym_sizeof] = ACTIONS(2002), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_DQUOTE] = ACTIONS(2004), - [sym_true] = ACTIONS(2002), - [sym_false] = ACTIONS(2002), - [sym_null] = ACTIONS(2002), - [sym_identifier] = ACTIONS(2002), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [472] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2006), - [sym_comment] = ACTIONS(85), + [429] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1854), + [sym_preproc_directive] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_typedef] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_LPAREN2] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_auto] = ACTIONS(1854), + [anon_sym_register] = ACTIONS(1854), + [anon_sym_inline] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_restrict] = ACTIONS(1854), + [anon_sym_volatile] = ACTIONS(1854), + [anon_sym__Atomic] = ACTIONS(1854), + [anon_sym_unsigned] = ACTIONS(1854), + [anon_sym_long] = ACTIONS(1854), + [anon_sym_short] = ACTIONS(1854), + [sym_primitive_type] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [anon_sym_struct] = ACTIONS(1854), + [anon_sym_union] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_switch] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_goto] = ACTIONS(1854), + [anon_sym_AMP] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(1856), + [anon_sym_TILDE] = ACTIONS(1856), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_DASH_DASH] = ACTIONS(1856), + [anon_sym_PLUS_PLUS] = ACTIONS(1856), + [anon_sym_sizeof] = ACTIONS(1854), + [sym_number_literal] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(1856), + [sym_true] = ACTIONS(1854), + [sym_false] = ACTIONS(1854), + [sym_null] = ACTIONS(1854), + [sym_identifier] = ACTIONS(1854), + [sym_comment] = ACTIONS(81), }, - [473] = { - [sym_preproc_include] = STATE(733), - [sym_preproc_def] = STATE(733), - [sym_preproc_function_def] = STATE(733), - [sym_preproc_call] = STATE(733), - [sym_preproc_if_in_compound_statement] = STATE(733), - [sym_preproc_ifdef_in_compound_statement] = STATE(733), - [sym_preproc_else_in_compound_statement] = STATE(735), - [sym_preproc_elif_in_compound_statement] = STATE(735), - [sym_declaration] = STATE(733), - [sym_type_definition] = STATE(733), - [sym__declaration_specifiers] = STATE(469), - [sym_compound_statement] = STATE(733), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(733), - [sym_expression_statement] = STATE(733), - [sym_if_statement] = STATE(733), - [sym_switch_statement] = STATE(733), - [sym_case_statement] = STATE(733), - [sym_while_statement] = STATE(733), - [sym_do_statement] = STATE(733), - [sym_for_statement] = STATE(733), - [sym_return_statement] = STATE(733), - [sym_break_statement] = STATE(733), - [sym_continue_statement] = STATE(733), - [sym_goto_statement] = STATE(733), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(733), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(733), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2008), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), + [430] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1858), + [sym_comment] = ACTIONS(81), + }, + [431] = { + [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(679), + [sym_preproc_ifdef_in_compound_statement] = STATE(679), + [sym_preproc_else_in_compound_statement] = STATE(681), + [sym_preproc_elif_in_compound_statement] = STATE(681), + [sym_declaration] = STATE(679), + [sym_type_definition] = STATE(679), + [sym__declaration_specifiers] = STATE(427), + [sym_compound_statement] = STATE(679), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(679), + [sym_expression_statement] = STATE(679), + [sym_if_statement] = STATE(679), + [sym_switch_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(679), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(679), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1051), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1059), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -22691,584 +20765,382 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), - }, - [474] = { - [sym_parenthesized_expression] = STATE(736), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), - }, - [475] = { - [sym_parenthesized_expression] = STATE(737), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), - }, - [476] = { - [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(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(2010), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2012), - [sym_false] = ACTIONS(2012), - [sym_null] = ACTIONS(2012), - [sym_identifier] = ACTIONS(2012), - [sym_comment] = ACTIONS(85), - }, - [477] = { - [anon_sym_COLON] = ACTIONS(2014), - [sym_comment] = ACTIONS(85), - }, - [478] = { - [sym_parenthesized_expression] = STATE(740), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [479] = { - [anon_sym_LPAREN2] = ACTIONS(2016), - [sym_comment] = ACTIONS(85), + [432] = { + [sym_parenthesized_expression] = STATE(682), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [480] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(2018), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_comment] = ACTIONS(85), + [433] = { + [sym_parenthesized_expression] = STATE(683), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [481] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_else] = ACTIONS(2020), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [sym_null] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1454), - [sym_comment] = ACTIONS(85), + [434] = { + [anon_sym_LPAREN2] = ACTIONS(1862), + [sym_comment] = ACTIONS(81), }, - [482] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(469), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_comment] = ACTIONS(85), + [435] = { + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(1864), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_comment] = ACTIONS(81), }, - [483] = { - [sym_declaration] = STATE(551), - [sym_type_definition] = STATE(551), - [sym__declaration_specifiers] = STATE(306), - [sym_compound_statement] = STATE(551), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [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(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(85), + [436] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1866), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_null] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1338), + [sym_comment] = ACTIONS(81), }, - [484] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(469), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), + [437] = { + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_comment] = ACTIONS(81), }, - [485] = { - [sym__expression] = STATE(745), - [sym_conditional_expression] = STATE(745), - [sym_assignment_expression] = STATE(745), - [sym_pointer_expression] = STATE(745), - [sym_logical_expression] = STATE(745), - [sym_bitwise_expression] = STATE(745), - [sym_equality_expression] = STATE(745), - [sym_relational_expression] = STATE(745), - [sym_shift_expression] = STATE(745), - [sym_math_expression] = STATE(745), - [sym_cast_expression] = STATE(745), - [sym_sizeof_expression] = STATE(745), - [sym_subscript_expression] = STATE(745), - [sym_call_expression] = STATE(745), - [sym_field_expression] = STATE(745), - [sym_compound_literal_expression] = STATE(745), - [sym_parenthesized_expression] = STATE(745), - [sym_char_literal] = STATE(745), - [sym_concatenated_string] = STATE(745), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(2022), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2024), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_identifier] = ACTIONS(2026), - [sym_comment] = ACTIONS(85), + [438] = { + [sym__expression] = STATE(688), + [sym_conditional_expression] = STATE(688), + [sym_assignment_expression] = STATE(688), + [sym_pointer_expression] = STATE(688), + [sym_logical_expression] = STATE(688), + [sym_bitwise_expression] = STATE(688), + [sym_equality_expression] = STATE(688), + [sym_relational_expression] = STATE(688), + [sym_shift_expression] = STATE(688), + [sym_math_expression] = STATE(688), + [sym_cast_expression] = STATE(688), + [sym_sizeof_expression] = STATE(688), + [sym_subscript_expression] = STATE(688), + [sym_call_expression] = STATE(688), + [sym_field_expression] = STATE(688), + [sym_compound_literal_expression] = STATE(688), + [sym_parenthesized_expression] = STATE(688), + [sym_char_literal] = STATE(688), + [sym_concatenated_string] = STATE(688), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [sym_null] = ACTIONS(1872), + [sym_identifier] = ACTIONS(1872), + [sym_comment] = ACTIONS(81), }, - [486] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [439] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [487] = { - [sym__declarator] = STATE(598), - [sym_pointer_declarator] = STATE(598), - [sym_function_declarator] = STATE(598), - [sym_array_declarator] = STATE(598), - [sym_type_qualifier] = STATE(599), - [aux_sym_type_definition_repeat1] = STATE(599), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(471), + [440] = { + [sym__declarator] = STATE(536), + [sym_pointer_declarator] = STATE(536), + [sym_function_declarator] = STATE(536), + [sym_array_declarator] = STATE(536), + [sym_type_qualifier] = STATE(537), + [aux_sym_type_definition_repeat1] = STATE(537), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(427), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1629), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(1467), + [sym_comment] = ACTIONS(81), }, - [488] = { - [sym__expression] = STATE(518), - [sym_conditional_expression] = STATE(518), - [sym_assignment_expression] = STATE(518), - [sym_pointer_expression] = STATE(518), - [sym_logical_expression] = STATE(518), - [sym_bitwise_expression] = STATE(518), - [sym_equality_expression] = STATE(518), - [sym_relational_expression] = STATE(518), - [sym_shift_expression] = STATE(518), - [sym_math_expression] = STATE(518), - [sym_cast_expression] = STATE(518), - [sym_sizeof_expression] = STATE(518), - [sym_subscript_expression] = STATE(518), - [sym_call_expression] = STATE(518), - [sym_field_expression] = STATE(518), - [sym_compound_literal_expression] = STATE(518), - [sym_parenthesized_expression] = STATE(518), - [sym_initializer_list] = STATE(519), - [sym_char_literal] = STATE(518), - [sym_concatenated_string] = STATE(518), - [sym_string_literal] = STATE(80), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1387), - [sym_comment] = ACTIONS(85), + [441] = { + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_pointer_expression] = STATE(471), + [sym_logical_expression] = STATE(471), + [sym_bitwise_expression] = STATE(471), + [sym_equality_expression] = STATE(471), + [sym_relational_expression] = STATE(471), + [sym_shift_expression] = STATE(471), + [sym_math_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(471), + [sym_call_expression] = STATE(471), + [sym_field_expression] = STATE(471), + [sym_compound_literal_expression] = STATE(471), + [sym_parenthesized_expression] = STATE(471), + [sym_initializer_list] = STATE(472), + [sym_char_literal] = STATE(471), + [sym_concatenated_string] = STATE(471), + [sym_string_literal] = STATE(75), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [sym_null] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1277), + [sym_comment] = ACTIONS(81), }, - [489] = { - [anon_sym_RPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(85), + [442] = { + [anon_sym_RPAREN] = ACTIONS(1876), + [sym_comment] = ACTIONS(81), }, - [490] = { - [aux_sym_parameter_list_repeat1] = STATE(750), - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_RPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(85), + [443] = { + [aux_sym_parameter_list_repeat1] = STATE(693), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_RPAREN] = ACTIONS(1880), + [sym_comment] = ACTIONS(81), }, - [491] = { - [anon_sym_COMMA] = ACTIONS(2036), - [anon_sym_RPAREN] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_LPAREN2] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_EQ] = ACTIONS(2036), - [anon_sym_COLON] = ACTIONS(2036), - [sym_comment] = ACTIONS(85), + [444] = { + [anon_sym_COMMA] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_LPAREN2] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1882), + [anon_sym_COLON] = ACTIONS(1882), + [sym_comment] = ACTIONS(81), }, - [492] = { - [sym__declarator] = STATE(753), - [sym__abstract_declarator] = STATE(754), - [sym_pointer_declarator] = STATE(753), - [sym_abstract_pointer_declarator] = STATE(754), - [sym_function_declarator] = STATE(753), - [sym_abstract_function_declarator] = STATE(754), - [sym_array_declarator] = STATE(753), - [sym_abstract_array_declarator] = STATE(754), - [sym_parameter_list] = STATE(241), - [anon_sym_COMMA] = ACTIONS(2038), - [anon_sym_RPAREN] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(489), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(85), + [445] = { + [sym__declarator] = STATE(696), + [sym__abstract_declarator] = STATE(697), + [sym_pointer_declarator] = STATE(696), + [sym_abstract_pointer_declarator] = STATE(697), + [sym_function_declarator] = STATE(696), + [sym_abstract_function_declarator] = STATE(697), + [sym_array_declarator] = STATE(696), + [sym_abstract_array_declarator] = STATE(697), + [sym_parameter_list] = STATE(220), + [anon_sym_COMMA] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1884), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(445), + [sym_identifier] = ACTIONS(1890), + [sym_comment] = ACTIONS(81), }, - [493] = { - [sym_parameter_list] = STATE(504), - [anon_sym_RPAREN] = ACTIONS(2046), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1327), - [sym_comment] = ACTIONS(85), + [446] = { + [sym_parameter_list] = STATE(457), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1217), + [sym_comment] = ACTIONS(81), }, - [494] = { - [sym_storage_class_specifier] = STATE(756), - [sym_type_qualifier] = STATE(756), - [aux_sym__declaration_specifiers_repeat1] = STATE(756), - [anon_sym_COMMA] = ACTIONS(299), - [anon_sym_RPAREN] = ACTIONS(299), + [447] = { + [sym_storage_class_specifier] = STATE(699), + [sym_type_qualifier] = STATE(699), + [aux_sym__declaration_specifiers_repeat1] = STATE(699), + [anon_sym_COMMA] = ACTIONS(265), + [anon_sym_RPAREN] = ACTIONS(265), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(299), - [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_LPAREN2] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(265), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -23277,20 +21149,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(301), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(267), + [sym_comment] = ACTIONS(81), }, - [495] = { - [sym_storage_class_specifier] = STATE(165), - [sym_type_qualifier] = STATE(165), - [sym__type_specifier] = STATE(757), - [sym_sized_type_specifier] = STATE(757), - [sym_enum_specifier] = STATE(757), - [sym_struct_specifier] = STATE(757), - [sym_union_specifier] = STATE(757), - [sym_macro_type_specifier] = STATE(757), - [aux_sym__declaration_specifiers_repeat1] = STATE(165), - [aux_sym_sized_type_specifier_repeat1] = STATE(496), + [448] = { + [sym_storage_class_specifier] = STATE(149), + [sym_type_qualifier] = STATE(149), + [sym__type_specifier] = STATE(700), + [sym_sized_type_specifier] = STATE(700), + [sym_enum_specifier] = STATE(700), + [sym_struct_specifier] = STATE(700), + [sym_union_specifier] = STATE(700), + [sym_macro_type_specifier] = STATE(700), + [aux_sym__declaration_specifiers_repeat1] = STATE(149), + [aux_sym_sized_type_specifier_repeat1] = STATE(449), [anon_sym_extern] = ACTIONS(29), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), @@ -23300,1047 +21172,1047 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(1309), - [anon_sym_long] = ACTIONS(1309), - [anon_sym_short] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(2048), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1894), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [496] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(758), - [anon_sym_COMMA] = ACTIONS(347), - [anon_sym_RPAREN] = ACTIONS(347), - [anon_sym_extern] = ACTIONS(349), - [anon_sym_LPAREN2] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_static] = ACTIONS(349), - [anon_sym_auto] = ACTIONS(349), - [anon_sym_register] = ACTIONS(349), - [anon_sym_inline] = ACTIONS(349), - [anon_sym_const] = ACTIONS(349), - [anon_sym_restrict] = ACTIONS(349), - [anon_sym_volatile] = ACTIONS(349), - [anon_sym__Atomic] = ACTIONS(349), - [anon_sym_unsigned] = ACTIONS(2050), - [anon_sym_long] = ACTIONS(2050), - [anon_sym_short] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(353), - [sym_identifier] = ACTIONS(355), - [sym_comment] = ACTIONS(85), + [449] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(701), + [anon_sym_COMMA] = ACTIONS(313), + [anon_sym_RPAREN] = ACTIONS(313), + [anon_sym_extern] = ACTIONS(315), + [anon_sym_LPAREN2] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_static] = ACTIONS(315), + [anon_sym_auto] = ACTIONS(315), + [anon_sym_register] = ACTIONS(315), + [anon_sym_inline] = ACTIONS(315), + [anon_sym_const] = ACTIONS(315), + [anon_sym_restrict] = ACTIONS(315), + [anon_sym_volatile] = ACTIONS(315), + [anon_sym__Atomic] = ACTIONS(315), + [anon_sym_unsigned] = ACTIONS(1896), + [anon_sym_long] = ACTIONS(1896), + [anon_sym_short] = ACTIONS(1896), + [sym_primitive_type] = ACTIONS(319), + [sym_identifier] = ACTIONS(321), + [sym_comment] = ACTIONS(81), }, - [497] = { - [sym_parameter_list] = STATE(504), - [anon_sym_COMMA] = ACTIONS(2052), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1327), - [sym_comment] = ACTIONS(85), + [450] = { + [sym_parameter_list] = STATE(457), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1217), + [sym_comment] = ACTIONS(81), }, - [498] = { - [sym__abstract_declarator] = STATE(759), - [sym_abstract_pointer_declarator] = STATE(759), - [sym_abstract_function_declarator] = STATE(759), - [sym_abstract_array_declarator] = STATE(759), - [sym_type_qualifier] = STATE(760), - [sym_parameter_list] = STATE(241), - [aux_sym_type_definition_repeat1] = STATE(760), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_LPAREN2] = ACTIONS(485), - [anon_sym_STAR] = ACTIONS(487), - [anon_sym_LBRACK] = ACTIONS(489), - [anon_sym_const] = ACTIONS(1315), - [anon_sym_restrict] = ACTIONS(1315), - [anon_sym_volatile] = ACTIONS(1315), - [anon_sym__Atomic] = ACTIONS(1315), - [sym_comment] = ACTIONS(85), + [451] = { + [sym__abstract_declarator] = STATE(702), + [sym_abstract_pointer_declarator] = STATE(702), + [sym_abstract_function_declarator] = STATE(702), + [sym_abstract_array_declarator] = STATE(702), + [sym_type_qualifier] = STATE(703), + [sym_parameter_list] = STATE(220), + [aux_sym_type_definition_repeat1] = STATE(703), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_LPAREN2] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(443), + [anon_sym_LBRACK] = ACTIONS(445), + [anon_sym_const] = ACTIONS(1205), + [anon_sym_restrict] = ACTIONS(1205), + [anon_sym_volatile] = ACTIONS(1205), + [anon_sym__Atomic] = ACTIONS(1205), + [sym_comment] = ACTIONS(81), }, - [499] = { - [sym__expression] = STATE(83), - [sym_conditional_expression] = STATE(83), - [sym_assignment_expression] = STATE(83), - [sym_pointer_expression] = STATE(83), - [sym_logical_expression] = STATE(83), - [sym_bitwise_expression] = STATE(83), - [sym_equality_expression] = STATE(83), - [sym_relational_expression] = STATE(83), - [sym_shift_expression] = STATE(83), - [sym_math_expression] = STATE(83), - [sym_cast_expression] = STATE(83), - [sym_sizeof_expression] = STATE(83), - [sym_subscript_expression] = STATE(83), - [sym_call_expression] = STATE(83), - [sym_field_expression] = STATE(83), - [sym_compound_literal_expression] = STATE(83), - [sym_parenthesized_expression] = STATE(83), - [sym_char_literal] = STATE(83), - [sym_concatenated_string] = STATE(83), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(2054), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(85), + [452] = { + [sym__expression] = STATE(78), + [sym_conditional_expression] = STATE(78), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(78), + [sym_call_expression] = STATE(78), + [sym_field_expression] = STATE(78), + [sym_compound_literal_expression] = STATE(78), + [sym_parenthesized_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_concatenated_string] = STATE(78), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(151), + [sym_false] = ACTIONS(151), + [sym_null] = ACTIONS(151), + [sym_identifier] = ACTIONS(151), + [sym_comment] = ACTIONS(81), }, - [500] = { - [anon_sym_COMMA] = ACTIONS(2056), - [anon_sym_RPAREN] = ACTIONS(2056), - [anon_sym_LPAREN2] = ACTIONS(2056), - [anon_sym_LBRACK] = ACTIONS(2056), - [sym_comment] = ACTIONS(85), + [453] = { + [anon_sym_COMMA] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1902), + [anon_sym_LPAREN2] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(1902), + [sym_comment] = ACTIONS(81), }, - [501] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(2054), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1685), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PERCENT_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_CARET_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [454] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(1900), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [502] = { - [sym_type_qualifier] = STATE(764), - [sym__expression] = STATE(763), - [sym_conditional_expression] = STATE(763), - [sym_assignment_expression] = STATE(763), - [sym_pointer_expression] = STATE(763), - [sym_logical_expression] = STATE(763), - [sym_bitwise_expression] = STATE(763), - [sym_equality_expression] = STATE(763), - [sym_relational_expression] = STATE(763), - [sym_shift_expression] = STATE(763), - [sym_math_expression] = STATE(763), - [sym_cast_expression] = STATE(763), - [sym_sizeof_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_call_expression] = STATE(763), - [sym_field_expression] = STATE(763), - [sym_compound_literal_expression] = STATE(763), - [sym_parenthesized_expression] = STATE(763), - [sym_char_literal] = STATE(763), - [sym_concatenated_string] = STATE(763), - [sym_string_literal] = STATE(369), - [aux_sym_type_definition_repeat1] = STATE(764), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(2058), - [anon_sym_RBRACK] = ACTIONS(2054), + [455] = { + [sym_type_qualifier] = STATE(707), + [sym__expression] = STATE(706), + [sym_conditional_expression] = STATE(706), + [sym_assignment_expression] = STATE(706), + [sym_pointer_expression] = STATE(706), + [sym_logical_expression] = STATE(706), + [sym_bitwise_expression] = STATE(706), + [sym_equality_expression] = STATE(706), + [sym_relational_expression] = STATE(706), + [sym_shift_expression] = STATE(706), + [sym_math_expression] = STATE(706), + [sym_cast_expression] = STATE(706), + [sym_sizeof_expression] = STATE(706), + [sym_subscript_expression] = STATE(706), + [sym_call_expression] = STATE(706), + [sym_field_expression] = STATE(706), + [sym_compound_literal_expression] = STATE(706), + [sym_parenthesized_expression] = STATE(706), + [sym_char_literal] = STATE(706), + [sym_concatenated_string] = STATE(706), + [sym_string_literal] = STATE(324), + [aux_sym_type_definition_repeat1] = STATE(707), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(1904), + [anon_sym_RBRACK] = ACTIONS(1900), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2062), - [sym_false] = ACTIONS(2062), - [sym_null] = ACTIONS(2062), - [sym_identifier] = ACTIONS(2062), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(1906), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1908), + [sym_comment] = ACTIONS(81), }, - [503] = { - [sym_type_qualifier] = STATE(765), - [sym__expression] = STATE(763), - [sym_conditional_expression] = STATE(763), - [sym_assignment_expression] = STATE(763), - [sym_pointer_expression] = STATE(763), - [sym_logical_expression] = STATE(763), - [sym_bitwise_expression] = STATE(763), - [sym_equality_expression] = STATE(763), - [sym_relational_expression] = STATE(763), - [sym_shift_expression] = STATE(763), - [sym_math_expression] = STATE(763), - [sym_cast_expression] = STATE(763), - [sym_sizeof_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_call_expression] = STATE(763), - [sym_field_expression] = STATE(763), - [sym_compound_literal_expression] = STATE(763), - [sym_parenthesized_expression] = STATE(763), - [sym_char_literal] = STATE(763), - [sym_concatenated_string] = STATE(763), - [sym_string_literal] = STATE(369), - [aux_sym_type_definition_repeat1] = STATE(765), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(2058), - [anon_sym_RBRACK] = ACTIONS(2054), + [456] = { + [sym_type_qualifier] = STATE(708), + [sym__expression] = STATE(706), + [sym_conditional_expression] = STATE(706), + [sym_assignment_expression] = STATE(706), + [sym_pointer_expression] = STATE(706), + [sym_logical_expression] = STATE(706), + [sym_bitwise_expression] = STATE(706), + [sym_equality_expression] = STATE(706), + [sym_relational_expression] = STATE(706), + [sym_shift_expression] = STATE(706), + [sym_math_expression] = STATE(706), + [sym_cast_expression] = STATE(706), + [sym_sizeof_expression] = STATE(706), + [sym_subscript_expression] = STATE(706), + [sym_call_expression] = STATE(706), + [sym_field_expression] = STATE(706), + [sym_compound_literal_expression] = STATE(706), + [sym_parenthesized_expression] = STATE(706), + [sym_char_literal] = STATE(706), + [sym_concatenated_string] = STATE(706), + [sym_string_literal] = STATE(324), + [aux_sym_type_definition_repeat1] = STATE(708), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(1904), + [anon_sym_RBRACK] = ACTIONS(1900), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2062), - [sym_false] = ACTIONS(2062), - [sym_null] = ACTIONS(2062), - [sym_identifier] = ACTIONS(2062), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(1906), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1908), + [sym_comment] = ACTIONS(81), }, - [504] = { - [anon_sym_COMMA] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_LPAREN2] = ACTIONS(2064), - [anon_sym_LBRACK] = ACTIONS(2064), - [sym_comment] = ACTIONS(85), + [457] = { + [anon_sym_COMMA] = ACTIONS(1910), + [anon_sym_RPAREN] = ACTIONS(1910), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [sym_comment] = ACTIONS(81), }, - [505] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(491), - [anon_sym_RPAREN] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [458] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(447), + [anon_sym_RPAREN] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [506] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_RPAREN] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [459] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [507] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(2066), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [460] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_COLON] = ACTIONS(1912), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_LT_LT_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_AMP_EQ] = ACTIONS(1563), + [anon_sym_CARET_EQ] = ACTIONS(1563), + [anon_sym_PIPE_EQ] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [508] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [461] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [509] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1717), - [anon_sym_STAR_EQ] = ACTIONS(1717), - [anon_sym_SLASH_EQ] = ACTIONS(1717), - [anon_sym_PERCENT_EQ] = ACTIONS(1717), - [anon_sym_PLUS_EQ] = ACTIONS(1717), - [anon_sym_DASH_EQ] = ACTIONS(1717), - [anon_sym_LT_LT_EQ] = ACTIONS(1717), - [anon_sym_GT_GT_EQ] = ACTIONS(1717), - [anon_sym_AMP_EQ] = ACTIONS(1717), - [anon_sym_CARET_EQ] = ACTIONS(1717), - [anon_sym_PIPE_EQ] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [462] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1589), + [anon_sym_RPAREN] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(1589), + [anon_sym_STAR_EQ] = ACTIONS(1589), + [anon_sym_SLASH_EQ] = ACTIONS(1589), + [anon_sym_PERCENT_EQ] = ACTIONS(1589), + [anon_sym_PLUS_EQ] = ACTIONS(1589), + [anon_sym_DASH_EQ] = ACTIONS(1589), + [anon_sym_LT_LT_EQ] = ACTIONS(1589), + [anon_sym_GT_GT_EQ] = ACTIONS(1589), + [anon_sym_AMP_EQ] = ACTIONS(1589), + [anon_sym_CARET_EQ] = ACTIONS(1589), + [anon_sym_PIPE_EQ] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [510] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1717), - [anon_sym_STAR_EQ] = ACTIONS(1717), - [anon_sym_SLASH_EQ] = ACTIONS(1717), - [anon_sym_PERCENT_EQ] = ACTIONS(1717), - [anon_sym_PLUS_EQ] = ACTIONS(1717), - [anon_sym_DASH_EQ] = ACTIONS(1717), - [anon_sym_LT_LT_EQ] = ACTIONS(1717), - [anon_sym_GT_GT_EQ] = ACTIONS(1717), - [anon_sym_AMP_EQ] = ACTIONS(1717), - [anon_sym_CARET_EQ] = ACTIONS(1717), - [anon_sym_PIPE_EQ] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [463] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1589), + [anon_sym_RPAREN] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(1589), + [anon_sym_STAR_EQ] = ACTIONS(1589), + [anon_sym_SLASH_EQ] = ACTIONS(1589), + [anon_sym_PERCENT_EQ] = ACTIONS(1589), + [anon_sym_PLUS_EQ] = ACTIONS(1589), + [anon_sym_DASH_EQ] = ACTIONS(1589), + [anon_sym_LT_LT_EQ] = ACTIONS(1589), + [anon_sym_GT_GT_EQ] = ACTIONS(1589), + [anon_sym_AMP_EQ] = ACTIONS(1589), + [anon_sym_CARET_EQ] = ACTIONS(1589), + [anon_sym_PIPE_EQ] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [511] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [464] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [512] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [465] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1585), + [anon_sym_RPAREN] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [513] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1723), - [anon_sym_QMARK] = ACTIONS(1721), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_PIPE_PIPE] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1721), - [anon_sym_BANG_EQ] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [466] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1595), + [anon_sym_QMARK] = ACTIONS(1593), + [anon_sym_STAR_EQ] = ACTIONS(1593), + [anon_sym_SLASH_EQ] = ACTIONS(1593), + [anon_sym_PERCENT_EQ] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(1593), + [anon_sym_DASH_EQ] = ACTIONS(1593), + [anon_sym_LT_LT_EQ] = ACTIONS(1593), + [anon_sym_GT_GT_EQ] = ACTIONS(1593), + [anon_sym_AMP_EQ] = ACTIONS(1593), + [anon_sym_CARET_EQ] = ACTIONS(1593), + [anon_sym_PIPE_EQ] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_PIPE_PIPE] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1593), + [anon_sym_PIPE] = ACTIONS(1595), + [anon_sym_CARET] = ACTIONS(1595), + [anon_sym_EQ_EQ] = ACTIONS(1593), + [anon_sym_BANG_EQ] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [514] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1725), - [anon_sym_RPAREN] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1727), - [anon_sym_QMARK] = ACTIONS(1725), - [anon_sym_STAR_EQ] = ACTIONS(1725), - [anon_sym_SLASH_EQ] = ACTIONS(1725), - [anon_sym_PERCENT_EQ] = ACTIONS(1725), - [anon_sym_PLUS_EQ] = ACTIONS(1725), - [anon_sym_DASH_EQ] = ACTIONS(1725), - [anon_sym_LT_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_GT_EQ] = ACTIONS(1725), - [anon_sym_AMP_EQ] = ACTIONS(1725), - [anon_sym_CARET_EQ] = ACTIONS(1725), - [anon_sym_PIPE_EQ] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_PIPE_PIPE] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [467] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1599), + [anon_sym_QMARK] = ACTIONS(1597), + [anon_sym_STAR_EQ] = ACTIONS(1597), + [anon_sym_SLASH_EQ] = ACTIONS(1597), + [anon_sym_PERCENT_EQ] = ACTIONS(1597), + [anon_sym_PLUS_EQ] = ACTIONS(1597), + [anon_sym_DASH_EQ] = ACTIONS(1597), + [anon_sym_LT_LT_EQ] = ACTIONS(1597), + [anon_sym_GT_GT_EQ] = ACTIONS(1597), + [anon_sym_AMP_EQ] = ACTIONS(1597), + [anon_sym_CARET_EQ] = ACTIONS(1597), + [anon_sym_PIPE_EQ] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_PIPE_PIPE] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [515] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1729), - [anon_sym_RPAREN] = ACTIONS(1729), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_STAR_EQ] = ACTIONS(1729), - [anon_sym_SLASH_EQ] = ACTIONS(1729), - [anon_sym_PERCENT_EQ] = ACTIONS(1729), - [anon_sym_PLUS_EQ] = ACTIONS(1729), - [anon_sym_DASH_EQ] = ACTIONS(1729), - [anon_sym_LT_LT_EQ] = ACTIONS(1729), - [anon_sym_GT_GT_EQ] = ACTIONS(1729), - [anon_sym_AMP_EQ] = ACTIONS(1729), - [anon_sym_CARET_EQ] = ACTIONS(1729), - [anon_sym_PIPE_EQ] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_CARET] = ACTIONS(1731), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1731), - [anon_sym_LT_EQ] = ACTIONS(1729), - [anon_sym_GT_EQ] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1731), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [468] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1601), + [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1601), + [anon_sym_STAR_EQ] = ACTIONS(1601), + [anon_sym_SLASH_EQ] = ACTIONS(1601), + [anon_sym_PERCENT_EQ] = ACTIONS(1601), + [anon_sym_PLUS_EQ] = ACTIONS(1601), + [anon_sym_DASH_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_GT_EQ] = ACTIONS(1601), + [anon_sym_AMP_EQ] = ACTIONS(1601), + [anon_sym_CARET_EQ] = ACTIONS(1601), + [anon_sym_PIPE_EQ] = ACTIONS(1601), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_PIPE_PIPE] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1603), + [anon_sym_GT] = ACTIONS(1603), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_EQ] = ACTIONS(1601), + [anon_sym_LT_LT] = ACTIONS(1603), + [anon_sym_GT_GT] = ACTIONS(1603), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [516] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1669), - [anon_sym_STAR_EQ] = ACTIONS(1669), - [anon_sym_SLASH_EQ] = ACTIONS(1669), - [anon_sym_PERCENT_EQ] = ACTIONS(1669), - [anon_sym_PLUS_EQ] = ACTIONS(1669), - [anon_sym_DASH_EQ] = ACTIONS(1669), - [anon_sym_LT_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_GT_EQ] = ACTIONS(1669), - [anon_sym_AMP_EQ] = ACTIONS(1669), - [anon_sym_CARET_EQ] = ACTIONS(1669), - [anon_sym_PIPE_EQ] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_CARET] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [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(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [469] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_RPAREN] = ACTIONS(1507), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1509), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [517] = { - [sym__expression] = STATE(777), - [sym_conditional_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_pointer_expression] = STATE(777), - [sym_logical_expression] = STATE(777), - [sym_bitwise_expression] = STATE(777), - [sym_equality_expression] = STATE(777), - [sym_relational_expression] = STATE(777), - [sym_shift_expression] = STATE(777), - [sym_math_expression] = STATE(777), - [sym_cast_expression] = STATE(777), - [sym_sizeof_expression] = STATE(777), - [sym_subscript_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_field_expression] = STATE(777), - [sym_compound_literal_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_initializer_list] = STATE(778), - [sym_initializer_pair] = STATE(778), - [sym_subscript_designator] = STATE(780), - [sym_field_designator] = STATE(780), - [sym_char_literal] = STATE(777), - [sym_concatenated_string] = STATE(777), - [sym_string_literal] = STATE(779), - [aux_sym_initializer_pair_repeat1] = STATE(780), - [anon_sym_COMMA] = ACTIONS(2068), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [anon_sym_DOT] = ACTIONS(2088), - [sym_number_literal] = ACTIONS(2090), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2092), - [sym_false] = ACTIONS(2092), - [sym_null] = ACTIONS(2092), - [sym_identifier] = ACTIONS(2092), - [sym_comment] = ACTIONS(85), + [470] = { + [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_initializer_list] = STATE(721), + [sym_initializer_pair] = STATE(721), + [sym_subscript_designator] = STATE(723), + [sym_field_designator] = STATE(723), + [sym_char_literal] = STATE(720), + [sym_concatenated_string] = STATE(720), + [sym_string_literal] = STATE(722), + [aux_sym_initializer_pair_repeat1] = STATE(723), + [anon_sym_COMMA] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1916), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [anon_sym_DOT] = ACTIONS(1934), + [sym_number_literal] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1938), + [sym_false] = ACTIONS(1938), + [sym_null] = ACTIONS(1938), + [sym_identifier] = ACTIONS(1938), + [sym_comment] = ACTIONS(81), }, - [518] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(2094), - [anon_sym_RPAREN] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2094), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(2094), - [anon_sym_EQ] = ACTIONS(2096), - [anon_sym_COLON] = ACTIONS(2094), - [anon_sym_QMARK] = ACTIONS(2094), - [anon_sym_STAR_EQ] = ACTIONS(2094), - [anon_sym_SLASH_EQ] = ACTIONS(2094), - [anon_sym_PERCENT_EQ] = ACTIONS(2094), - [anon_sym_PLUS_EQ] = ACTIONS(2094), - [anon_sym_DASH_EQ] = ACTIONS(2094), - [anon_sym_LT_LT_EQ] = ACTIONS(2094), - [anon_sym_GT_GT_EQ] = ACTIONS(2094), - [anon_sym_AMP_EQ] = ACTIONS(2094), - [anon_sym_CARET_EQ] = ACTIONS(2094), - [anon_sym_PIPE_EQ] = ACTIONS(2094), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_PIPE_PIPE] = ACTIONS(2094), - [anon_sym_AMP_AMP] = ACTIONS(2094), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2094), - [anon_sym_BANG_EQ] = ACTIONS(2094), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_LT_EQ] = ACTIONS(2094), - [anon_sym_GT_EQ] = ACTIONS(2094), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PERCENT] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [471] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1940), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(1940), + [anon_sym_EQ] = ACTIONS(1942), + [anon_sym_COLON] = ACTIONS(1940), + [anon_sym_QMARK] = ACTIONS(1940), + [anon_sym_STAR_EQ] = ACTIONS(1940), + [anon_sym_SLASH_EQ] = ACTIONS(1940), + [anon_sym_PERCENT_EQ] = ACTIONS(1940), + [anon_sym_PLUS_EQ] = ACTIONS(1940), + [anon_sym_DASH_EQ] = ACTIONS(1940), + [anon_sym_LT_LT_EQ] = ACTIONS(1940), + [anon_sym_GT_GT_EQ] = ACTIONS(1940), + [anon_sym_AMP_EQ] = ACTIONS(1940), + [anon_sym_CARET_EQ] = ACTIONS(1940), + [anon_sym_PIPE_EQ] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_EQ_EQ] = ACTIONS(1940), + [anon_sym_BANG_EQ] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_LT_EQ] = ACTIONS(1940), + [anon_sym_GT_EQ] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1942), + [anon_sym_PLUS] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1942), + [anon_sym_SLASH] = ACTIONS(1942), + [anon_sym_PERCENT] = ACTIONS(1942), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [519] = { - [anon_sym_COMMA] = ACTIONS(2098), - [anon_sym_RPAREN] = ACTIONS(2098), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_RBRACE] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_RBRACK] = ACTIONS(2098), - [anon_sym_EQ] = ACTIONS(2100), - [anon_sym_COLON] = ACTIONS(2098), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_STAR_EQ] = ACTIONS(2098), - [anon_sym_SLASH_EQ] = ACTIONS(2098), - [anon_sym_PERCENT_EQ] = ACTIONS(2098), - [anon_sym_PLUS_EQ] = ACTIONS(2098), - [anon_sym_DASH_EQ] = ACTIONS(2098), - [anon_sym_LT_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_GT_EQ] = ACTIONS(2098), - [anon_sym_AMP_EQ] = ACTIONS(2098), - [anon_sym_CARET_EQ] = ACTIONS(2098), - [anon_sym_PIPE_EQ] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2100), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_CARET] = ACTIONS(2100), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2100), - [anon_sym_PERCENT] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_DOT] = ACTIONS(2098), - [anon_sym_DASH_GT] = ACTIONS(2098), - [sym_comment] = ACTIONS(85), + [472] = { + [anon_sym_COMMA] = ACTIONS(1944), + [anon_sym_RPAREN] = ACTIONS(1944), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1944), + [anon_sym_RBRACK] = ACTIONS(1944), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_COLON] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1944), + [anon_sym_STAR_EQ] = ACTIONS(1944), + [anon_sym_SLASH_EQ] = ACTIONS(1944), + [anon_sym_PERCENT_EQ] = ACTIONS(1944), + [anon_sym_PLUS_EQ] = ACTIONS(1944), + [anon_sym_DASH_EQ] = ACTIONS(1944), + [anon_sym_LT_LT_EQ] = ACTIONS(1944), + [anon_sym_GT_GT_EQ] = ACTIONS(1944), + [anon_sym_AMP_EQ] = ACTIONS(1944), + [anon_sym_CARET_EQ] = ACTIONS(1944), + [anon_sym_PIPE_EQ] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_PIPE_PIPE] = ACTIONS(1944), + [anon_sym_AMP_AMP] = ACTIONS(1944), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_CARET] = ACTIONS(1946), + [anon_sym_EQ_EQ] = ACTIONS(1944), + [anon_sym_BANG_EQ] = ACTIONS(1944), + [anon_sym_LT] = ACTIONS(1946), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_LT_EQ] = ACTIONS(1944), + [anon_sym_GT_EQ] = ACTIONS(1944), + [anon_sym_LT_LT] = ACTIONS(1946), + [anon_sym_GT_GT] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_SLASH] = ACTIONS(1946), + [anon_sym_PERCENT] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(1944), + [anon_sym_PLUS_PLUS] = ACTIONS(1944), + [anon_sym_DOT] = ACTIONS(1944), + [anon_sym_DASH_GT] = ACTIONS(1944), + [sym_comment] = ACTIONS(81), }, - [520] = { - [sym_string_literal] = STATE(520), - [aux_sym_concatenated_string_repeat1] = STATE(520), - [anon_sym_COMMA] = ACTIONS(1737), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1739), - [anon_sym_QMARK] = ACTIONS(1737), - [anon_sym_STAR_EQ] = ACTIONS(1737), - [anon_sym_SLASH_EQ] = ACTIONS(1737), - [anon_sym_PERCENT_EQ] = ACTIONS(1737), - [anon_sym_PLUS_EQ] = ACTIONS(1737), - [anon_sym_DASH_EQ] = ACTIONS(1737), - [anon_sym_LT_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_GT_EQ] = ACTIONS(1737), - [anon_sym_AMP_EQ] = ACTIONS(1737), - [anon_sym_CARET_EQ] = ACTIONS(1737), - [anon_sym_PIPE_EQ] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_CARET] = ACTIONS(1739), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_PERCENT] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DOT] = ACTIONS(1737), - [anon_sym_DASH_GT] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym_comment] = ACTIONS(85), + [473] = { + [sym_string_literal] = STATE(473), + [aux_sym_concatenated_string_repeat1] = STATE(473), + [anon_sym_COMMA] = ACTIONS(1609), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_QMARK] = ACTIONS(1609), + [anon_sym_STAR_EQ] = ACTIONS(1609), + [anon_sym_SLASH_EQ] = ACTIONS(1609), + [anon_sym_PERCENT_EQ] = ACTIONS(1609), + [anon_sym_PLUS_EQ] = ACTIONS(1609), + [anon_sym_DASH_EQ] = ACTIONS(1609), + [anon_sym_LT_LT_EQ] = ACTIONS(1609), + [anon_sym_GT_GT_EQ] = ACTIONS(1609), + [anon_sym_AMP_EQ] = ACTIONS(1609), + [anon_sym_CARET_EQ] = ACTIONS(1609), + [anon_sym_PIPE_EQ] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PIPE_PIPE] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1611), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1611), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT_EQ] = ACTIONS(1609), + [anon_sym_LT_LT] = ACTIONS(1611), + [anon_sym_GT_GT] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_SLASH] = ACTIONS(1611), + [anon_sym_PERCENT] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_DOT] = ACTIONS(1609), + [anon_sym_DASH_GT] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1613), + [sym_comment] = ACTIONS(81), }, - [521] = { - [sym_parameter_list] = STATE(504), - [anon_sym_RPAREN] = ACTIONS(2102), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1327), - [sym_comment] = ACTIONS(85), + [474] = { + [sym_parameter_list] = STATE(457), + [anon_sym_RPAREN] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1217), + [sym_comment] = ACTIONS(81), }, - [522] = { - [anon_sym_COMMA] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_extern] = ACTIONS(2106), - [anon_sym_LPAREN2] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2104), - [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_COLON] = ACTIONS(2104), - [sym_identifier] = ACTIONS(2106), - [sym_comment] = ACTIONS(85), + [475] = { + [anon_sym_COMMA] = ACTIONS(1950), + [anon_sym_RPAREN] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1952), + [anon_sym_auto] = ACTIONS(1952), + [anon_sym_register] = ACTIONS(1952), + [anon_sym_inline] = ACTIONS(1952), + [anon_sym_const] = ACTIONS(1952), + [anon_sym_restrict] = ACTIONS(1952), + [anon_sym_volatile] = ACTIONS(1952), + [anon_sym__Atomic] = ACTIONS(1952), + [anon_sym_COLON] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1952), + [sym_comment] = ACTIONS(81), }, - [523] = { - [sym__expression] = STATE(781), - [sym_conditional_expression] = STATE(781), - [sym_assignment_expression] = STATE(781), - [sym_pointer_expression] = STATE(781), - [sym_logical_expression] = STATE(781), - [sym_bitwise_expression] = STATE(781), - [sym_equality_expression] = STATE(781), - [sym_relational_expression] = STATE(781), - [sym_shift_expression] = STATE(781), - [sym_math_expression] = STATE(781), - [sym_cast_expression] = STATE(781), - [sym_sizeof_expression] = STATE(781), - [sym_subscript_expression] = STATE(781), - [sym_call_expression] = STATE(781), - [sym_field_expression] = STATE(781), - [sym_compound_literal_expression] = STATE(781), - [sym_parenthesized_expression] = STATE(781), - [sym_char_literal] = STATE(781), - [sym_concatenated_string] = STATE(781), - [sym_string_literal] = STATE(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(2108), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2110), - [sym_false] = ACTIONS(2110), - [sym_null] = ACTIONS(2110), - [sym_identifier] = ACTIONS(2110), - [sym_comment] = ACTIONS(85), + [476] = { + [sym__expression] = STATE(724), + [sym_conditional_expression] = STATE(724), + [sym_assignment_expression] = STATE(724), + [sym_pointer_expression] = STATE(724), + [sym_logical_expression] = STATE(724), + [sym_bitwise_expression] = STATE(724), + [sym_equality_expression] = STATE(724), + [sym_relational_expression] = STATE(724), + [sym_shift_expression] = STATE(724), + [sym_math_expression] = STATE(724), + [sym_cast_expression] = STATE(724), + [sym_sizeof_expression] = STATE(724), + [sym_subscript_expression] = STATE(724), + [sym_call_expression] = STATE(724), + [sym_field_expression] = STATE(724), + [sym_compound_literal_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_char_literal] = STATE(724), + [sym_concatenated_string] = STATE(724), + [sym_string_literal] = STATE(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1954), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1956), + [sym_false] = ACTIONS(1956), + [sym_null] = ACTIONS(1956), + [sym_identifier] = ACTIONS(1956), + [sym_comment] = ACTIONS(81), }, - [524] = { - [sym_enumerator] = STATE(783), - [anon_sym_RBRACE] = ACTIONS(2112), - [sym_identifier] = ACTIONS(539), - [sym_comment] = ACTIONS(85), + [477] = { + [sym_enumerator] = STATE(726), + [anon_sym_RBRACE] = ACTIONS(1958), + [sym_identifier] = ACTIONS(495), + [sym_comment] = ACTIONS(81), }, - [525] = { - [aux_sym_enumerator_list_repeat1] = STATE(785), - [anon_sym_COMMA] = ACTIONS(2114), - [anon_sym_RBRACE] = ACTIONS(2112), - [sym_comment] = ACTIONS(85), + [478] = { + [aux_sym_enumerator_list_repeat1] = STATE(728), + [anon_sym_COMMA] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1958), + [sym_comment] = ACTIONS(81), }, - [526] = { - [sym_preproc_if_in_field_declaration_list] = STATE(790), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(790), - [sym_preproc_else_in_field_declaration_list] = STATE(789), - [sym_preproc_elif_in_field_declaration_list] = STATE(789), - [sym__declaration_specifiers] = STATE(268), - [sym_storage_class_specifier] = STATE(271), - [sym_type_qualifier] = STATE(271), - [sym__type_specifier] = STATE(269), - [sym_sized_type_specifier] = STATE(269), - [sym_enum_specifier] = STATE(269), - [sym_struct_specifier] = STATE(269), - [sym_union_specifier] = STATE(269), - [sym__field_declaration_list_item] = STATE(790), - [sym_field_declaration] = STATE(790), - [sym_macro_type_specifier] = STATE(269), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(790), - [aux_sym__declaration_specifiers_repeat1] = STATE(271), - [aux_sym_sized_type_specifier_repeat1] = STATE(272), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2118), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2120), + [479] = { + [sym_preproc_if_in_field_declaration_list] = STATE(733), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(733), + [sym_preproc_else_in_field_declaration_list] = STATE(732), + [sym_preproc_elif_in_field_declaration_list] = STATE(732), + [sym__declaration_specifiers] = STATE(247), + [sym_storage_class_specifier] = STATE(250), + [sym_type_qualifier] = STATE(250), + [sym__type_specifier] = STATE(248), + [sym_sized_type_specifier] = STATE(248), + [sym_enum_specifier] = STATE(248), + [sym_struct_specifier] = STATE(248), + [sym_union_specifier] = STATE(248), + [sym__field_declaration_list_item] = STATE(733), + [sym_field_declaration] = STATE(733), + [sym_macro_type_specifier] = STATE(248), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(733), + [aux_sym__declaration_specifiers_repeat1] = STATE(250), + [aux_sym_sized_type_specifier_repeat1] = STATE(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1964), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1966), [anon_sym_extern] = ACTIONS(29), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), @@ -24350,41 +22222,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(557), + [anon_sym_unsigned] = ACTIONS(511), + [anon_sym_long] = ACTIONS(511), + [anon_sym_short] = ACTIONS(511), + [sym_primitive_type] = ACTIONS(513), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [527] = { - [sym_preproc_if_in_field_declaration_list] = STATE(793), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(793), - [sym_preproc_else_in_field_declaration_list] = STATE(792), - [sym_preproc_elif_in_field_declaration_list] = STATE(792), - [sym__declaration_specifiers] = STATE(268), - [sym_storage_class_specifier] = STATE(271), - [sym_type_qualifier] = STATE(271), - [sym__type_specifier] = STATE(269), - [sym_sized_type_specifier] = STATE(269), - [sym_enum_specifier] = STATE(269), - [sym_struct_specifier] = STATE(269), - [sym_union_specifier] = STATE(269), - [sym__field_declaration_list_item] = STATE(793), - [sym_field_declaration] = STATE(793), - [sym_macro_type_specifier] = STATE(269), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(793), - [aux_sym__declaration_specifiers_repeat1] = STATE(271), - [aux_sym_sized_type_specifier_repeat1] = STATE(272), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2122), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2118), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2120), + [480] = { + [sym_preproc_if_in_field_declaration_list] = STATE(736), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(736), + [sym_preproc_else_in_field_declaration_list] = STATE(735), + [sym_preproc_elif_in_field_declaration_list] = STATE(735), + [sym__declaration_specifiers] = STATE(247), + [sym_storage_class_specifier] = STATE(250), + [sym_type_qualifier] = STATE(250), + [sym__type_specifier] = STATE(248), + [sym_sized_type_specifier] = STATE(248), + [sym_enum_specifier] = STATE(248), + [sym_struct_specifier] = STATE(248), + [sym_union_specifier] = STATE(248), + [sym__field_declaration_list_item] = STATE(736), + [sym_field_declaration] = STATE(736), + [sym_macro_type_specifier] = STATE(248), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(736), + [aux_sym__declaration_specifiers_repeat1] = STATE(250), + [aux_sym_sized_type_specifier_repeat1] = STATE(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1964), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1966), [anon_sym_extern] = ACTIONS(29), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), @@ -24394,136 +22266,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(557), + [anon_sym_unsigned] = ACTIONS(511), + [anon_sym_long] = ACTIONS(511), + [anon_sym_short] = ACTIONS(511), + [sym_primitive_type] = ACTIONS(513), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [528] = { - [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), - [sym_comment] = ACTIONS(85), + [481] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_auto] = ACTIONS(1970), + [anon_sym_register] = ACTIONS(1970), + [anon_sym_inline] = ACTIONS(1970), + [anon_sym_const] = ACTIONS(1970), + [anon_sym_restrict] = ACTIONS(1970), + [anon_sym_volatile] = ACTIONS(1970), + [anon_sym__Atomic] = ACTIONS(1970), + [anon_sym_unsigned] = ACTIONS(1970), + [anon_sym_long] = ACTIONS(1970), + [anon_sym_short] = ACTIONS(1970), + [sym_primitive_type] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1970), + [anon_sym_struct] = ACTIONS(1970), + [anon_sym_union] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1970), + [sym_comment] = ACTIONS(81), }, - [529] = { - [sym__field_declarator] = STATE(795), - [sym_pointer_field_declarator] = STATE(795), - [sym_function_field_declarator] = STATE(795), - [sym_array_field_declarator] = STATE(795), - [anon_sym_LPAREN2] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2128), - [sym_identifier] = ACTIONS(1424), - [sym_comment] = ACTIONS(85), + [482] = { + [sym__field_declarator] = STATE(738), + [sym_pointer_field_declarator] = STATE(738), + [sym_function_field_declarator] = STATE(738), + [sym_array_field_declarator] = STATE(738), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1314), + [sym_comment] = ACTIONS(81), }, - [530] = { - [sym__field_declarator] = STATE(796), - [sym_pointer_field_declarator] = STATE(796), - [sym_function_field_declarator] = STATE(796), - [sym_array_field_declarator] = STATE(796), - [sym_type_qualifier] = STATE(797), - [aux_sym_type_definition_repeat1] = STATE(797), - [anon_sym_LPAREN2] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), + [483] = { + [sym__field_declarator] = STATE(739), + [sym_pointer_field_declarator] = STATE(739), + [sym_function_field_declarator] = STATE(739), + [sym_array_field_declarator] = STATE(739), + [sym_type_qualifier] = STATE(740), + [aux_sym_type_definition_repeat1] = STATE(740), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(2130), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(1976), + [sym_comment] = ACTIONS(81), }, - [531] = { - [sym__expression] = STATE(798), - [sym_conditional_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_pointer_expression] = STATE(798), - [sym_logical_expression] = STATE(798), - [sym_bitwise_expression] = STATE(798), - [sym_equality_expression] = STATE(798), - [sym_relational_expression] = STATE(798), - [sym_shift_expression] = STATE(798), - [sym_math_expression] = STATE(798), - [sym_cast_expression] = STATE(798), - [sym_sizeof_expression] = STATE(798), - [sym_subscript_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_field_expression] = STATE(798), - [sym_compound_literal_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_char_literal] = STATE(798), - [sym_concatenated_string] = STATE(798), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2132), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_identifier] = ACTIONS(2134), - [sym_comment] = ACTIONS(85), + [484] = { + [sym__expression] = STATE(741), + [sym_conditional_expression] = STATE(741), + [sym_assignment_expression] = STATE(741), + [sym_pointer_expression] = STATE(741), + [sym_logical_expression] = STATE(741), + [sym_bitwise_expression] = STATE(741), + [sym_equality_expression] = STATE(741), + [sym_relational_expression] = STATE(741), + [sym_shift_expression] = STATE(741), + [sym_math_expression] = STATE(741), + [sym_cast_expression] = STATE(741), + [sym_sizeof_expression] = STATE(741), + [sym_subscript_expression] = STATE(741), + [sym_call_expression] = STATE(741), + [sym_field_expression] = STATE(741), + [sym_compound_literal_expression] = STATE(741), + [sym_parenthesized_expression] = STATE(741), + [sym_char_literal] = STATE(741), + [sym_concatenated_string] = STATE(741), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1980), + [sym_false] = ACTIONS(1980), + [sym_null] = ACTIONS(1980), + [sym_identifier] = ACTIONS(1980), + [sym_comment] = ACTIONS(81), }, - [532] = { - [anon_sym_COMMA] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_COLON] = ACTIONS(2136), - [sym_comment] = ACTIONS(85), + [485] = { + [anon_sym_COMMA] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_LPAREN2] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_COLON] = ACTIONS(1982), + [sym_comment] = ACTIONS(81), }, - [533] = { - [sym_parameter_list] = STATE(803), - [aux_sym_field_declaration_repeat1] = STATE(804), - [anon_sym_COMMA] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_COLON] = ACTIONS(2144), - [sym_comment] = ACTIONS(85), + [486] = { + [sym_parameter_list] = STATE(746), + [aux_sym_field_declaration_repeat1] = STATE(747), + [anon_sym_COMMA] = ACTIONS(1984), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_COLON] = ACTIONS(1990), + [sym_comment] = ACTIONS(81), }, - [534] = { - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [anon_sym_SEMI] = ACTIONS(749), + [487] = { + [sym_storage_class_specifier] = STATE(748), + [sym_type_qualifier] = STATE(748), + [aux_sym__declaration_specifiers_repeat1] = STATE(748), + [anon_sym_SEMI] = ACTIONS(657), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(657), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -24532,78 +22404,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_COLON] = ACTIONS(749), - [sym_identifier] = ACTIONS(751), - [sym_comment] = ACTIONS(85), + [anon_sym_COLON] = ACTIONS(657), + [sym_identifier] = ACTIONS(659), + [sym_comment] = ACTIONS(81), }, - [535] = { - [anon_sym_COMMA] = ACTIONS(2146), - [anon_sym_RPAREN] = ACTIONS(2146), - [anon_sym_SEMI] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym_LPAREN2] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2146), - [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_COLON] = ACTIONS(2146), - [sym_identifier] = ACTIONS(2148), - [sym_comment] = ACTIONS(85), + [488] = { + [anon_sym_COMMA] = ACTIONS(1992), + [anon_sym_RPAREN] = ACTIONS(1992), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym_LPAREN2] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1992), + [anon_sym_static] = ACTIONS(1994), + [anon_sym_auto] = ACTIONS(1994), + [anon_sym_register] = ACTIONS(1994), + [anon_sym_inline] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [anon_sym_restrict] = ACTIONS(1994), + [anon_sym_volatile] = ACTIONS(1994), + [anon_sym__Atomic] = ACTIONS(1994), + [anon_sym_COLON] = ACTIONS(1992), + [sym_identifier] = ACTIONS(1994), + [sym_comment] = ACTIONS(81), }, - [536] = { - [sym_preproc_if_in_field_declaration_list] = STATE(536), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(536), - [sym__declaration_specifiers] = STATE(268), - [sym_storage_class_specifier] = STATE(271), - [sym_type_qualifier] = STATE(271), - [sym__type_specifier] = STATE(269), - [sym_sized_type_specifier] = STATE(269), - [sym_enum_specifier] = STATE(269), - [sym_struct_specifier] = STATE(269), - [sym_union_specifier] = STATE(269), - [sym__field_declaration_list_item] = STATE(536), - [sym_field_declaration] = STATE(536), - [sym_macro_type_specifier] = STATE(269), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(536), - [aux_sym__declaration_specifiers_repeat1] = STATE(271), - [aux_sym_sized_type_specifier_repeat1] = STATE(272), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2150), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2153), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2153), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_auto] = ACTIONS(2156), - [anon_sym_register] = ACTIONS(2156), - [anon_sym_inline] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_restrict] = ACTIONS(2161), - [anon_sym_volatile] = ACTIONS(2161), - [anon_sym__Atomic] = ACTIONS(2161), - [anon_sym_unsigned] = ACTIONS(2164), - [anon_sym_long] = ACTIONS(2164), - [anon_sym_short] = ACTIONS(2164), - [sym_primitive_type] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2170), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_union] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2179), - [sym_comment] = ACTIONS(85), + [489] = { + [sym_preproc_if_in_field_declaration_list] = STATE(489), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(489), + [sym__declaration_specifiers] = STATE(247), + [sym_storage_class_specifier] = STATE(250), + [sym_type_qualifier] = STATE(250), + [sym__type_specifier] = STATE(248), + [sym_sized_type_specifier] = STATE(248), + [sym_enum_specifier] = STATE(248), + [sym_struct_specifier] = STATE(248), + [sym_union_specifier] = STATE(248), + [sym__field_declaration_list_item] = STATE(489), + [sym_field_declaration] = STATE(489), + [sym_macro_type_specifier] = STATE(248), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(489), + [aux_sym__declaration_specifiers_repeat1] = STATE(250), + [aux_sym_sized_type_specifier_repeat1] = STATE(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1999), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(2002), + [anon_sym_RBRACE] = ACTIONS(2005), + [anon_sym_static] = ACTIONS(2002), + [anon_sym_auto] = ACTIONS(2002), + [anon_sym_register] = ACTIONS(2002), + [anon_sym_inline] = ACTIONS(2002), + [anon_sym_const] = ACTIONS(2007), + [anon_sym_restrict] = ACTIONS(2007), + [anon_sym_volatile] = ACTIONS(2007), + [anon_sym__Atomic] = ACTIONS(2007), + [anon_sym_unsigned] = ACTIONS(2010), + [anon_sym_long] = ACTIONS(2010), + [anon_sym_short] = ACTIONS(2010), + [sym_primitive_type] = ACTIONS(2013), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2019), + [anon_sym_union] = ACTIONS(2022), + [sym_identifier] = ACTIONS(2025), + [sym_comment] = ACTIONS(81), }, - [537] = { - [sym_storage_class_specifier] = STATE(806), - [sym_type_qualifier] = STATE(806), - [aux_sym__declaration_specifiers_repeat1] = STATE(806), - [anon_sym_SEMI] = ACTIONS(749), + [490] = { + [sym_storage_class_specifier] = STATE(749), + [sym_type_qualifier] = STATE(749), + [aux_sym__declaration_specifiers_repeat1] = STATE(749), + [anon_sym_SEMI] = ACTIONS(657), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(657), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -24612,467 +22484,256 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_COLON] = ACTIONS(749), - [sym_identifier] = ACTIONS(751), - [sym_comment] = ACTIONS(85), - }, - [538] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(538), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(2182), - [anon_sym_long] = ACTIONS(2182), - [anon_sym_short] = ACTIONS(2182), - [sym_primitive_type] = ACTIONS(980), - [anon_sym_COLON] = ACTIONS(978), - [sym_identifier] = ACTIONS(980), - [sym_comment] = ACTIONS(85), - }, - [539] = { - [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(85), - }, - [540] = { - [sym_compound_statement] = STATE(807), - [sym_labeled_statement] = STATE(807), - [sym_expression_statement] = STATE(807), - [sym_if_statement] = STATE(807), - [sym_switch_statement] = STATE(807), - [sym_case_statement] = STATE(807), - [sym_while_statement] = STATE(807), - [sym_do_statement] = STATE(807), - [sym_for_statement] = STATE(807), - [sym_return_statement] = STATE(807), - [sym_break_statement] = STATE(807), - [sym_continue_statement] = STATE(807), - [sym_goto_statement] = STATE(807), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(589), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(85), + [anon_sym_COLON] = ACTIONS(657), + [sym_identifier] = ACTIONS(659), + [sym_comment] = ACTIONS(81), }, - [541] = { - [sym_compound_statement] = STATE(286), - [sym_labeled_statement] = STATE(286), - [sym_expression_statement] = STATE(286), - [sym_if_statement] = STATE(286), - [sym_switch_statement] = STATE(286), - [sym_case_statement] = STATE(286), - [sym_while_statement] = STATE(286), - [sym_do_statement] = STATE(286), - [sym_for_statement] = STATE(286), - [sym_return_statement] = STATE(286), - [sym_break_statement] = STATE(286), - [sym_continue_statement] = STATE(286), - [sym_goto_statement] = STATE(286), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(589), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(85), + [491] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(491), + [anon_sym_SEMI] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(896), + [anon_sym_LPAREN2] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_static] = ACTIONS(896), + [anon_sym_auto] = ACTIONS(896), + [anon_sym_register] = ACTIONS(896), + [anon_sym_inline] = ACTIONS(896), + [anon_sym_const] = ACTIONS(896), + [anon_sym_restrict] = ACTIONS(896), + [anon_sym_volatile] = ACTIONS(896), + [anon_sym__Atomic] = ACTIONS(896), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(896), + [anon_sym_COLON] = ACTIONS(894), + [sym_identifier] = ACTIONS(896), + [sym_comment] = ACTIONS(81), }, - [542] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(2185), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [492] = { + [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_else] = 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(81), }, - [543] = { - [sym_declaration] = STATE(305), - [sym_type_definition] = STATE(305), - [sym__declaration_specifiers] = STATE(306), - [sym_compound_statement] = STATE(305), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_labeled_statement] = STATE(305), - [sym_expression_statement] = STATE(305), - [sym_if_statement] = STATE(305), - [sym_switch_statement] = STATE(305), - [sym_case_statement] = STATE(305), - [sym_while_statement] = STATE(305), - [sym_do_statement] = STATE(305), - [sym_for_statement] = STATE(305), - [sym_return_statement] = STATE(305), - [sym_break_statement] = STATE(305), - [sym_continue_statement] = STATE(305), - [sym_goto_statement] = STATE(305), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), + [493] = { + [sym_compound_statement] = STATE(750), + [sym_labeled_statement] = STATE(750), + [sym_expression_statement] = STATE(750), + [sym_if_statement] = STATE(750), + [sym_switch_statement] = STATE(750), + [sym_while_statement] = STATE(750), + [sym_do_statement] = STATE(750), + [sym_for_statement] = STATE(750), + [sym_return_statement] = STATE(750), + [sym_break_statement] = STATE(750), + [sym_continue_statement] = STATE(750), + [sym_goto_statement] = STATE(750), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(589), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(535), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(537), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(539), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(2187), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(541), + [sym_comment] = ACTIONS(81), }, - [544] = { - [sym_compound_statement] = STATE(307), - [sym_labeled_statement] = STATE(307), - [sym_expression_statement] = STATE(307), - [sym_if_statement] = STATE(307), - [sym_switch_statement] = STATE(307), - [sym_case_statement] = STATE(307), - [sym_while_statement] = STATE(307), - [sym_do_statement] = STATE(307), - [sym_for_statement] = STATE(307), - [sym_return_statement] = STATE(307), - [sym_break_statement] = STATE(307), - [sym_continue_statement] = STATE(307), - [sym_goto_statement] = STATE(307), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [494] = { + [sym_compound_statement] = STATE(264), + [sym_labeled_statement] = STATE(264), + [sym_expression_statement] = STATE(264), + [sym_if_statement] = STATE(264), + [sym_switch_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_do_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_return_statement] = STATE(264), + [sym_break_statement] = STATE(264), + [sym_continue_statement] = STATE(264), + [sym_goto_statement] = STATE(264), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(589), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(535), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(537), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(539), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(541), + [sym_comment] = ACTIONS(81), }, - [545] = { - [sym_declaration] = STATE(810), - [sym__declaration_specifiers] = STATE(306), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym__expression] = STATE(811), - [sym_conditional_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_pointer_expression] = STATE(811), - [sym_logical_expression] = STATE(811), - [sym_bitwise_expression] = STATE(811), - [sym_equality_expression] = STATE(811), - [sym_relational_expression] = STATE(811), - [sym_shift_expression] = STATE(811), - [sym_math_expression] = STATE(811), - [sym_cast_expression] = STATE(811), - [sym_sizeof_expression] = STATE(811), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(811), - [sym_concatenated_string] = STATE(811), - [sym_string_literal] = STATE(123), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(2189), + [495] = { + [sym_declaration] = STATE(751), + [sym__declaration_specifiers] = STATE(273), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym__expression] = STATE(752), + [sym_conditional_expression] = STATE(752), + [sym_assignment_expression] = STATE(752), + [sym_pointer_expression] = STATE(752), + [sym_logical_expression] = STATE(752), + [sym_bitwise_expression] = STATE(752), + [sym_equality_expression] = STATE(752), + [sym_relational_expression] = STATE(752), + [sym_shift_expression] = STATE(752), + [sym_math_expression] = STATE(752), + [sym_cast_expression] = STATE(752), + [sym_sizeof_expression] = STATE(752), + [sym_subscript_expression] = STATE(752), + [sym_call_expression] = STATE(752), + [sym_field_expression] = STATE(752), + [sym_compound_literal_expression] = STATE(752), + [sym_parenthesized_expression] = STATE(752), + [sym_char_literal] = STATE(752), + [sym_concatenated_string] = STATE(752), + [sym_string_literal] = STATE(107), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(2031), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -25081,3388 +22742,3433 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2191), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2193), - [sym_false] = ACTIONS(2193), - [sym_null] = ACTIONS(2193), - [sym_identifier] = ACTIONS(651), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2033), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2035), + [sym_false] = ACTIONS(2035), + [sym_null] = ACTIONS(2035), + [sym_identifier] = ACTIONS(559), + [sym_comment] = ACTIONS(81), }, - [546] = { - [sym_compound_statement] = STATE(343), - [sym_labeled_statement] = STATE(343), - [sym_expression_statement] = STATE(343), - [sym_if_statement] = STATE(343), - [sym_switch_statement] = STATE(343), - [sym_case_statement] = STATE(343), - [sym_while_statement] = STATE(343), - [sym_do_statement] = STATE(343), - [sym_for_statement] = STATE(343), - [sym_return_statement] = STATE(343), - [sym_break_statement] = STATE(343), - [sym_continue_statement] = STATE(343), - [sym_goto_statement] = STATE(343), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [496] = { + [sym_compound_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(589), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(535), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(537), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(539), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(541), + [sym_comment] = ACTIONS(81), }, - [547] = { - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_case_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [sym_do_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [497] = { + [sym_compound_statement] = STATE(753), + [sym_labeled_statement] = STATE(753), + [sym_expression_statement] = STATE(753), + [sym_if_statement] = STATE(753), + [sym_switch_statement] = STATE(753), + [sym_while_statement] = STATE(753), + [sym_do_statement] = STATE(753), + [sym_for_statement] = STATE(753), + [sym_return_statement] = STATE(753), + [sym_break_statement] = STATE(753), + [sym_continue_statement] = STATE(753), + [sym_goto_statement] = STATE(753), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_if] = ACTIONS(43), [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_while] = ACTIONS(51), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(81), }, - [548] = { - [sym__expression] = STATE(518), - [sym_conditional_expression] = STATE(518), - [sym_assignment_expression] = STATE(518), - [sym_pointer_expression] = STATE(518), - [sym_logical_expression] = STATE(518), - [sym_bitwise_expression] = STATE(518), - [sym_equality_expression] = STATE(518), - [sym_relational_expression] = STATE(518), - [sym_shift_expression] = STATE(518), - [sym_math_expression] = STATE(518), - [sym_cast_expression] = STATE(518), - [sym_sizeof_expression] = STATE(518), - [sym_subscript_expression] = STATE(518), - [sym_call_expression] = STATE(518), - [sym_field_expression] = STATE(518), - [sym_compound_literal_expression] = STATE(518), - [sym_parenthesized_expression] = STATE(518), - [sym_initializer_list] = STATE(519), - [sym_char_literal] = STATE(518), - [sym_concatenated_string] = STATE(518), - [sym_string_literal] = STATE(102), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1387), - [sym_comment] = ACTIONS(85), + [498] = { + [ts_builtin_sym_end] = ACTIONS(2037), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2039), + [sym_preproc_directive] = ACTIONS(2039), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_typedef] = ACTIONS(2039), + [anon_sym_extern] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_LPAREN2] = ACTIONS(2037), + [anon_sym_STAR] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_auto] = ACTIONS(2039), + [anon_sym_register] = ACTIONS(2039), + [anon_sym_inline] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_restrict] = ACTIONS(2039), + [anon_sym_volatile] = ACTIONS(2039), + [anon_sym__Atomic] = ACTIONS(2039), + [anon_sym_unsigned] = ACTIONS(2039), + [anon_sym_long] = ACTIONS(2039), + [anon_sym_short] = ACTIONS(2039), + [sym_primitive_type] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_struct] = ACTIONS(2039), + [anon_sym_union] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_case] = ACTIONS(2039), + [anon_sym_default] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_goto] = ACTIONS(2039), + [anon_sym_AMP] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2037), + [anon_sym_sizeof] = ACTIONS(2039), + [sym_number_literal] = ACTIONS(2037), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [sym_true] = ACTIONS(2039), + [sym_false] = ACTIONS(2039), + [sym_null] = ACTIONS(2039), + [sym_identifier] = ACTIONS(2039), + [sym_comment] = ACTIONS(81), }, - [549] = { - [anon_sym_RPAREN] = ACTIONS(2195), - [sym_comment] = ACTIONS(85), + [499] = { + [sym_parenthesized_expression] = STATE(754), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [550] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [551] = { - [ts_builtin_sym_end] = ACTIONS(2197), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2199), - [sym_preproc_directive] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_typedef] = ACTIONS(2199), - [anon_sym_extern] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_LPAREN2] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_auto] = ACTIONS(2199), - [anon_sym_register] = ACTIONS(2199), - [anon_sym_inline] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_restrict] = ACTIONS(2199), - [anon_sym_volatile] = ACTIONS(2199), - [anon_sym__Atomic] = ACTIONS(2199), - [anon_sym_unsigned] = ACTIONS(2199), - [anon_sym_long] = ACTIONS(2199), - [anon_sym_short] = ACTIONS(2199), - [sym_primitive_type] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), - [anon_sym_struct] = ACTIONS(2199), - [anon_sym_union] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_else] = ACTIONS(2199), - [anon_sym_switch] = ACTIONS(2199), - [anon_sym_case] = ACTIONS(2199), - [anon_sym_default] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_goto] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_sizeof] = ACTIONS(2199), - [sym_number_literal] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_null] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2199), - [sym_comment] = ACTIONS(85), - }, - [552] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(2201), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [553] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_COLON] = ACTIONS(1713), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [554] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1719), - [anon_sym_COLON] = ACTIONS(1717), - [anon_sym_QMARK] = ACTIONS(1717), - [anon_sym_STAR_EQ] = ACTIONS(1717), - [anon_sym_SLASH_EQ] = ACTIONS(1717), - [anon_sym_PERCENT_EQ] = ACTIONS(1717), - [anon_sym_PLUS_EQ] = ACTIONS(1717), - [anon_sym_DASH_EQ] = ACTIONS(1717), - [anon_sym_LT_LT_EQ] = ACTIONS(1717), - [anon_sym_GT_GT_EQ] = ACTIONS(1717), - [anon_sym_AMP_EQ] = ACTIONS(1717), - [anon_sym_CARET_EQ] = ACTIONS(1717), - [anon_sym_PIPE_EQ] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [555] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1719), - [anon_sym_COLON] = ACTIONS(1717), - [anon_sym_QMARK] = ACTIONS(1717), - [anon_sym_STAR_EQ] = ACTIONS(1717), - [anon_sym_SLASH_EQ] = ACTIONS(1717), - [anon_sym_PERCENT_EQ] = ACTIONS(1717), - [anon_sym_PLUS_EQ] = ACTIONS(1717), - [anon_sym_DASH_EQ] = ACTIONS(1717), - [anon_sym_LT_LT_EQ] = ACTIONS(1717), - [anon_sym_GT_GT_EQ] = ACTIONS(1717), - [anon_sym_AMP_EQ] = ACTIONS(1717), - [anon_sym_CARET_EQ] = ACTIONS(1717), - [anon_sym_PIPE_EQ] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [556] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_COLON] = ACTIONS(1713), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [557] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_COLON] = ACTIONS(1713), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [558] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1723), - [anon_sym_COLON] = ACTIONS(1721), - [anon_sym_QMARK] = ACTIONS(1721), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_PIPE_PIPE] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1721), - [anon_sym_BANG_EQ] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [559] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1727), - [anon_sym_COLON] = ACTIONS(1725), - [anon_sym_QMARK] = ACTIONS(1725), - [anon_sym_STAR_EQ] = ACTIONS(1725), - [anon_sym_SLASH_EQ] = ACTIONS(1725), - [anon_sym_PERCENT_EQ] = ACTIONS(1725), - [anon_sym_PLUS_EQ] = ACTIONS(1725), - [anon_sym_DASH_EQ] = ACTIONS(1725), - [anon_sym_LT_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_GT_EQ] = ACTIONS(1725), - [anon_sym_AMP_EQ] = ACTIONS(1725), - [anon_sym_CARET_EQ] = ACTIONS(1725), - [anon_sym_PIPE_EQ] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_PIPE_PIPE] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [560] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1731), - [anon_sym_COLON] = ACTIONS(1729), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_STAR_EQ] = ACTIONS(1729), - [anon_sym_SLASH_EQ] = ACTIONS(1729), - [anon_sym_PERCENT_EQ] = ACTIONS(1729), - [anon_sym_PLUS_EQ] = ACTIONS(1729), - [anon_sym_DASH_EQ] = ACTIONS(1729), - [anon_sym_LT_LT_EQ] = ACTIONS(1729), - [anon_sym_GT_GT_EQ] = ACTIONS(1729), - [anon_sym_AMP_EQ] = ACTIONS(1729), - [anon_sym_CARET_EQ] = ACTIONS(1729), - [anon_sym_PIPE_EQ] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_CARET] = ACTIONS(1731), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1731), - [anon_sym_LT_EQ] = ACTIONS(1729), - [anon_sym_GT_EQ] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1731), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [561] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1671), - [anon_sym_COLON] = ACTIONS(1669), - [anon_sym_QMARK] = ACTIONS(1669), - [anon_sym_STAR_EQ] = ACTIONS(1669), - [anon_sym_SLASH_EQ] = ACTIONS(1669), - [anon_sym_PERCENT_EQ] = ACTIONS(1669), - [anon_sym_PLUS_EQ] = ACTIONS(1669), - [anon_sym_DASH_EQ] = ACTIONS(1669), - [anon_sym_LT_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_GT_EQ] = ACTIONS(1669), - [anon_sym_AMP_EQ] = ACTIONS(1669), - [anon_sym_CARET_EQ] = ACTIONS(1669), - [anon_sym_PIPE_EQ] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_CARET] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [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(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [562] = { - [sym_string_literal] = STATE(562), - [aux_sym_concatenated_string_repeat1] = STATE(562), - [anon_sym_LPAREN2] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1739), - [anon_sym_COLON] = ACTIONS(1737), - [anon_sym_QMARK] = ACTIONS(1737), - [anon_sym_STAR_EQ] = ACTIONS(1737), - [anon_sym_SLASH_EQ] = ACTIONS(1737), - [anon_sym_PERCENT_EQ] = ACTIONS(1737), - [anon_sym_PLUS_EQ] = ACTIONS(1737), - [anon_sym_DASH_EQ] = ACTIONS(1737), - [anon_sym_LT_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_GT_EQ] = ACTIONS(1737), - [anon_sym_AMP_EQ] = ACTIONS(1737), - [anon_sym_CARET_EQ] = ACTIONS(1737), - [anon_sym_PIPE_EQ] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_CARET] = ACTIONS(1739), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_PERCENT] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DOT] = ACTIONS(1737), - [anon_sym_DASH_GT] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym_comment] = ACTIONS(85), - }, - [563] = { - [sym_parenthesized_expression] = STATE(815), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), - }, - [564] = { - [sym_parenthesized_expression] = STATE(816), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), - }, - [565] = { - [sym__expression] = STATE(817), - [sym_conditional_expression] = STATE(817), - [sym_assignment_expression] = STATE(817), - [sym_pointer_expression] = STATE(817), - [sym_logical_expression] = STATE(817), - [sym_bitwise_expression] = STATE(817), - [sym_equality_expression] = STATE(817), - [sym_relational_expression] = STATE(817), - [sym_shift_expression] = STATE(817), - [sym_math_expression] = STATE(817), - [sym_cast_expression] = STATE(817), - [sym_sizeof_expression] = STATE(817), - [sym_subscript_expression] = STATE(817), - [sym_call_expression] = STATE(817), - [sym_field_expression] = STATE(817), - [sym_compound_literal_expression] = STATE(817), - [sym_parenthesized_expression] = STATE(817), - [sym_char_literal] = STATE(817), - [sym_concatenated_string] = STATE(817), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2205), - [sym_false] = ACTIONS(2205), - [sym_null] = ACTIONS(2205), - [sym_identifier] = ACTIONS(2205), - [sym_comment] = ACTIONS(85), - }, - [566] = { - [anon_sym_COLON] = ACTIONS(2207), - [sym_comment] = ACTIONS(85), + [500] = { + [sym__expression] = STATE(755), + [sym_conditional_expression] = STATE(755), + [sym_assignment_expression] = STATE(755), + [sym_pointer_expression] = STATE(755), + [sym_logical_expression] = STATE(755), + [sym_bitwise_expression] = STATE(755), + [sym_equality_expression] = STATE(755), + [sym_relational_expression] = STATE(755), + [sym_shift_expression] = STATE(755), + [sym_math_expression] = STATE(755), + [sym_cast_expression] = STATE(755), + [sym_sizeof_expression] = STATE(755), + [sym_subscript_expression] = STATE(755), + [sym_call_expression] = STATE(755), + [sym_field_expression] = STATE(755), + [sym_compound_literal_expression] = STATE(755), + [sym_parenthesized_expression] = STATE(755), + [sym_char_literal] = STATE(755), + [sym_concatenated_string] = STATE(755), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(2041), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2043), + [sym_false] = ACTIONS(2043), + [sym_null] = ACTIONS(2043), + [sym_identifier] = ACTIONS(2043), + [sym_comment] = ACTIONS(81), }, - [567] = { - [sym_parenthesized_expression] = STATE(819), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [501] = { + [anon_sym_COLON] = ACTIONS(2045), + [sym_comment] = ACTIONS(81), }, - [568] = { - [anon_sym_LPAREN2] = ACTIONS(2209), - [sym_comment] = ACTIONS(85), + [502] = { + [sym_parenthesized_expression] = STATE(757), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [569] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(2211), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_comment] = ACTIONS(85), + [503] = { + [anon_sym_LPAREN2] = ACTIONS(2047), + [sym_comment] = ACTIONS(81), }, - [570] = { - [anon_sym_else] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(1452), - [sym_comment] = ACTIONS(85), + [504] = { + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(2049), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_comment] = ACTIONS(81), }, - [571] = { - [sym_declaration] = STATE(551), - [sym_type_definition] = STATE(551), - [sym__declaration_specifiers] = STATE(306), - [sym_compound_statement] = STATE(551), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [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(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), + [505] = { + [sym_compound_statement] = STATE(761), + [sym_labeled_statement] = STATE(761), + [sym_expression_statement] = STATE(761), + [sym_if_statement] = STATE(761), + [sym_switch_statement] = STATE(761), + [sym_case_statement] = STATE(761), + [sym_while_statement] = STATE(761), + [sym_do_statement] = STATE(761), + [sym_for_statement] = STATE(761), + [sym_return_statement] = STATE(761), + [sym_break_statement] = STATE(761), + [sym_continue_statement] = STATE(761), + [sym_goto_statement] = STATE(761), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(761), [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2051), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(201), - [anon_sym_switch] = ACTIONS(203), - [anon_sym_case] = ACTIONS(205), - [anon_sym_default] = ACTIONS(207), - [anon_sym_while] = ACTIONS(209), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(213), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1532), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(81), }, - [572] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), + [506] = { + [sym_parenthesized_expression] = STATE(762), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [573] = { - [sym_parenthesized_expression] = STATE(576), - [anon_sym_LPAREN2] = ACTIONS(2215), - [sym_comment] = ACTIONS(85), + [507] = { + [sym_parenthesized_expression] = STATE(763), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [574] = { - [sym__expression] = STATE(825), - [sym_conditional_expression] = STATE(825), - [sym_assignment_expression] = STATE(825), - [sym_pointer_expression] = STATE(825), - [sym_logical_expression] = STATE(825), - [sym_bitwise_expression] = STATE(825), - [sym_equality_expression] = STATE(825), - [sym_relational_expression] = STATE(825), - [sym_shift_expression] = STATE(825), - [sym_math_expression] = STATE(825), - [sym_cast_expression] = STATE(825), - [sym_sizeof_expression] = STATE(825), - [sym_subscript_expression] = STATE(825), - [sym_call_expression] = STATE(825), - [sym_field_expression] = STATE(825), - [sym_compound_literal_expression] = STATE(825), - [sym_parenthesized_expression] = STATE(825), - [sym_char_literal] = STATE(825), - [sym_concatenated_string] = STATE(825), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(2217), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2219), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_identifier] = ACTIONS(2221), - [sym_comment] = ACTIONS(85), + [508] = { + [anon_sym_LPAREN2] = ACTIONS(2053), + [sym_comment] = ACTIONS(81), }, - [575] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [509] = { + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(2055), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_comment] = ACTIONS(81), }, - [576] = { - [ts_builtin_sym_end] = ACTIONS(2225), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2227), - [sym_preproc_directive] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_typedef] = ACTIONS(2227), - [anon_sym_extern] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_auto] = ACTIONS(2227), - [anon_sym_register] = ACTIONS(2227), - [anon_sym_inline] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_restrict] = ACTIONS(2227), - [anon_sym_volatile] = ACTIONS(2227), - [anon_sym__Atomic] = ACTIONS(2227), - [anon_sym_unsigned] = ACTIONS(2227), - [anon_sym_long] = ACTIONS(2227), - [anon_sym_short] = ACTIONS(2227), - [sym_primitive_type] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2227), - [anon_sym_switch] = ACTIONS(2227), - [anon_sym_case] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [anon_sym_do] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_goto] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_sizeof] = ACTIONS(2227), - [sym_number_literal] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [sym_true] = ACTIONS(2227), - [sym_false] = ACTIONS(2227), - [sym_null] = ACTIONS(2227), - [sym_identifier] = ACTIONS(2227), - [sym_comment] = ACTIONS(85), + [510] = { + [anon_sym_else] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(1336), + [sym_comment] = ACTIONS(81), }, - [577] = { - [sym__expression] = STATE(828), - [sym_conditional_expression] = STATE(828), - [sym_assignment_expression] = STATE(828), - [sym_pointer_expression] = STATE(828), - [sym_logical_expression] = STATE(828), - [sym_bitwise_expression] = STATE(828), - [sym_equality_expression] = STATE(828), - [sym_relational_expression] = STATE(828), - [sym_shift_expression] = STATE(828), - [sym_math_expression] = STATE(828), - [sym_cast_expression] = STATE(828), - [sym_sizeof_expression] = STATE(828), - [sym_subscript_expression] = STATE(828), - [sym_call_expression] = STATE(828), - [sym_field_expression] = STATE(828), - [sym_compound_literal_expression] = STATE(828), - [sym_parenthesized_expression] = STATE(828), - [sym_char_literal] = STATE(828), - [sym_concatenated_string] = STATE(828), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(2229), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(2231), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2233), - [sym_false] = ACTIONS(2233), - [sym_null] = ACTIONS(2233), - [sym_identifier] = ACTIONS(2233), - [sym_comment] = ACTIONS(85), + [511] = { + [sym_parenthesized_expression] = STATE(514), + [anon_sym_LPAREN2] = ACTIONS(171), + [sym_comment] = ACTIONS(81), }, - [578] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [512] = { + [sym__expression] = STATE(768), + [sym_conditional_expression] = STATE(768), + [sym_assignment_expression] = STATE(768), + [sym_pointer_expression] = STATE(768), + [sym_logical_expression] = STATE(768), + [sym_bitwise_expression] = STATE(768), + [sym_equality_expression] = STATE(768), + [sym_relational_expression] = STATE(768), + [sym_shift_expression] = STATE(768), + [sym_math_expression] = STATE(768), + [sym_cast_expression] = STATE(768), + [sym_sizeof_expression] = STATE(768), + [sym_subscript_expression] = STATE(768), + [sym_call_expression] = STATE(768), + [sym_field_expression] = STATE(768), + [sym_compound_literal_expression] = STATE(768), + [sym_parenthesized_expression] = STATE(768), + [sym_char_literal] = STATE(768), + [sym_concatenated_string] = STATE(768), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2061), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [sym_null] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2063), + [sym_comment] = ACTIONS(81), }, - [579] = { - [sym__expression] = STATE(830), - [sym_conditional_expression] = STATE(830), - [sym_assignment_expression] = STATE(830), - [sym_pointer_expression] = STATE(830), - [sym_logical_expression] = STATE(830), - [sym_bitwise_expression] = STATE(830), - [sym_equality_expression] = STATE(830), - [sym_relational_expression] = STATE(830), - [sym_shift_expression] = STATE(830), - [sym_math_expression] = STATE(830), - [sym_cast_expression] = STATE(830), - [sym_sizeof_expression] = STATE(830), - [sym_subscript_expression] = STATE(830), - [sym_call_expression] = STATE(830), - [sym_field_expression] = STATE(830), - [sym_compound_literal_expression] = STATE(830), - [sym_parenthesized_expression] = STATE(830), - [sym_char_literal] = STATE(830), - [sym_concatenated_string] = STATE(830), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2239), - [sym_false] = ACTIONS(2239), - [sym_null] = ACTIONS(2239), - [sym_identifier] = ACTIONS(2239), - [sym_comment] = ACTIONS(85), + [513] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(2065), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [580] = { - [sym__expression] = STATE(518), - [sym_conditional_expression] = STATE(518), - [sym_assignment_expression] = STATE(518), - [sym_pointer_expression] = STATE(518), - [sym_logical_expression] = STATE(518), - [sym_bitwise_expression] = STATE(518), - [sym_equality_expression] = STATE(518), - [sym_relational_expression] = STATE(518), - [sym_shift_expression] = STATE(518), - [sym_math_expression] = STATE(518), - [sym_cast_expression] = STATE(518), - [sym_sizeof_expression] = STATE(518), - [sym_subscript_expression] = STATE(518), - [sym_call_expression] = STATE(518), - [sym_field_expression] = STATE(518), - [sym_compound_literal_expression] = STATE(518), - [sym_parenthesized_expression] = STATE(518), - [sym_initializer_list] = STATE(519), - [sym_char_literal] = STATE(518), - [sym_concatenated_string] = STATE(518), - [sym_string_literal] = STATE(123), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1387), - [sym_comment] = ACTIONS(85), + [514] = { + [ts_builtin_sym_end] = ACTIONS(2067), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2069), + [sym_preproc_directive] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_typedef] = ACTIONS(2069), + [anon_sym_extern] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_auto] = ACTIONS(2069), + [anon_sym_register] = ACTIONS(2069), + [anon_sym_inline] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_restrict] = ACTIONS(2069), + [anon_sym_volatile] = ACTIONS(2069), + [anon_sym__Atomic] = ACTIONS(2069), + [anon_sym_unsigned] = ACTIONS(2069), + [anon_sym_long] = ACTIONS(2069), + [anon_sym_short] = ACTIONS(2069), + [sym_primitive_type] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_struct] = ACTIONS(2069), + [anon_sym_union] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_else] = ACTIONS(2069), + [anon_sym_switch] = ACTIONS(2069), + [anon_sym_case] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_do] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_goto] = ACTIONS(2069), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_sizeof] = ACTIONS(2069), + [sym_number_literal] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [sym_true] = ACTIONS(2069), + [sym_false] = ACTIONS(2069), + [sym_null] = ACTIONS(2069), + [sym_identifier] = ACTIONS(2069), + [sym_comment] = ACTIONS(81), }, - [581] = { - [anon_sym_RPAREN] = ACTIONS(2241), - [sym_comment] = ACTIONS(85), + [515] = { + [sym__expression] = STATE(771), + [sym_conditional_expression] = STATE(771), + [sym_assignment_expression] = STATE(771), + [sym_pointer_expression] = STATE(771), + [sym_logical_expression] = STATE(771), + [sym_bitwise_expression] = STATE(771), + [sym_equality_expression] = STATE(771), + [sym_relational_expression] = STATE(771), + [sym_shift_expression] = STATE(771), + [sym_math_expression] = STATE(771), + [sym_cast_expression] = STATE(771), + [sym_sizeof_expression] = STATE(771), + [sym_subscript_expression] = STATE(771), + [sym_call_expression] = STATE(771), + [sym_field_expression] = STATE(771), + [sym_compound_literal_expression] = STATE(771), + [sym_parenthesized_expression] = STATE(771), + [sym_char_literal] = STATE(771), + [sym_concatenated_string] = STATE(771), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(2071), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [sym_null] = ACTIONS(2075), + [sym_identifier] = ACTIONS(2075), + [sym_comment] = ACTIONS(81), }, - [582] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [516] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [583] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(2243), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [517] = { + [sym__expression] = STATE(773), + [sym_conditional_expression] = STATE(773), + [sym_assignment_expression] = STATE(773), + [sym_pointer_expression] = STATE(773), + [sym_logical_expression] = STATE(773), + [sym_bitwise_expression] = STATE(773), + [sym_equality_expression] = STATE(773), + [sym_relational_expression] = STATE(773), + [sym_shift_expression] = STATE(773), + [sym_math_expression] = STATE(773), + [sym_cast_expression] = STATE(773), + [sym_sizeof_expression] = STATE(773), + [sym_subscript_expression] = STATE(773), + [sym_call_expression] = STATE(773), + [sym_field_expression] = STATE(773), + [sym_compound_literal_expression] = STATE(773), + [sym_parenthesized_expression] = STATE(773), + [sym_char_literal] = STATE(773), + [sym_concatenated_string] = STATE(773), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2081), + [sym_false] = ACTIONS(2081), + [sym_null] = ACTIONS(2081), + [sym_identifier] = ACTIONS(2081), + [sym_comment] = ACTIONS(81), }, - [584] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [518] = { + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_pointer_expression] = STATE(471), + [sym_logical_expression] = STATE(471), + [sym_bitwise_expression] = STATE(471), + [sym_equality_expression] = STATE(471), + [sym_relational_expression] = STATE(471), + [sym_shift_expression] = STATE(471), + [sym_math_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(471), + [sym_call_expression] = STATE(471), + [sym_field_expression] = STATE(471), + [sym_compound_literal_expression] = STATE(471), + [sym_parenthesized_expression] = STATE(471), + [sym_initializer_list] = STATE(472), + [sym_char_literal] = STATE(471), + [sym_concatenated_string] = STATE(471), + [sym_string_literal] = STATE(107), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [sym_null] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1277), + [sym_comment] = ACTIONS(81), }, - [585] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1717), - [anon_sym_STAR_EQ] = ACTIONS(1717), - [anon_sym_SLASH_EQ] = ACTIONS(1717), - [anon_sym_PERCENT_EQ] = ACTIONS(1717), - [anon_sym_PLUS_EQ] = ACTIONS(1717), - [anon_sym_DASH_EQ] = ACTIONS(1717), - [anon_sym_LT_LT_EQ] = ACTIONS(1717), - [anon_sym_GT_GT_EQ] = ACTIONS(1717), - [anon_sym_AMP_EQ] = ACTIONS(1717), - [anon_sym_CARET_EQ] = ACTIONS(1717), - [anon_sym_PIPE_EQ] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [519] = { + [anon_sym_RPAREN] = ACTIONS(2083), + [sym_comment] = ACTIONS(81), }, - [586] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1717), - [anon_sym_STAR_EQ] = ACTIONS(1717), - [anon_sym_SLASH_EQ] = ACTIONS(1717), - [anon_sym_PERCENT_EQ] = ACTIONS(1717), - [anon_sym_PLUS_EQ] = ACTIONS(1717), - [anon_sym_DASH_EQ] = ACTIONS(1717), - [anon_sym_LT_LT_EQ] = ACTIONS(1717), - [anon_sym_GT_GT_EQ] = ACTIONS(1717), - [anon_sym_AMP_EQ] = ACTIONS(1717), - [anon_sym_CARET_EQ] = ACTIONS(1717), - [anon_sym_PIPE_EQ] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [520] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [587] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [521] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_COLON] = ACTIONS(2085), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_LT_LT_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_AMP_EQ] = ACTIONS(1563), + [anon_sym_CARET_EQ] = ACTIONS(1563), + [anon_sym_PIPE_EQ] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [588] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [522] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [589] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1723), - [anon_sym_QMARK] = ACTIONS(1721), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_PIPE_PIPE] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1721), - [anon_sym_BANG_EQ] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [523] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(1589), + [anon_sym_STAR_EQ] = ACTIONS(1589), + [anon_sym_SLASH_EQ] = ACTIONS(1589), + [anon_sym_PERCENT_EQ] = ACTIONS(1589), + [anon_sym_PLUS_EQ] = ACTIONS(1589), + [anon_sym_DASH_EQ] = ACTIONS(1589), + [anon_sym_LT_LT_EQ] = ACTIONS(1589), + [anon_sym_GT_GT_EQ] = ACTIONS(1589), + [anon_sym_AMP_EQ] = ACTIONS(1589), + [anon_sym_CARET_EQ] = ACTIONS(1589), + [anon_sym_PIPE_EQ] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [590] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1727), - [anon_sym_QMARK] = ACTIONS(1725), - [anon_sym_STAR_EQ] = ACTIONS(1725), - [anon_sym_SLASH_EQ] = ACTIONS(1725), - [anon_sym_PERCENT_EQ] = ACTIONS(1725), - [anon_sym_PLUS_EQ] = ACTIONS(1725), - [anon_sym_DASH_EQ] = ACTIONS(1725), - [anon_sym_LT_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_GT_EQ] = ACTIONS(1725), - [anon_sym_AMP_EQ] = ACTIONS(1725), - [anon_sym_CARET_EQ] = ACTIONS(1725), - [anon_sym_PIPE_EQ] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_PIPE_PIPE] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [524] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(1589), + [anon_sym_STAR_EQ] = ACTIONS(1589), + [anon_sym_SLASH_EQ] = ACTIONS(1589), + [anon_sym_PERCENT_EQ] = ACTIONS(1589), + [anon_sym_PLUS_EQ] = ACTIONS(1589), + [anon_sym_DASH_EQ] = ACTIONS(1589), + [anon_sym_LT_LT_EQ] = ACTIONS(1589), + [anon_sym_GT_GT_EQ] = ACTIONS(1589), + [anon_sym_AMP_EQ] = ACTIONS(1589), + [anon_sym_CARET_EQ] = ACTIONS(1589), + [anon_sym_PIPE_EQ] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [591] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(1729), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_STAR_EQ] = ACTIONS(1729), - [anon_sym_SLASH_EQ] = ACTIONS(1729), - [anon_sym_PERCENT_EQ] = ACTIONS(1729), - [anon_sym_PLUS_EQ] = ACTIONS(1729), - [anon_sym_DASH_EQ] = ACTIONS(1729), - [anon_sym_LT_LT_EQ] = ACTIONS(1729), - [anon_sym_GT_GT_EQ] = ACTIONS(1729), - [anon_sym_AMP_EQ] = ACTIONS(1729), - [anon_sym_CARET_EQ] = ACTIONS(1729), - [anon_sym_PIPE_EQ] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_CARET] = ACTIONS(1731), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1731), - [anon_sym_LT_EQ] = ACTIONS(1729), - [anon_sym_GT_EQ] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1731), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [525] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [592] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1669), - [anon_sym_STAR_EQ] = ACTIONS(1669), - [anon_sym_SLASH_EQ] = ACTIONS(1669), - [anon_sym_PERCENT_EQ] = ACTIONS(1669), - [anon_sym_PLUS_EQ] = ACTIONS(1669), - [anon_sym_DASH_EQ] = ACTIONS(1669), - [anon_sym_LT_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_GT_EQ] = ACTIONS(1669), - [anon_sym_AMP_EQ] = ACTIONS(1669), - [anon_sym_CARET_EQ] = ACTIONS(1669), - [anon_sym_PIPE_EQ] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_CARET] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [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(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [526] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [593] = { - [sym_string_literal] = STATE(593), - [aux_sym_concatenated_string_repeat1] = STATE(593), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1739), - [anon_sym_QMARK] = ACTIONS(1737), - [anon_sym_STAR_EQ] = ACTIONS(1737), - [anon_sym_SLASH_EQ] = ACTIONS(1737), - [anon_sym_PERCENT_EQ] = ACTIONS(1737), - [anon_sym_PLUS_EQ] = ACTIONS(1737), - [anon_sym_DASH_EQ] = ACTIONS(1737), - [anon_sym_LT_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_GT_EQ] = ACTIONS(1737), - [anon_sym_AMP_EQ] = ACTIONS(1737), - [anon_sym_CARET_EQ] = ACTIONS(1737), - [anon_sym_PIPE_EQ] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_CARET] = ACTIONS(1739), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_PERCENT] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DOT] = ACTIONS(1737), - [anon_sym_DASH_GT] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym_comment] = ACTIONS(85), + [527] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1595), + [anon_sym_QMARK] = ACTIONS(1593), + [anon_sym_STAR_EQ] = ACTIONS(1593), + [anon_sym_SLASH_EQ] = ACTIONS(1593), + [anon_sym_PERCENT_EQ] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(1593), + [anon_sym_DASH_EQ] = ACTIONS(1593), + [anon_sym_LT_LT_EQ] = ACTIONS(1593), + [anon_sym_GT_GT_EQ] = ACTIONS(1593), + [anon_sym_AMP_EQ] = ACTIONS(1593), + [anon_sym_CARET_EQ] = ACTIONS(1593), + [anon_sym_PIPE_EQ] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_PIPE_PIPE] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1593), + [anon_sym_PIPE] = ACTIONS(1595), + [anon_sym_CARET] = ACTIONS(1595), + [anon_sym_EQ_EQ] = ACTIONS(1593), + [anon_sym_BANG_EQ] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [594] = { - [sym__expression] = STATE(518), - [sym_conditional_expression] = STATE(518), - [sym_assignment_expression] = STATE(518), - [sym_pointer_expression] = STATE(518), - [sym_logical_expression] = STATE(518), - [sym_bitwise_expression] = STATE(518), - [sym_equality_expression] = STATE(518), - [sym_relational_expression] = STATE(518), - [sym_shift_expression] = STATE(518), - [sym_math_expression] = STATE(518), - [sym_cast_expression] = STATE(518), - [sym_sizeof_expression] = STATE(518), - [sym_subscript_expression] = STATE(518), - [sym_call_expression] = STATE(518), - [sym_field_expression] = STATE(518), - [sym_compound_literal_expression] = STATE(518), - [sym_parenthesized_expression] = STATE(518), - [sym_initializer_list] = STATE(519), - [sym_char_literal] = STATE(518), - [sym_concatenated_string] = STATE(518), - [sym_string_literal] = STATE(41), - [anon_sym_COMMA] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1383), + [528] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1599), + [anon_sym_QMARK] = ACTIONS(1597), + [anon_sym_STAR_EQ] = ACTIONS(1597), + [anon_sym_SLASH_EQ] = ACTIONS(1597), + [anon_sym_PERCENT_EQ] = ACTIONS(1597), + [anon_sym_PLUS_EQ] = ACTIONS(1597), + [anon_sym_DASH_EQ] = ACTIONS(1597), + [anon_sym_LT_LT_EQ] = ACTIONS(1597), + [anon_sym_GT_GT_EQ] = ACTIONS(1597), + [anon_sym_AMP_EQ] = ACTIONS(1597), + [anon_sym_CARET_EQ] = ACTIONS(1597), + [anon_sym_PIPE_EQ] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_PIPE_PIPE] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [529] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1601), + [anon_sym_STAR_EQ] = ACTIONS(1601), + [anon_sym_SLASH_EQ] = ACTIONS(1601), + [anon_sym_PERCENT_EQ] = ACTIONS(1601), + [anon_sym_PLUS_EQ] = ACTIONS(1601), + [anon_sym_DASH_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_GT_EQ] = ACTIONS(1601), + [anon_sym_AMP_EQ] = ACTIONS(1601), + [anon_sym_CARET_EQ] = ACTIONS(1601), + [anon_sym_PIPE_EQ] = ACTIONS(1601), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_PIPE_PIPE] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1603), + [anon_sym_GT] = ACTIONS(1603), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_EQ] = ACTIONS(1601), + [anon_sym_LT_LT] = ACTIONS(1603), + [anon_sym_GT_GT] = ACTIONS(1603), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [530] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1509), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [531] = { + [sym_string_literal] = STATE(531), + [aux_sym_concatenated_string_repeat1] = STATE(531), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_QMARK] = ACTIONS(1609), + [anon_sym_STAR_EQ] = ACTIONS(1609), + [anon_sym_SLASH_EQ] = ACTIONS(1609), + [anon_sym_PERCENT_EQ] = ACTIONS(1609), + [anon_sym_PLUS_EQ] = ACTIONS(1609), + [anon_sym_DASH_EQ] = ACTIONS(1609), + [anon_sym_LT_LT_EQ] = ACTIONS(1609), + [anon_sym_GT_GT_EQ] = ACTIONS(1609), + [anon_sym_AMP_EQ] = ACTIONS(1609), + [anon_sym_CARET_EQ] = ACTIONS(1609), + [anon_sym_PIPE_EQ] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PIPE_PIPE] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1611), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1611), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT_EQ] = ACTIONS(1609), + [anon_sym_LT_LT] = ACTIONS(1611), + [anon_sym_GT_GT] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_SLASH] = ACTIONS(1611), + [anon_sym_PERCENT] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_DOT] = ACTIONS(1609), + [anon_sym_DASH_GT] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1613), + [sym_comment] = ACTIONS(81), + }, + [532] = { + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_pointer_expression] = STATE(471), + [sym_logical_expression] = STATE(471), + [sym_bitwise_expression] = STATE(471), + [sym_equality_expression] = STATE(471), + [sym_relational_expression] = STATE(471), + [sym_shift_expression] = STATE(471), + [sym_math_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(471), + [sym_call_expression] = STATE(471), + [sym_field_expression] = STATE(471), + [sym_compound_literal_expression] = STATE(471), + [sym_parenthesized_expression] = STATE(471), + [sym_initializer_list] = STATE(472), + [sym_char_literal] = STATE(471), + [sym_concatenated_string] = STATE(471), + [sym_string_literal] = STATE(39), + [anon_sym_COMMA] = ACTIONS(2087), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(1273), [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_EQ] = ACTIONS(2249), - [anon_sym_QMARK] = ACTIONS(2245), - [anon_sym_STAR_EQ] = ACTIONS(2245), - [anon_sym_SLASH_EQ] = ACTIONS(2245), - [anon_sym_PERCENT_EQ] = ACTIONS(2245), - [anon_sym_PLUS_EQ] = ACTIONS(2245), - [anon_sym_DASH_EQ] = ACTIONS(2245), - [anon_sym_LT_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_GT_EQ] = ACTIONS(2245), - [anon_sym_AMP_EQ] = ACTIONS(2245), - [anon_sym_CARET_EQ] = ACTIONS(2245), - [anon_sym_PIPE_EQ] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2247), - [anon_sym_PIPE_PIPE] = ACTIONS(2245), - [anon_sym_AMP_AMP] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_EQ_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_GT] = ACTIONS(2249), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_GT_GT] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DASH_GT] = ACTIONS(2245), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1387), - [sym_comment] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_EQ] = ACTIONS(2091), + [anon_sym_QMARK] = ACTIONS(2087), + [anon_sym_STAR_EQ] = ACTIONS(2087), + [anon_sym_SLASH_EQ] = ACTIONS(2087), + [anon_sym_PERCENT_EQ] = ACTIONS(2087), + [anon_sym_PLUS_EQ] = ACTIONS(2087), + [anon_sym_DASH_EQ] = ACTIONS(2087), + [anon_sym_LT_LT_EQ] = ACTIONS(2087), + [anon_sym_GT_GT_EQ] = ACTIONS(2087), + [anon_sym_AMP_EQ] = ACTIONS(2087), + [anon_sym_CARET_EQ] = ACTIONS(2087), + [anon_sym_PIPE_EQ] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_PIPE_PIPE] = ACTIONS(2087), + [anon_sym_AMP_AMP] = ACTIONS(2087), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_PIPE] = ACTIONS(2091), + [anon_sym_CARET] = ACTIONS(2091), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_EQ_EQ] = ACTIONS(2087), + [anon_sym_BANG_EQ] = ACTIONS(2087), + [anon_sym_LT] = ACTIONS(2091), + [anon_sym_GT] = ACTIONS(2091), + [anon_sym_LT_EQ] = ACTIONS(2087), + [anon_sym_GT_EQ] = ACTIONS(2087), + [anon_sym_LT_LT] = ACTIONS(2091), + [anon_sym_GT_GT] = ACTIONS(2091), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(2091), + [anon_sym_PERCENT] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [anon_sym_DOT] = ACTIONS(2087), + [anon_sym_DASH_GT] = ACTIONS(2087), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [sym_null] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1277), + [sym_comment] = ACTIONS(81), }, - [595] = { - [anon_sym_COMMA] = ACTIONS(2253), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_SEMI] = ACTIONS(2253), - [anon_sym_extern] = ACTIONS(2255), - [anon_sym_LPAREN2] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2253), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_auto] = ACTIONS(2255), - [anon_sym_register] = ACTIONS(2255), - [anon_sym_inline] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_restrict] = ACTIONS(2255), - [anon_sym_volatile] = ACTIONS(2255), - [anon_sym__Atomic] = ACTIONS(2255), - [anon_sym_COLON] = ACTIONS(2253), - [sym_identifier] = ACTIONS(2255), - [sym_comment] = ACTIONS(85), + [533] = { + [anon_sym_COMMA] = ACTIONS(2095), + [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_extern] = ACTIONS(2097), + [anon_sym_LPAREN2] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_auto] = ACTIONS(2097), + [anon_sym_register] = ACTIONS(2097), + [anon_sym_inline] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_restrict] = ACTIONS(2097), + [anon_sym_volatile] = ACTIONS(2097), + [anon_sym__Atomic] = ACTIONS(2097), + [anon_sym_COLON] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2097), + [sym_comment] = ACTIONS(81), }, - [596] = { - [sym__declarator] = STATE(598), - [sym_pointer_declarator] = STATE(598), - [sym_function_declarator] = STATE(598), - [sym_array_declarator] = STATE(598), - [sym_type_qualifier] = STATE(599), - [aux_sym_type_definition_repeat1] = STATE(599), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(733), + [534] = { + [sym__declarator] = STATE(536), + [sym_pointer_declarator] = STATE(536), + [sym_function_declarator] = STATE(536), + [sym_array_declarator] = STATE(536), + [sym_type_qualifier] = STATE(537), + [aux_sym_type_definition_repeat1] = STATE(537), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(641), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1629), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(1467), + [sym_comment] = ACTIONS(81), }, - [597] = { - [anon_sym_COMMA] = ACTIONS(2257), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_LPAREN2] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_EQ] = ACTIONS(2257), - [sym_comment] = ACTIONS(85), + [535] = { + [anon_sym_COMMA] = ACTIONS(2099), + [anon_sym_RPAREN] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_EQ] = ACTIONS(2099), + [sym_comment] = ACTIONS(81), }, - [598] = { - [sym_parameter_list] = STATE(354), - [anon_sym_COMMA] = ACTIONS(2259), - [anon_sym_RPAREN] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(2259), - [sym_comment] = ACTIONS(85), + [536] = { + [sym_parameter_list] = STATE(309), + [anon_sym_COMMA] = ACTIONS(2101), + [anon_sym_RPAREN] = ACTIONS(2101), + [anon_sym_SEMI] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(2101), + [sym_comment] = ACTIONS(81), }, - [599] = { - [sym_type_qualifier] = STATE(599), - [aux_sym_type_definition_repeat1] = STATE(599), - [anon_sym_LPAREN2] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_restrict] = ACTIONS(1127), - [anon_sym_volatile] = ACTIONS(1127), - [anon_sym__Atomic] = ACTIONS(1127), - [sym_identifier] = ACTIONS(1130), - [sym_comment] = ACTIONS(85), + [537] = { + [sym_type_qualifier] = STATE(537), + [aux_sym_type_definition_repeat1] = STATE(537), + [anon_sym_LPAREN2] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_restrict] = ACTIONS(1033), + [anon_sym_volatile] = ACTIONS(1033), + [anon_sym__Atomic] = ACTIONS(1033), + [sym_identifier] = ACTIONS(1036), + [sym_comment] = ACTIONS(81), }, - [600] = { - [sym_parameter_list] = STATE(354), - [anon_sym_COMMA] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(747), - [sym_comment] = ACTIONS(85), + [538] = { + [sym_parameter_list] = STATE(309), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(655), + [sym_comment] = ACTIONS(81), }, - [601] = { - [anon_sym_COMMA] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2263), - [sym_comment] = ACTIONS(85), + [539] = { + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2105), + [sym_comment] = ACTIONS(81), }, - [602] = { - [sym__expression] = STATE(83), - [sym_conditional_expression] = STATE(83), - [sym_assignment_expression] = STATE(83), - [sym_pointer_expression] = STATE(83), - [sym_logical_expression] = STATE(83), - [sym_bitwise_expression] = STATE(83), - [sym_equality_expression] = STATE(83), - [sym_relational_expression] = STATE(83), - [sym_shift_expression] = STATE(83), - [sym_math_expression] = STATE(83), - [sym_cast_expression] = STATE(83), - [sym_sizeof_expression] = STATE(83), - [sym_subscript_expression] = STATE(83), - [sym_call_expression] = STATE(83), - [sym_field_expression] = STATE(83), - [sym_compound_literal_expression] = STATE(83), - [sym_parenthesized_expression] = STATE(83), - [sym_char_literal] = STATE(83), - [sym_concatenated_string] = STATE(83), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(2265), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(85), + [540] = { + [sym__expression] = STATE(78), + [sym_conditional_expression] = STATE(78), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(78), + [sym_call_expression] = STATE(78), + [sym_field_expression] = STATE(78), + [sym_compound_literal_expression] = STATE(78), + [sym_parenthesized_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_concatenated_string] = STATE(78), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(151), + [sym_false] = ACTIONS(151), + [sym_null] = ACTIONS(151), + [sym_identifier] = ACTIONS(151), + [sym_comment] = ACTIONS(81), }, - [603] = { - [anon_sym_COMMA] = ACTIONS(2267), - [anon_sym_RPAREN] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_LPAREN2] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_EQ] = ACTIONS(2267), - [sym_comment] = ACTIONS(85), + [541] = { + [anon_sym_COMMA] = ACTIONS(2109), + [anon_sym_RPAREN] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_EQ] = ACTIONS(2109), + [sym_comment] = ACTIONS(81), }, - [604] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(2265), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1685), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PERCENT_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_CARET_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [542] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(2107), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [605] = { - [sym_type_qualifier] = STATE(764), - [sym__expression] = STATE(835), - [sym_conditional_expression] = STATE(835), - [sym_assignment_expression] = STATE(835), - [sym_pointer_expression] = STATE(835), - [sym_logical_expression] = STATE(835), - [sym_bitwise_expression] = STATE(835), - [sym_equality_expression] = STATE(835), - [sym_relational_expression] = STATE(835), - [sym_shift_expression] = STATE(835), - [sym_math_expression] = STATE(835), - [sym_cast_expression] = STATE(835), - [sym_sizeof_expression] = STATE(835), - [sym_subscript_expression] = STATE(835), - [sym_call_expression] = STATE(835), - [sym_field_expression] = STATE(835), - [sym_compound_literal_expression] = STATE(835), - [sym_parenthesized_expression] = STATE(835), - [sym_char_literal] = STATE(835), - [sym_concatenated_string] = STATE(835), - [sym_string_literal] = STATE(369), - [aux_sym_type_definition_repeat1] = STATE(764), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(2269), - [anon_sym_RBRACK] = ACTIONS(2265), + [543] = { + [sym_type_qualifier] = STATE(707), + [sym__expression] = STATE(778), + [sym_conditional_expression] = STATE(778), + [sym_assignment_expression] = STATE(778), + [sym_pointer_expression] = STATE(778), + [sym_logical_expression] = STATE(778), + [sym_bitwise_expression] = STATE(778), + [sym_equality_expression] = STATE(778), + [sym_relational_expression] = STATE(778), + [sym_shift_expression] = STATE(778), + [sym_math_expression] = STATE(778), + [sym_cast_expression] = STATE(778), + [sym_sizeof_expression] = STATE(778), + [sym_subscript_expression] = STATE(778), + [sym_call_expression] = STATE(778), + [sym_field_expression] = STATE(778), + [sym_compound_literal_expression] = STATE(778), + [sym_parenthesized_expression] = STATE(778), + [sym_char_literal] = STATE(778), + [sym_concatenated_string] = STATE(778), + [sym_string_literal] = STATE(324), + [aux_sym_type_definition_repeat1] = STATE(707), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_RBRACK] = ACTIONS(2107), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2273), - [sym_false] = ACTIONS(2273), - [sym_null] = ACTIONS(2273), - [sym_identifier] = ACTIONS(2273), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(2113), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2115), + [sym_false] = ACTIONS(2115), + [sym_null] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2115), + [sym_comment] = ACTIONS(81), }, - [606] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(2275), - [anon_sym_SEMI] = ACTIONS(2275), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_STAR_EQ] = ACTIONS(317), - [anon_sym_SLASH_EQ] = ACTIONS(317), - [anon_sym_PERCENT_EQ] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(317), - [anon_sym_DASH_EQ] = ACTIONS(317), - [anon_sym_LT_LT_EQ] = ACTIONS(317), - [anon_sym_GT_GT_EQ] = ACTIONS(317), - [anon_sym_AMP_EQ] = ACTIONS(317), - [anon_sym_CARET_EQ] = ACTIONS(317), - [anon_sym_PIPE_EQ] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(319), - [anon_sym_PIPE_PIPE] = ACTIONS(321), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [544] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2117), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(281), + [anon_sym_STAR_EQ] = ACTIONS(283), + [anon_sym_SLASH_EQ] = ACTIONS(283), + [anon_sym_PERCENT_EQ] = ACTIONS(283), + [anon_sym_PLUS_EQ] = ACTIONS(283), + [anon_sym_DASH_EQ] = ACTIONS(283), + [anon_sym_LT_LT_EQ] = ACTIONS(283), + [anon_sym_GT_GT_EQ] = ACTIONS(283), + [anon_sym_AMP_EQ] = ACTIONS(283), + [anon_sym_CARET_EQ] = ACTIONS(283), + [anon_sym_PIPE_EQ] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [607] = { - [anon_sym_COMMA] = ACTIONS(2275), - [anon_sym_SEMI] = ACTIONS(2275), - [sym_comment] = ACTIONS(85), + [545] = { + [anon_sym_COMMA] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2117), + [sym_comment] = ACTIONS(81), }, - [608] = { - [ts_builtin_sym_end] = ACTIONS(2277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2279), - [sym_preproc_directive] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2277), - [anon_sym_typedef] = ACTIONS(2279), - [anon_sym_extern] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2277), - [anon_sym_RBRACE] = ACTIONS(2277), - [anon_sym_LPAREN2] = ACTIONS(2277), - [anon_sym_STAR] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2279), - [anon_sym_auto] = ACTIONS(2279), - [anon_sym_register] = ACTIONS(2279), - [anon_sym_inline] = ACTIONS(2279), - [anon_sym_const] = ACTIONS(2279), - [anon_sym_restrict] = ACTIONS(2279), - [anon_sym_volatile] = ACTIONS(2279), - [anon_sym__Atomic] = ACTIONS(2279), - [anon_sym_unsigned] = ACTIONS(2279), - [anon_sym_long] = ACTIONS(2279), - [anon_sym_short] = ACTIONS(2279), - [sym_primitive_type] = ACTIONS(2279), - [anon_sym_enum] = ACTIONS(2279), - [anon_sym_struct] = ACTIONS(2279), - [anon_sym_union] = ACTIONS(2279), - [anon_sym_if] = ACTIONS(2279), - [anon_sym_else] = ACTIONS(2279), - [anon_sym_switch] = ACTIONS(2279), - [anon_sym_case] = ACTIONS(2279), - [anon_sym_default] = ACTIONS(2279), - [anon_sym_while] = ACTIONS(2279), - [anon_sym_do] = ACTIONS(2279), - [anon_sym_for] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2279), - [anon_sym_break] = ACTIONS(2279), - [anon_sym_continue] = ACTIONS(2279), - [anon_sym_goto] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2277), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2277), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2277), - [anon_sym_PLUS_PLUS] = ACTIONS(2277), - [anon_sym_sizeof] = ACTIONS(2279), - [sym_number_literal] = ACTIONS(2277), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_DQUOTE] = ACTIONS(2277), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2279), - [sym_comment] = ACTIONS(85), + [546] = { + [ts_builtin_sym_end] = ACTIONS(2119), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2121), + [sym_preproc_directive] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_typedef] = ACTIONS(2121), + [anon_sym_extern] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_LPAREN2] = ACTIONS(2119), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_auto] = ACTIONS(2121), + [anon_sym_register] = ACTIONS(2121), + [anon_sym_inline] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_restrict] = ACTIONS(2121), + [anon_sym_volatile] = ACTIONS(2121), + [anon_sym__Atomic] = ACTIONS(2121), + [anon_sym_unsigned] = ACTIONS(2121), + [anon_sym_long] = ACTIONS(2121), + [anon_sym_short] = ACTIONS(2121), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2121), + [anon_sym_union] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_switch] = ACTIONS(2121), + [anon_sym_case] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_goto] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_sizeof] = ACTIONS(2121), + [sym_number_literal] = ACTIONS(2119), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(2119), + [sym_true] = ACTIONS(2121), + [sym_false] = ACTIONS(2121), + [sym_null] = ACTIONS(2121), + [sym_identifier] = ACTIONS(2121), + [sym_comment] = ACTIONS(81), }, - [609] = { - [aux_sym_declaration_repeat1] = STATE(609), - [anon_sym_COMMA] = ACTIONS(2281), - [anon_sym_SEMI] = ACTIONS(2263), - [sym_comment] = ACTIONS(85), + [547] = { + [aux_sym_declaration_repeat1] = STATE(547), + [anon_sym_COMMA] = ACTIONS(2123), + [anon_sym_SEMI] = ACTIONS(2105), + [sym_comment] = ACTIONS(81), }, - [610] = { - [sym__expression] = STATE(836), - [sym_conditional_expression] = STATE(836), - [sym_assignment_expression] = STATE(836), - [sym_pointer_expression] = STATE(836), - [sym_logical_expression] = STATE(836), - [sym_bitwise_expression] = STATE(836), - [sym_equality_expression] = STATE(836), - [sym_relational_expression] = STATE(836), - [sym_shift_expression] = STATE(836), - [sym_math_expression] = STATE(836), - [sym_cast_expression] = STATE(836), - [sym_sizeof_expression] = STATE(836), - [sym_subscript_expression] = STATE(836), - [sym_call_expression] = STATE(836), - [sym_field_expression] = STATE(836), - [sym_compound_literal_expression] = STATE(836), - [sym_parenthesized_expression] = STATE(836), - [sym_char_literal] = STATE(836), - [sym_concatenated_string] = STATE(836), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(2284), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2286), - [sym_false] = ACTIONS(2286), - [sym_null] = ACTIONS(2286), - [sym_identifier] = ACTIONS(2286), - [sym_comment] = ACTIONS(85), + [548] = { + [sym__expression] = STATE(779), + [sym_conditional_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_pointer_expression] = STATE(779), + [sym_logical_expression] = STATE(779), + [sym_bitwise_expression] = STATE(779), + [sym_equality_expression] = STATE(779), + [sym_relational_expression] = STATE(779), + [sym_shift_expression] = STATE(779), + [sym_math_expression] = STATE(779), + [sym_cast_expression] = STATE(779), + [sym_sizeof_expression] = STATE(779), + [sym_subscript_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_field_expression] = STATE(779), + [sym_compound_literal_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_char_literal] = STATE(779), + [sym_concatenated_string] = STATE(779), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2128), + [sym_false] = ACTIONS(2128), + [sym_null] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2128), + [sym_comment] = ACTIONS(81), }, - [611] = { - [anon_sym_COMMA] = ACTIONS(2288), - [anon_sym_RPAREN] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_LPAREN2] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_RBRACK] = ACTIONS(2288), - [anon_sym_EQ] = ACTIONS(2290), - [anon_sym_COLON] = ACTIONS(2288), - [anon_sym_QMARK] = ACTIONS(2288), - [anon_sym_STAR_EQ] = ACTIONS(2288), - [anon_sym_SLASH_EQ] = ACTIONS(2288), - [anon_sym_PERCENT_EQ] = ACTIONS(2288), - [anon_sym_PLUS_EQ] = ACTIONS(2288), - [anon_sym_DASH_EQ] = ACTIONS(2288), - [anon_sym_LT_LT_EQ] = ACTIONS(2288), - [anon_sym_GT_GT_EQ] = ACTIONS(2288), - [anon_sym_AMP_EQ] = ACTIONS(2288), - [anon_sym_CARET_EQ] = ACTIONS(2288), - [anon_sym_PIPE_EQ] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2290), - [anon_sym_LT_EQ] = ACTIONS(2288), - [anon_sym_GT_EQ] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2290), - [anon_sym_PLUS] = ACTIONS(2290), - [anon_sym_DASH] = ACTIONS(2290), - [anon_sym_SLASH] = ACTIONS(2290), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DOT] = ACTIONS(2288), - [anon_sym_DASH_GT] = ACTIONS(2288), - [sym_comment] = ACTIONS(85), + [549] = { + [anon_sym_COMMA] = ACTIONS(2130), + [anon_sym_RPAREN] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_LPAREN2] = ACTIONS(2130), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_RBRACK] = ACTIONS(2130), + [anon_sym_EQ] = ACTIONS(2132), + [anon_sym_COLON] = ACTIONS(2130), + [anon_sym_QMARK] = ACTIONS(2130), + [anon_sym_STAR_EQ] = ACTIONS(2130), + [anon_sym_SLASH_EQ] = ACTIONS(2130), + [anon_sym_PERCENT_EQ] = ACTIONS(2130), + [anon_sym_PLUS_EQ] = ACTIONS(2130), + [anon_sym_DASH_EQ] = ACTIONS(2130), + [anon_sym_LT_LT_EQ] = ACTIONS(2130), + [anon_sym_GT_GT_EQ] = ACTIONS(2130), + [anon_sym_AMP_EQ] = ACTIONS(2130), + [anon_sym_CARET_EQ] = ACTIONS(2130), + [anon_sym_PIPE_EQ] = ACTIONS(2130), + [anon_sym_AMP] = ACTIONS(2132), + [anon_sym_PIPE_PIPE] = ACTIONS(2130), + [anon_sym_AMP_AMP] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_CARET] = ACTIONS(2132), + [anon_sym_EQ_EQ] = ACTIONS(2130), + [anon_sym_BANG_EQ] = ACTIONS(2130), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_GT] = ACTIONS(2132), + [anon_sym_LT_EQ] = ACTIONS(2130), + [anon_sym_GT_EQ] = ACTIONS(2130), + [anon_sym_LT_LT] = ACTIONS(2132), + [anon_sym_GT_GT] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_SLASH] = ACTIONS(2132), + [anon_sym_PERCENT] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2130), + [anon_sym_PLUS_PLUS] = ACTIONS(2130), + [anon_sym_DOT] = ACTIONS(2130), + [anon_sym_DASH_GT] = ACTIONS(2130), + [sym_comment] = ACTIONS(81), }, - [612] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(2292), - [sym_comment] = ACTIONS(85), + [550] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(2134), + [sym_comment] = ACTIONS(81), }, - [613] = { - [anon_sym_RPAREN] = ACTIONS(2294), - [sym_comment] = ACTIONS(85), + [551] = { + [anon_sym_RPAREN] = ACTIONS(2136), + [sym_comment] = ACTIONS(81), }, - [614] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(76), - [sym_sized_type_specifier] = STATE(76), - [sym_enum_specifier] = STATE(76), - [sym_struct_specifier] = STATE(76), - [sym_union_specifier] = STATE(76), - [sym__expression] = STATE(77), - [sym_comma_expression] = STATE(78), - [sym_conditional_expression] = STATE(77), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_type_descriptor] = STATE(840), - [sym_sizeof_expression] = STATE(77), - [sym_subscript_expression] = STATE(77), - [sym_call_expression] = STATE(77), - [sym_field_expression] = STATE(77), - [sym_compound_literal_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(80), - [sym_macro_type_specifier] = STATE(76), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(82), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), + [552] = { + [sym_type_qualifier] = STATE(76), + [sym__type_specifier] = STATE(71), + [sym_sized_type_specifier] = STATE(71), + [sym_enum_specifier] = STATE(71), + [sym_struct_specifier] = STATE(71), + [sym_union_specifier] = STATE(71), + [sym__expression] = STATE(72), + [sym_comma_expression] = STATE(73), + [sym_conditional_expression] = STATE(72), + [sym_assignment_expression] = STATE(72), + [sym_pointer_expression] = STATE(72), + [sym_logical_expression] = STATE(72), + [sym_bitwise_expression] = STATE(72), + [sym_equality_expression] = STATE(72), + [sym_relational_expression] = STATE(72), + [sym_shift_expression] = STATE(72), + [sym_math_expression] = STATE(72), + [sym_cast_expression] = STATE(72), + [sym_type_descriptor] = STATE(783), + [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(72), + [sym_call_expression] = STATE(72), + [sym_field_expression] = STATE(72), + [sym_compound_literal_expression] = STATE(72), + [sym_parenthesized_expression] = STATE(72), + [sym_char_literal] = STATE(72), + [sym_concatenated_string] = STATE(72), + [sym_string_literal] = STATE(75), + [sym_macro_type_specifier] = STATE(71), + [aux_sym_type_definition_repeat1] = STATE(76), + [aux_sym_sized_type_specifier_repeat1] = STATE(77), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [sym_primitive_type] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(129), + [anon_sym_long] = ACTIONS(129), + [anon_sym_short] = ACTIONS(129), + [sym_primitive_type] = ACTIONS(131), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(155), - [sym_false] = ACTIONS(155), - [sym_null] = ACTIONS(155), - [sym_identifier] = ACTIONS(157), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_identifier] = ACTIONS(147), + [sym_comment] = ACTIONS(81), }, - [615] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(715), - [anon_sym_EQ] = ACTIONS(717), - [anon_sym_QMARK] = ACTIONS(715), - [anon_sym_STAR_EQ] = ACTIONS(715), - [anon_sym_SLASH_EQ] = ACTIONS(715), - [anon_sym_PERCENT_EQ] = ACTIONS(715), - [anon_sym_PLUS_EQ] = ACTIONS(715), - [anon_sym_DASH_EQ] = ACTIONS(715), - [anon_sym_LT_LT_EQ] = ACTIONS(715), - [anon_sym_GT_GT_EQ] = ACTIONS(715), - [anon_sym_AMP_EQ] = ACTIONS(715), - [anon_sym_CARET_EQ] = ACTIONS(715), - [anon_sym_PIPE_EQ] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_CARET] = ACTIONS(717), - [anon_sym_EQ_EQ] = ACTIONS(715), - [anon_sym_BANG_EQ] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_LT_EQ] = ACTIONS(715), - [anon_sym_GT_EQ] = ACTIONS(715), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [553] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_STAR_EQ] = ACTIONS(623), + [anon_sym_SLASH_EQ] = ACTIONS(623), + [anon_sym_PERCENT_EQ] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(623), + [anon_sym_DASH_EQ] = ACTIONS(623), + [anon_sym_LT_LT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_EQ] = ACTIONS(623), + [anon_sym_AMP_EQ] = ACTIONS(623), + [anon_sym_CARET_EQ] = ACTIONS(623), + [anon_sym_PIPE_EQ] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [616] = { - [sym__expression] = STATE(361), - [sym_conditional_expression] = STATE(361), - [sym_assignment_expression] = STATE(361), - [sym_pointer_expression] = STATE(361), - [sym_logical_expression] = STATE(361), - [sym_bitwise_expression] = STATE(361), - [sym_equality_expression] = STATE(361), - [sym_relational_expression] = STATE(361), - [sym_shift_expression] = STATE(361), - [sym_math_expression] = STATE(361), - [sym_cast_expression] = STATE(361), - [sym_sizeof_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_call_expression] = STATE(361), - [sym_field_expression] = STATE(361), - [sym_compound_literal_expression] = STATE(361), - [sym_parenthesized_expression] = STATE(361), - [sym_char_literal] = STATE(361), - [sym_concatenated_string] = STATE(361), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(767), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(769), - [sym_false] = ACTIONS(769), - [sym_null] = ACTIONS(769), - [sym_identifier] = ACTIONS(769), - [sym_comment] = ACTIONS(85), + [554] = { + [sym__expression] = STATE(316), + [sym_conditional_expression] = STATE(316), + [sym_assignment_expression] = STATE(316), + [sym_pointer_expression] = STATE(316), + [sym_logical_expression] = STATE(316), + [sym_bitwise_expression] = STATE(316), + [sym_equality_expression] = STATE(316), + [sym_relational_expression] = STATE(316), + [sym_shift_expression] = STATE(316), + [sym_math_expression] = STATE(316), + [sym_cast_expression] = STATE(316), + [sym_sizeof_expression] = STATE(316), + [sym_subscript_expression] = STATE(316), + [sym_call_expression] = STATE(316), + [sym_field_expression] = STATE(316), + [sym_compound_literal_expression] = STATE(316), + [sym_parenthesized_expression] = STATE(316), + [sym_char_literal] = STATE(316), + [sym_concatenated_string] = STATE(316), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(677), + [sym_false] = ACTIONS(677), + [sym_null] = ACTIONS(677), + [sym_identifier] = ACTIONS(677), + [sym_comment] = ACTIONS(81), }, - [617] = { - [anon_sym_COMMA] = ACTIONS(2296), - [anon_sym_RPAREN] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_LPAREN2] = ACTIONS(2296), - [anon_sym_STAR] = ACTIONS(2298), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_RBRACK] = ACTIONS(2296), - [anon_sym_EQ] = ACTIONS(2298), - [anon_sym_COLON] = ACTIONS(2296), - [anon_sym_QMARK] = ACTIONS(2296), - [anon_sym_STAR_EQ] = ACTIONS(2296), - [anon_sym_SLASH_EQ] = ACTIONS(2296), - [anon_sym_PERCENT_EQ] = ACTIONS(2296), - [anon_sym_PLUS_EQ] = ACTIONS(2296), - [anon_sym_DASH_EQ] = ACTIONS(2296), - [anon_sym_LT_LT_EQ] = ACTIONS(2296), - [anon_sym_GT_GT_EQ] = ACTIONS(2296), - [anon_sym_AMP_EQ] = ACTIONS(2296), - [anon_sym_CARET_EQ] = ACTIONS(2296), - [anon_sym_PIPE_EQ] = ACTIONS(2296), - [anon_sym_AMP] = ACTIONS(2298), - [anon_sym_PIPE_PIPE] = ACTIONS(2296), - [anon_sym_AMP_AMP] = ACTIONS(2296), - [anon_sym_PIPE] = ACTIONS(2298), - [anon_sym_CARET] = ACTIONS(2298), - [anon_sym_EQ_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ] = ACTIONS(2296), - [anon_sym_LT] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2298), - [anon_sym_LT_EQ] = ACTIONS(2296), - [anon_sym_GT_EQ] = ACTIONS(2296), - [anon_sym_LT_LT] = ACTIONS(2298), - [anon_sym_GT_GT] = ACTIONS(2298), - [anon_sym_PLUS] = ACTIONS(2298), - [anon_sym_DASH] = ACTIONS(2298), - [anon_sym_SLASH] = ACTIONS(2298), - [anon_sym_PERCENT] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2296), - [anon_sym_DOT] = ACTIONS(2296), - [anon_sym_DASH_GT] = ACTIONS(2296), - [sym_comment] = ACTIONS(85), + [555] = { + [anon_sym_COMMA] = ACTIONS(2138), + [anon_sym_RPAREN] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_RBRACK] = ACTIONS(2138), + [anon_sym_EQ] = ACTIONS(2140), + [anon_sym_COLON] = ACTIONS(2138), + [anon_sym_QMARK] = ACTIONS(2138), + [anon_sym_STAR_EQ] = ACTIONS(2138), + [anon_sym_SLASH_EQ] = ACTIONS(2138), + [anon_sym_PERCENT_EQ] = ACTIONS(2138), + [anon_sym_PLUS_EQ] = ACTIONS(2138), + [anon_sym_DASH_EQ] = ACTIONS(2138), + [anon_sym_LT_LT_EQ] = ACTIONS(2138), + [anon_sym_GT_GT_EQ] = ACTIONS(2138), + [anon_sym_AMP_EQ] = ACTIONS(2138), + [anon_sym_CARET_EQ] = ACTIONS(2138), + [anon_sym_PIPE_EQ] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2140), + [anon_sym_PIPE_PIPE] = ACTIONS(2138), + [anon_sym_AMP_AMP] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_CARET] = ACTIONS(2140), + [anon_sym_EQ_EQ] = ACTIONS(2138), + [anon_sym_BANG_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2140), + [anon_sym_GT] = ACTIONS(2140), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_GT_EQ] = ACTIONS(2138), + [anon_sym_LT_LT] = ACTIONS(2140), + [anon_sym_GT_GT] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2140), + [anon_sym_DASH] = ACTIONS(2140), + [anon_sym_SLASH] = ACTIONS(2140), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_DASH_DASH] = ACTIONS(2138), + [anon_sym_PLUS_PLUS] = ACTIONS(2138), + [anon_sym_DOT] = ACTIONS(2138), + [anon_sym_DASH_GT] = ACTIONS(2138), + [sym_comment] = ACTIONS(81), }, - [618] = { - [sym__expression] = STATE(841), - [sym_conditional_expression] = STATE(841), - [sym_assignment_expression] = STATE(841), - [sym_pointer_expression] = STATE(841), - [sym_logical_expression] = STATE(841), - [sym_bitwise_expression] = STATE(841), - [sym_equality_expression] = STATE(841), - [sym_relational_expression] = STATE(841), - [sym_shift_expression] = STATE(841), - [sym_math_expression] = STATE(841), - [sym_cast_expression] = STATE(841), - [sym_sizeof_expression] = STATE(841), - [sym_subscript_expression] = STATE(841), - [sym_call_expression] = STATE(841), - [sym_field_expression] = STATE(841), - [sym_compound_literal_expression] = STATE(841), - [sym_parenthesized_expression] = STATE(841), - [sym_char_literal] = STATE(841), - [sym_concatenated_string] = STATE(841), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2300), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_identifier] = ACTIONS(2302), - [sym_comment] = ACTIONS(85), + [556] = { + [sym__expression] = STATE(784), + [sym_conditional_expression] = STATE(784), + [sym_assignment_expression] = STATE(784), + [sym_pointer_expression] = STATE(784), + [sym_logical_expression] = STATE(784), + [sym_bitwise_expression] = STATE(784), + [sym_equality_expression] = STATE(784), + [sym_relational_expression] = STATE(784), + [sym_shift_expression] = STATE(784), + [sym_math_expression] = STATE(784), + [sym_cast_expression] = STATE(784), + [sym_sizeof_expression] = STATE(784), + [sym_subscript_expression] = STATE(784), + [sym_call_expression] = STATE(784), + [sym_field_expression] = STATE(784), + [sym_compound_literal_expression] = STATE(784), + [sym_parenthesized_expression] = STATE(784), + [sym_char_literal] = STATE(784), + [sym_concatenated_string] = STATE(784), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2144), + [sym_false] = ACTIONS(2144), + [sym_null] = ACTIONS(2144), + [sym_identifier] = ACTIONS(2144), + [sym_comment] = ACTIONS(81), }, - [619] = { - [sym__expression] = STATE(842), - [sym_conditional_expression] = STATE(842), - [sym_assignment_expression] = STATE(842), - [sym_pointer_expression] = STATE(842), - [sym_logical_expression] = STATE(842), - [sym_bitwise_expression] = STATE(842), - [sym_equality_expression] = STATE(842), - [sym_relational_expression] = STATE(842), - [sym_shift_expression] = STATE(842), - [sym_math_expression] = STATE(842), - [sym_cast_expression] = STATE(842), - [sym_sizeof_expression] = STATE(842), - [sym_subscript_expression] = STATE(842), - [sym_call_expression] = STATE(842), - [sym_field_expression] = STATE(842), - [sym_compound_literal_expression] = STATE(842), - [sym_parenthesized_expression] = STATE(842), - [sym_char_literal] = STATE(842), - [sym_concatenated_string] = STATE(842), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2306), - [sym_false] = ACTIONS(2306), - [sym_null] = ACTIONS(2306), - [sym_identifier] = ACTIONS(2306), - [sym_comment] = ACTIONS(85), + [557] = { + [sym__expression] = STATE(785), + [sym_conditional_expression] = STATE(785), + [sym_assignment_expression] = STATE(785), + [sym_pointer_expression] = STATE(785), + [sym_logical_expression] = STATE(785), + [sym_bitwise_expression] = STATE(785), + [sym_equality_expression] = STATE(785), + [sym_relational_expression] = STATE(785), + [sym_shift_expression] = STATE(785), + [sym_math_expression] = STATE(785), + [sym_cast_expression] = STATE(785), + [sym_sizeof_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_call_expression] = STATE(785), + [sym_field_expression] = STATE(785), + [sym_compound_literal_expression] = STATE(785), + [sym_parenthesized_expression] = STATE(785), + [sym_char_literal] = STATE(785), + [sym_concatenated_string] = STATE(785), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2148), + [sym_false] = ACTIONS(2148), + [sym_null] = ACTIONS(2148), + [sym_identifier] = ACTIONS(2148), + [sym_comment] = ACTIONS(81), }, - [620] = { - [sym__expression] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(843), - [sym_logical_expression] = STATE(843), - [sym_bitwise_expression] = STATE(843), - [sym_equality_expression] = STATE(843), - [sym_relational_expression] = STATE(843), - [sym_shift_expression] = STATE(843), - [sym_math_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(843), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2308), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2310), - [sym_false] = ACTIONS(2310), - [sym_null] = ACTIONS(2310), - [sym_identifier] = ACTIONS(2310), - [sym_comment] = ACTIONS(85), + [558] = { + [sym__expression] = STATE(786), + [sym_conditional_expression] = STATE(786), + [sym_assignment_expression] = STATE(786), + [sym_pointer_expression] = STATE(786), + [sym_logical_expression] = STATE(786), + [sym_bitwise_expression] = STATE(786), + [sym_equality_expression] = STATE(786), + [sym_relational_expression] = STATE(786), + [sym_shift_expression] = STATE(786), + [sym_math_expression] = STATE(786), + [sym_cast_expression] = STATE(786), + [sym_sizeof_expression] = STATE(786), + [sym_subscript_expression] = STATE(786), + [sym_call_expression] = STATE(786), + [sym_field_expression] = STATE(786), + [sym_compound_literal_expression] = STATE(786), + [sym_parenthesized_expression] = STATE(786), + [sym_char_literal] = STATE(786), + [sym_concatenated_string] = STATE(786), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(2150), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [sym_null] = ACTIONS(2152), + [sym_identifier] = ACTIONS(2152), + [sym_comment] = ACTIONS(81), }, - [621] = { - [sym__expression] = STATE(844), - [sym_conditional_expression] = STATE(844), - [sym_assignment_expression] = STATE(844), - [sym_pointer_expression] = STATE(844), - [sym_logical_expression] = STATE(844), - [sym_bitwise_expression] = STATE(844), - [sym_equality_expression] = STATE(844), - [sym_relational_expression] = STATE(844), - [sym_shift_expression] = STATE(844), - [sym_math_expression] = STATE(844), - [sym_cast_expression] = STATE(844), - [sym_sizeof_expression] = STATE(844), - [sym_subscript_expression] = STATE(844), - [sym_call_expression] = STATE(844), - [sym_field_expression] = STATE(844), - [sym_compound_literal_expression] = STATE(844), - [sym_parenthesized_expression] = STATE(844), - [sym_char_literal] = STATE(844), - [sym_concatenated_string] = STATE(844), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2312), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2314), - [sym_false] = ACTIONS(2314), - [sym_null] = ACTIONS(2314), - [sym_identifier] = ACTIONS(2314), - [sym_comment] = ACTIONS(85), + [559] = { + [sym__expression] = STATE(787), + [sym_conditional_expression] = STATE(787), + [sym_assignment_expression] = STATE(787), + [sym_pointer_expression] = STATE(787), + [sym_logical_expression] = STATE(787), + [sym_bitwise_expression] = STATE(787), + [sym_equality_expression] = STATE(787), + [sym_relational_expression] = STATE(787), + [sym_shift_expression] = STATE(787), + [sym_math_expression] = STATE(787), + [sym_cast_expression] = STATE(787), + [sym_sizeof_expression] = STATE(787), + [sym_subscript_expression] = STATE(787), + [sym_call_expression] = STATE(787), + [sym_field_expression] = STATE(787), + [sym_compound_literal_expression] = STATE(787), + [sym_parenthesized_expression] = STATE(787), + [sym_char_literal] = STATE(787), + [sym_concatenated_string] = STATE(787), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(2154), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2156), + [sym_false] = ACTIONS(2156), + [sym_null] = ACTIONS(2156), + [sym_identifier] = ACTIONS(2156), + [sym_comment] = ACTIONS(81), }, - [622] = { - [sym__expression] = STATE(845), - [sym_conditional_expression] = STATE(845), - [sym_assignment_expression] = STATE(845), - [sym_pointer_expression] = STATE(845), - [sym_logical_expression] = STATE(845), - [sym_bitwise_expression] = STATE(845), - [sym_equality_expression] = STATE(845), - [sym_relational_expression] = STATE(845), - [sym_shift_expression] = STATE(845), - [sym_math_expression] = STATE(845), - [sym_cast_expression] = STATE(845), - [sym_sizeof_expression] = STATE(845), - [sym_subscript_expression] = STATE(845), - [sym_call_expression] = STATE(845), - [sym_field_expression] = STATE(845), - [sym_compound_literal_expression] = STATE(845), - [sym_parenthesized_expression] = STATE(845), - [sym_char_literal] = STATE(845), - [sym_concatenated_string] = STATE(845), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2316), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2318), - [sym_false] = ACTIONS(2318), - [sym_null] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2318), - [sym_comment] = ACTIONS(85), + [560] = { + [sym__expression] = STATE(788), + [sym_conditional_expression] = STATE(788), + [sym_assignment_expression] = STATE(788), + [sym_pointer_expression] = STATE(788), + [sym_logical_expression] = STATE(788), + [sym_bitwise_expression] = STATE(788), + [sym_equality_expression] = STATE(788), + [sym_relational_expression] = STATE(788), + [sym_shift_expression] = STATE(788), + [sym_math_expression] = STATE(788), + [sym_cast_expression] = STATE(788), + [sym_sizeof_expression] = STATE(788), + [sym_subscript_expression] = STATE(788), + [sym_call_expression] = STATE(788), + [sym_field_expression] = STATE(788), + [sym_compound_literal_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(788), + [sym_char_literal] = STATE(788), + [sym_concatenated_string] = STATE(788), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2160), + [sym_comment] = ACTIONS(81), }, - [623] = { - [sym__expression] = STATE(846), - [sym_conditional_expression] = STATE(846), - [sym_assignment_expression] = STATE(846), - [sym_pointer_expression] = STATE(846), - [sym_logical_expression] = STATE(846), - [sym_bitwise_expression] = STATE(846), - [sym_equality_expression] = STATE(846), - [sym_relational_expression] = STATE(846), - [sym_shift_expression] = STATE(846), - [sym_math_expression] = STATE(846), - [sym_cast_expression] = STATE(846), - [sym_sizeof_expression] = STATE(846), - [sym_subscript_expression] = STATE(846), - [sym_call_expression] = STATE(846), - [sym_field_expression] = STATE(846), - [sym_compound_literal_expression] = STATE(846), - [sym_parenthesized_expression] = STATE(846), - [sym_char_literal] = STATE(846), - [sym_concatenated_string] = STATE(846), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2320), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2322), - [sym_false] = ACTIONS(2322), - [sym_null] = ACTIONS(2322), - [sym_identifier] = ACTIONS(2322), - [sym_comment] = ACTIONS(85), + [561] = { + [sym__expression] = STATE(789), + [sym_conditional_expression] = STATE(789), + [sym_assignment_expression] = STATE(789), + [sym_pointer_expression] = STATE(789), + [sym_logical_expression] = STATE(789), + [sym_bitwise_expression] = STATE(789), + [sym_equality_expression] = STATE(789), + [sym_relational_expression] = STATE(789), + [sym_shift_expression] = STATE(789), + [sym_math_expression] = STATE(789), + [sym_cast_expression] = STATE(789), + [sym_sizeof_expression] = STATE(789), + [sym_subscript_expression] = STATE(789), + [sym_call_expression] = STATE(789), + [sym_field_expression] = STATE(789), + [sym_compound_literal_expression] = STATE(789), + [sym_parenthesized_expression] = STATE(789), + [sym_char_literal] = STATE(789), + [sym_concatenated_string] = STATE(789), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2164), + [sym_false] = ACTIONS(2164), + [sym_null] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2164), + [sym_comment] = ACTIONS(81), }, - [624] = { - [sym__expression] = STATE(847), - [sym_conditional_expression] = STATE(847), - [sym_assignment_expression] = STATE(847), - [sym_pointer_expression] = STATE(847), - [sym_logical_expression] = STATE(847), - [sym_bitwise_expression] = STATE(847), - [sym_equality_expression] = STATE(847), - [sym_relational_expression] = STATE(847), - [sym_shift_expression] = STATE(847), - [sym_math_expression] = STATE(847), - [sym_cast_expression] = STATE(847), - [sym_sizeof_expression] = STATE(847), - [sym_subscript_expression] = STATE(847), - [sym_call_expression] = STATE(847), - [sym_field_expression] = STATE(847), - [sym_compound_literal_expression] = STATE(847), - [sym_parenthesized_expression] = STATE(847), - [sym_char_literal] = STATE(847), - [sym_concatenated_string] = STATE(847), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2324), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2326), - [sym_false] = ACTIONS(2326), - [sym_null] = ACTIONS(2326), - [sym_identifier] = ACTIONS(2326), - [sym_comment] = ACTIONS(85), + [562] = { + [sym__expression] = STATE(790), + [sym_conditional_expression] = STATE(790), + [sym_assignment_expression] = STATE(790), + [sym_pointer_expression] = STATE(790), + [sym_logical_expression] = STATE(790), + [sym_bitwise_expression] = STATE(790), + [sym_equality_expression] = STATE(790), + [sym_relational_expression] = STATE(790), + [sym_shift_expression] = STATE(790), + [sym_math_expression] = STATE(790), + [sym_cast_expression] = STATE(790), + [sym_sizeof_expression] = STATE(790), + [sym_subscript_expression] = STATE(790), + [sym_call_expression] = STATE(790), + [sym_field_expression] = STATE(790), + [sym_compound_literal_expression] = STATE(790), + [sym_parenthesized_expression] = STATE(790), + [sym_char_literal] = STATE(790), + [sym_concatenated_string] = STATE(790), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2168), + [sym_false] = ACTIONS(2168), + [sym_null] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2168), + [sym_comment] = ACTIONS(81), }, - [625] = { - [sym__expression] = STATE(848), - [sym_conditional_expression] = STATE(848), - [sym_assignment_expression] = STATE(848), - [sym_pointer_expression] = STATE(848), - [sym_logical_expression] = STATE(848), - [sym_bitwise_expression] = STATE(848), - [sym_equality_expression] = STATE(848), - [sym_relational_expression] = STATE(848), - [sym_shift_expression] = STATE(848), - [sym_math_expression] = STATE(848), - [sym_cast_expression] = STATE(848), - [sym_sizeof_expression] = STATE(848), - [sym_subscript_expression] = STATE(848), - [sym_call_expression] = STATE(848), - [sym_field_expression] = STATE(848), - [sym_compound_literal_expression] = STATE(848), - [sym_parenthesized_expression] = STATE(848), - [sym_char_literal] = STATE(848), - [sym_concatenated_string] = STATE(848), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2330), - [sym_false] = ACTIONS(2330), - [sym_null] = ACTIONS(2330), - [sym_identifier] = ACTIONS(2330), - [sym_comment] = ACTIONS(85), + [563] = { + [sym__expression] = STATE(791), + [sym_conditional_expression] = STATE(791), + [sym_assignment_expression] = STATE(791), + [sym_pointer_expression] = STATE(791), + [sym_logical_expression] = STATE(791), + [sym_bitwise_expression] = STATE(791), + [sym_equality_expression] = STATE(791), + [sym_relational_expression] = STATE(791), + [sym_shift_expression] = STATE(791), + [sym_math_expression] = STATE(791), + [sym_cast_expression] = STATE(791), + [sym_sizeof_expression] = STATE(791), + [sym_subscript_expression] = STATE(791), + [sym_call_expression] = STATE(791), + [sym_field_expression] = STATE(791), + [sym_compound_literal_expression] = STATE(791), + [sym_parenthesized_expression] = STATE(791), + [sym_char_literal] = STATE(791), + [sym_concatenated_string] = STATE(791), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_identifier] = ACTIONS(2172), + [sym_comment] = ACTIONS(81), }, - [626] = { - [sym__expression] = STATE(849), - [sym_conditional_expression] = STATE(849), - [sym_assignment_expression] = STATE(849), - [sym_pointer_expression] = STATE(849), - [sym_logical_expression] = STATE(849), - [sym_bitwise_expression] = STATE(849), - [sym_equality_expression] = STATE(849), - [sym_relational_expression] = STATE(849), - [sym_shift_expression] = STATE(849), - [sym_math_expression] = STATE(849), - [sym_cast_expression] = STATE(849), - [sym_sizeof_expression] = STATE(849), - [sym_subscript_expression] = STATE(849), - [sym_call_expression] = STATE(849), - [sym_field_expression] = STATE(849), - [sym_compound_literal_expression] = STATE(849), - [sym_parenthesized_expression] = STATE(849), - [sym_char_literal] = STATE(849), - [sym_concatenated_string] = STATE(849), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2334), - [sym_false] = ACTIONS(2334), - [sym_null] = ACTIONS(2334), - [sym_identifier] = ACTIONS(2334), - [sym_comment] = ACTIONS(85), + [564] = { + [sym__expression] = STATE(792), + [sym_conditional_expression] = STATE(792), + [sym_assignment_expression] = STATE(792), + [sym_pointer_expression] = STATE(792), + [sym_logical_expression] = STATE(792), + [sym_bitwise_expression] = STATE(792), + [sym_equality_expression] = STATE(792), + [sym_relational_expression] = STATE(792), + [sym_shift_expression] = STATE(792), + [sym_math_expression] = STATE(792), + [sym_cast_expression] = STATE(792), + [sym_sizeof_expression] = STATE(792), + [sym_subscript_expression] = STATE(792), + [sym_call_expression] = STATE(792), + [sym_field_expression] = STATE(792), + [sym_compound_literal_expression] = STATE(792), + [sym_parenthesized_expression] = STATE(792), + [sym_char_literal] = STATE(792), + [sym_concatenated_string] = STATE(792), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(2174), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2176), + [sym_false] = ACTIONS(2176), + [sym_null] = ACTIONS(2176), + [sym_identifier] = ACTIONS(2176), + [sym_comment] = ACTIONS(81), }, - [627] = { - [sym__expression] = STATE(850), - [sym_conditional_expression] = STATE(850), - [sym_assignment_expression] = STATE(850), - [sym_pointer_expression] = STATE(850), - [sym_logical_expression] = STATE(850), - [sym_bitwise_expression] = STATE(850), - [sym_equality_expression] = STATE(850), - [sym_relational_expression] = STATE(850), - [sym_shift_expression] = STATE(850), - [sym_math_expression] = STATE(850), - [sym_cast_expression] = STATE(850), - [sym_sizeof_expression] = STATE(850), - [sym_subscript_expression] = STATE(850), - [sym_call_expression] = STATE(850), - [sym_field_expression] = STATE(850), - [sym_compound_literal_expression] = STATE(850), - [sym_parenthesized_expression] = STATE(850), - [sym_char_literal] = STATE(850), - [sym_concatenated_string] = STATE(850), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2336), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2338), - [sym_false] = ACTIONS(2338), - [sym_null] = ACTIONS(2338), - [sym_identifier] = ACTIONS(2338), - [sym_comment] = ACTIONS(85), + [565] = { + [sym__expression] = STATE(793), + [sym_conditional_expression] = STATE(793), + [sym_assignment_expression] = STATE(793), + [sym_pointer_expression] = STATE(793), + [sym_logical_expression] = STATE(793), + [sym_bitwise_expression] = STATE(793), + [sym_equality_expression] = STATE(793), + [sym_relational_expression] = STATE(793), + [sym_shift_expression] = STATE(793), + [sym_math_expression] = STATE(793), + [sym_cast_expression] = STATE(793), + [sym_sizeof_expression] = STATE(793), + [sym_subscript_expression] = STATE(793), + [sym_call_expression] = STATE(793), + [sym_field_expression] = STATE(793), + [sym_compound_literal_expression] = STATE(793), + [sym_parenthesized_expression] = STATE(793), + [sym_char_literal] = STATE(793), + [sym_concatenated_string] = STATE(793), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2180), + [sym_false] = ACTIONS(2180), + [sym_null] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2180), + [sym_comment] = ACTIONS(81), }, - [628] = { - [sym__expression] = STATE(851), - [sym_conditional_expression] = STATE(851), - [sym_assignment_expression] = STATE(851), - [sym_pointer_expression] = STATE(851), - [sym_logical_expression] = STATE(851), - [sym_bitwise_expression] = STATE(851), - [sym_equality_expression] = STATE(851), - [sym_relational_expression] = STATE(851), - [sym_shift_expression] = STATE(851), - [sym_math_expression] = STATE(851), - [sym_cast_expression] = STATE(851), - [sym_sizeof_expression] = STATE(851), - [sym_subscript_expression] = STATE(851), - [sym_call_expression] = STATE(851), - [sym_field_expression] = STATE(851), - [sym_compound_literal_expression] = STATE(851), - [sym_parenthesized_expression] = STATE(851), - [sym_char_literal] = STATE(851), - [sym_concatenated_string] = STATE(851), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2340), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2342), - [sym_false] = ACTIONS(2342), - [sym_null] = ACTIONS(2342), - [sym_identifier] = ACTIONS(2342), - [sym_comment] = ACTIONS(85), + [566] = { + [sym__expression] = STATE(794), + [sym_conditional_expression] = STATE(794), + [sym_assignment_expression] = STATE(794), + [sym_pointer_expression] = STATE(794), + [sym_logical_expression] = STATE(794), + [sym_bitwise_expression] = STATE(794), + [sym_equality_expression] = STATE(794), + [sym_relational_expression] = STATE(794), + [sym_shift_expression] = STATE(794), + [sym_math_expression] = STATE(794), + [sym_cast_expression] = STATE(794), + [sym_sizeof_expression] = STATE(794), + [sym_subscript_expression] = STATE(794), + [sym_call_expression] = STATE(794), + [sym_field_expression] = STATE(794), + [sym_compound_literal_expression] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_char_literal] = STATE(794), + [sym_concatenated_string] = STATE(794), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(2182), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2184), + [sym_false] = ACTIONS(2184), + [sym_null] = ACTIONS(2184), + [sym_identifier] = ACTIONS(2184), + [sym_comment] = ACTIONS(81), }, - [629] = { - [sym_string_literal] = STATE(852), - [aux_sym_concatenated_string_repeat1] = STATE(852), - [anon_sym_LPAREN2] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(839), - [anon_sym_RBRACK] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_STAR_EQ] = ACTIONS(839), - [anon_sym_SLASH_EQ] = ACTIONS(839), - [anon_sym_PERCENT_EQ] = ACTIONS(839), - [anon_sym_PLUS_EQ] = ACTIONS(839), - [anon_sym_DASH_EQ] = ACTIONS(839), - [anon_sym_LT_LT_EQ] = ACTIONS(839), - [anon_sym_GT_GT_EQ] = ACTIONS(839), - [anon_sym_AMP_EQ] = ACTIONS(839), - [anon_sym_CARET_EQ] = ACTIONS(839), - [anon_sym_PIPE_EQ] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(841), - [anon_sym_PIPE_PIPE] = ACTIONS(839), - [anon_sym_AMP_AMP] = ACTIONS(839), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(839), - [anon_sym_BANG_EQ] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_LT_EQ] = ACTIONS(839), - [anon_sym_GT_EQ] = ACTIONS(839), - [anon_sym_LT_LT] = ACTIONS(841), - [anon_sym_GT_GT] = ACTIONS(841), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_PERCENT] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(839), - [anon_sym_PLUS_PLUS] = ACTIONS(839), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_DASH_GT] = ACTIONS(839), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_comment] = ACTIONS(85), + [567] = { + [sym_string_literal] = STATE(795), + [aux_sym_concatenated_string_repeat1] = STATE(795), + [anon_sym_LPAREN2] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_RBRACK] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_STAR_EQ] = ACTIONS(761), + [anon_sym_SLASH_EQ] = ACTIONS(761), + [anon_sym_PERCENT_EQ] = ACTIONS(761), + [anon_sym_PLUS_EQ] = ACTIONS(761), + [anon_sym_DASH_EQ] = ACTIONS(761), + [anon_sym_LT_LT_EQ] = ACTIONS(761), + [anon_sym_GT_GT_EQ] = ACTIONS(761), + [anon_sym_AMP_EQ] = ACTIONS(761), + [anon_sym_CARET_EQ] = ACTIONS(761), + [anon_sym_PIPE_EQ] = ACTIONS(761), + [anon_sym_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(761), + [anon_sym_AMP_AMP] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_CARET] = ACTIONS(763), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_LT_LT] = ACTIONS(763), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_PERCENT] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(761), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_comment] = ACTIONS(81), }, - [630] = { - [sym__expression] = STATE(853), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_char_literal] = STATE(853), - [sym_concatenated_string] = STATE(853), - [sym_string_literal] = STATE(41), + [568] = { + [anon_sym_RPAREN] = ACTIONS(2186), + [sym_comment] = ACTIONS(81), + }, + [569] = { + [sym_type_qualifier] = STATE(76), + [sym__type_specifier] = STATE(71), + [sym_sized_type_specifier] = STATE(71), + [sym_enum_specifier] = STATE(71), + [sym_struct_specifier] = STATE(71), + [sym_union_specifier] = STATE(71), + [sym__expression] = STATE(72), + [sym_comma_expression] = STATE(73), + [sym_conditional_expression] = STATE(72), + [sym_assignment_expression] = STATE(72), + [sym_pointer_expression] = STATE(72), + [sym_logical_expression] = STATE(72), + [sym_bitwise_expression] = STATE(72), + [sym_equality_expression] = STATE(72), + [sym_relational_expression] = STATE(72), + [sym_shift_expression] = STATE(72), + [sym_math_expression] = STATE(72), + [sym_cast_expression] = STATE(72), + [sym_type_descriptor] = STATE(797), + [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(72), + [sym_call_expression] = STATE(72), + [sym_field_expression] = STATE(72), + [sym_compound_literal_expression] = STATE(72), + [sym_parenthesized_expression] = STATE(72), + [sym_char_literal] = STATE(72), + [sym_concatenated_string] = STATE(72), + [sym_string_literal] = STATE(75), + [sym_macro_type_specifier] = STATE(71), + [aux_sym_type_definition_repeat1] = STATE(76), + [aux_sym_sized_type_specifier_repeat1] = STATE(77), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_const] = ACTIONS(31), + [anon_sym_restrict] = ACTIONS(31), + [anon_sym_volatile] = ACTIONS(31), + [anon_sym__Atomic] = ACTIONS(31), + [anon_sym_unsigned] = ACTIONS(129), + [anon_sym_long] = ACTIONS(129), + [anon_sym_short] = ACTIONS(129), + [sym_primitive_type] = ACTIONS(131), + [anon_sym_enum] = ACTIONS(37), + [anon_sym_struct] = ACTIONS(39), + [anon_sym_union] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_identifier] = ACTIONS(147), + [sym_comment] = ACTIONS(81), + }, + [570] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_STAR_EQ] = ACTIONS(623), + [anon_sym_SLASH_EQ] = ACTIONS(623), + [anon_sym_PERCENT_EQ] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(623), + [anon_sym_DASH_EQ] = ACTIONS(623), + [anon_sym_LT_LT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_EQ] = ACTIONS(623), + [anon_sym_AMP_EQ] = ACTIONS(623), + [anon_sym_CARET_EQ] = ACTIONS(623), + [anon_sym_PIPE_EQ] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [571] = { + [sym__expression] = STATE(316), + [sym_conditional_expression] = STATE(316), + [sym_assignment_expression] = STATE(316), + [sym_pointer_expression] = STATE(316), + [sym_logical_expression] = STATE(316), + [sym_bitwise_expression] = STATE(316), + [sym_equality_expression] = STATE(316), + [sym_relational_expression] = STATE(316), + [sym_shift_expression] = STATE(316), + [sym_math_expression] = STATE(316), + [sym_cast_expression] = STATE(316), + [sym_sizeof_expression] = STATE(316), + [sym_subscript_expression] = STATE(316), + [sym_call_expression] = STATE(316), + [sym_field_expression] = STATE(316), + [sym_compound_literal_expression] = STATE(316), + [sym_parenthesized_expression] = STATE(316), + [sym_char_literal] = STATE(316), + [sym_concatenated_string] = STATE(316), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(677), + [sym_false] = ACTIONS(677), + [sym_null] = ACTIONS(677), + [sym_identifier] = ACTIONS(677), + [sym_comment] = ACTIONS(81), + }, + [572] = { + [sym__expression] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(798), + [sym_logical_expression] = STATE(798), + [sym_bitwise_expression] = STATE(798), + [sym_equality_expression] = STATE(798), + [sym_relational_expression] = STATE(798), + [sym_shift_expression] = STATE(798), + [sym_math_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_subscript_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_field_expression] = STATE(798), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_char_literal] = STATE(798), + [sym_concatenated_string] = STATE(798), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2190), + [sym_false] = ACTIONS(2190), + [sym_null] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2190), + [sym_comment] = ACTIONS(81), + }, + [573] = { + [sym__expression] = STATE(799), + [sym_conditional_expression] = STATE(799), + [sym_assignment_expression] = STATE(799), + [sym_pointer_expression] = STATE(799), + [sym_logical_expression] = STATE(799), + [sym_bitwise_expression] = STATE(799), + [sym_equality_expression] = STATE(799), + [sym_relational_expression] = STATE(799), + [sym_shift_expression] = STATE(799), + [sym_math_expression] = STATE(799), + [sym_cast_expression] = STATE(799), + [sym_sizeof_expression] = STATE(799), + [sym_subscript_expression] = STATE(799), + [sym_call_expression] = STATE(799), + [sym_field_expression] = STATE(799), + [sym_compound_literal_expression] = STATE(799), + [sym_parenthesized_expression] = STATE(799), + [sym_char_literal] = STATE(799), + [sym_concatenated_string] = STATE(799), + [sym_string_literal] = STATE(39), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(2344), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2346), - [sym_false] = ACTIONS(2346), - [sym_null] = ACTIONS(2346), - [sym_identifier] = ACTIONS(2346), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2194), + [sym_false] = ACTIONS(2194), + [sym_null] = ACTIONS(2194), + [sym_identifier] = ACTIONS(2194), + [sym_comment] = ACTIONS(81), }, - [631] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(2348), - [sym_identifier] = ACTIONS(2348), - [sym_comment] = ACTIONS(85), + [574] = { + [sym__expression] = STATE(800), + [sym_conditional_expression] = STATE(800), + [sym_assignment_expression] = STATE(800), + [sym_pointer_expression] = STATE(800), + [sym_logical_expression] = STATE(800), + [sym_bitwise_expression] = STATE(800), + [sym_equality_expression] = STATE(800), + [sym_relational_expression] = STATE(800), + [sym_shift_expression] = STATE(800), + [sym_math_expression] = STATE(800), + [sym_cast_expression] = STATE(800), + [sym_sizeof_expression] = STATE(800), + [sym_subscript_expression] = STATE(800), + [sym_call_expression] = STATE(800), + [sym_field_expression] = STATE(800), + [sym_compound_literal_expression] = STATE(800), + [sym_parenthesized_expression] = STATE(800), + [sym_char_literal] = STATE(800), + [sym_concatenated_string] = STATE(800), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2198), + [sym_false] = ACTIONS(2198), + [sym_null] = ACTIONS(2198), + [sym_identifier] = ACTIONS(2198), + [sym_comment] = ACTIONS(81), }, - [632] = { - [anon_sym_LF] = ACTIONS(2350), - [sym_preproc_arg] = ACTIONS(2350), - [sym_comment] = ACTIONS(95), + [575] = { + [sym__expression] = STATE(801), + [sym_conditional_expression] = STATE(801), + [sym_assignment_expression] = STATE(801), + [sym_pointer_expression] = STATE(801), + [sym_logical_expression] = STATE(801), + [sym_bitwise_expression] = STATE(801), + [sym_equality_expression] = STATE(801), + [sym_relational_expression] = STATE(801), + [sym_shift_expression] = STATE(801), + [sym_math_expression] = STATE(801), + [sym_cast_expression] = STATE(801), + [sym_sizeof_expression] = STATE(801), + [sym_subscript_expression] = STATE(801), + [sym_call_expression] = STATE(801), + [sym_field_expression] = STATE(801), + [sym_compound_literal_expression] = STATE(801), + [sym_parenthesized_expression] = STATE(801), + [sym_char_literal] = STATE(801), + [sym_concatenated_string] = STATE(801), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2202), + [sym_false] = ACTIONS(2202), + [sym_null] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2202), + [sym_comment] = ACTIONS(81), }, - [633] = { - [aux_sym_preproc_params_repeat1] = STATE(856), - [anon_sym_COMMA] = ACTIONS(1748), - [anon_sym_RPAREN] = ACTIONS(2352), - [sym_comment] = ACTIONS(85), + [576] = { + [sym__expression] = STATE(802), + [sym_conditional_expression] = STATE(802), + [sym_assignment_expression] = STATE(802), + [sym_pointer_expression] = STATE(802), + [sym_logical_expression] = STATE(802), + [sym_bitwise_expression] = STATE(802), + [sym_equality_expression] = STATE(802), + [sym_relational_expression] = STATE(802), + [sym_shift_expression] = STATE(802), + [sym_math_expression] = STATE(802), + [sym_cast_expression] = STATE(802), + [sym_sizeof_expression] = STATE(802), + [sym_subscript_expression] = STATE(802), + [sym_call_expression] = STATE(802), + [sym_field_expression] = STATE(802), + [sym_compound_literal_expression] = STATE(802), + [sym_parenthesized_expression] = STATE(802), + [sym_char_literal] = STATE(802), + [sym_concatenated_string] = STATE(802), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2206), + [sym_false] = ACTIONS(2206), + [sym_null] = ACTIONS(2206), + [sym_identifier] = ACTIONS(2206), + [sym_comment] = ACTIONS(81), }, - [634] = { - [ts_builtin_sym_end] = ACTIONS(2354), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2356), - [sym_preproc_directive] = ACTIONS(2356), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_typedef] = ACTIONS(2356), - [anon_sym_extern] = ACTIONS(2356), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_LPAREN2] = ACTIONS(2354), - [anon_sym_STAR] = ACTIONS(2354), - [anon_sym_static] = ACTIONS(2356), - [anon_sym_auto] = ACTIONS(2356), - [anon_sym_register] = ACTIONS(2356), - [anon_sym_inline] = ACTIONS(2356), - [anon_sym_const] = ACTIONS(2356), - [anon_sym_restrict] = ACTIONS(2356), - [anon_sym_volatile] = ACTIONS(2356), - [anon_sym__Atomic] = ACTIONS(2356), - [anon_sym_unsigned] = ACTIONS(2356), - [anon_sym_long] = ACTIONS(2356), - [anon_sym_short] = ACTIONS(2356), - [sym_primitive_type] = ACTIONS(2356), - [anon_sym_enum] = ACTIONS(2356), - [anon_sym_struct] = ACTIONS(2356), - [anon_sym_union] = ACTIONS(2356), - [anon_sym_if] = ACTIONS(2356), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2356), - [anon_sym_default] = ACTIONS(2356), - [anon_sym_while] = ACTIONS(2356), - [anon_sym_do] = ACTIONS(2356), - [anon_sym_for] = ACTIONS(2356), - [anon_sym_return] = ACTIONS(2356), - [anon_sym_break] = ACTIONS(2356), - [anon_sym_continue] = ACTIONS(2356), - [anon_sym_goto] = ACTIONS(2356), - [anon_sym_AMP] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2354), - [anon_sym_TILDE] = ACTIONS(2354), - [anon_sym_PLUS] = ACTIONS(2356), - [anon_sym_DASH] = ACTIONS(2356), - [anon_sym_DASH_DASH] = ACTIONS(2354), - [anon_sym_PLUS_PLUS] = ACTIONS(2354), - [anon_sym_sizeof] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2354), - [sym_true] = ACTIONS(2356), - [sym_false] = ACTIONS(2356), - [sym_null] = ACTIONS(2356), - [sym_identifier] = ACTIONS(2356), - [sym_comment] = ACTIONS(85), + [577] = { + [sym__expression] = STATE(803), + [sym_conditional_expression] = STATE(803), + [sym_assignment_expression] = STATE(803), + [sym_pointer_expression] = STATE(803), + [sym_logical_expression] = STATE(803), + [sym_bitwise_expression] = STATE(803), + [sym_equality_expression] = STATE(803), + [sym_relational_expression] = STATE(803), + [sym_shift_expression] = STATE(803), + [sym_math_expression] = STATE(803), + [sym_cast_expression] = STATE(803), + [sym_sizeof_expression] = STATE(803), + [sym_subscript_expression] = STATE(803), + [sym_call_expression] = STATE(803), + [sym_field_expression] = STATE(803), + [sym_compound_literal_expression] = STATE(803), + [sym_parenthesized_expression] = STATE(803), + [sym_char_literal] = STATE(803), + [sym_concatenated_string] = STATE(803), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2210), + [sym_false] = ACTIONS(2210), + [sym_null] = ACTIONS(2210), + [sym_identifier] = ACTIONS(2210), + [sym_comment] = ACTIONS(81), }, - [635] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(723), - [sym_preproc_directive] = ACTIONS(723), - [anon_sym_SEMI] = ACTIONS(721), - [anon_sym_typedef] = ACTIONS(723), - [anon_sym_extern] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_LPAREN2] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(721), - [anon_sym_static] = ACTIONS(723), - [anon_sym_auto] = ACTIONS(723), - [anon_sym_register] = ACTIONS(723), - [anon_sym_inline] = ACTIONS(723), - [anon_sym_const] = ACTIONS(723), - [anon_sym_restrict] = ACTIONS(723), - [anon_sym_volatile] = ACTIONS(723), - [anon_sym__Atomic] = ACTIONS(723), - [anon_sym_unsigned] = ACTIONS(723), - [anon_sym_long] = ACTIONS(723), - [anon_sym_short] = ACTIONS(723), - [sym_primitive_type] = ACTIONS(723), - [anon_sym_enum] = ACTIONS(723), - [anon_sym_struct] = ACTIONS(723), - [anon_sym_union] = ACTIONS(723), - [anon_sym_if] = ACTIONS(723), - [anon_sym_switch] = ACTIONS(723), - [anon_sym_case] = ACTIONS(723), - [anon_sym_default] = ACTIONS(723), - [anon_sym_while] = ACTIONS(723), - [anon_sym_do] = ACTIONS(723), - [anon_sym_for] = ACTIONS(723), - [anon_sym_return] = ACTIONS(723), - [anon_sym_break] = ACTIONS(723), - [anon_sym_continue] = ACTIONS(723), - [anon_sym_goto] = ACTIONS(723), - [anon_sym_AMP] = ACTIONS(721), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_DASH_DASH] = ACTIONS(721), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_sizeof] = ACTIONS(723), - [sym_number_literal] = ACTIONS(721), - [anon_sym_SQUOTE] = ACTIONS(721), - [anon_sym_DQUOTE] = ACTIONS(721), - [sym_true] = ACTIONS(723), - [sym_false] = ACTIONS(723), - [sym_null] = ACTIONS(723), - [sym_identifier] = ACTIONS(723), - [sym_comment] = ACTIONS(85), + [578] = { + [sym__expression] = STATE(804), + [sym_conditional_expression] = STATE(804), + [sym_assignment_expression] = STATE(804), + [sym_pointer_expression] = STATE(804), + [sym_logical_expression] = STATE(804), + [sym_bitwise_expression] = STATE(804), + [sym_equality_expression] = STATE(804), + [sym_relational_expression] = STATE(804), + [sym_shift_expression] = STATE(804), + [sym_math_expression] = STATE(804), + [sym_cast_expression] = STATE(804), + [sym_sizeof_expression] = STATE(804), + [sym_subscript_expression] = STATE(804), + [sym_call_expression] = STATE(804), + [sym_field_expression] = STATE(804), + [sym_compound_literal_expression] = STATE(804), + [sym_parenthesized_expression] = STATE(804), + [sym_char_literal] = STATE(804), + [sym_concatenated_string] = STATE(804), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2214), + [sym_false] = ACTIONS(2214), + [sym_null] = ACTIONS(2214), + [sym_identifier] = ACTIONS(2214), + [sym_comment] = ACTIONS(81), }, - [636] = { - [aux_sym_string_literal_repeat1] = STATE(341), - [anon_sym_DQUOTE] = ACTIONS(2358), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(727), - [sym_escape_sequence] = ACTIONS(727), - [sym_comment] = ACTIONS(95), + [579] = { + [sym__expression] = STATE(805), + [sym_conditional_expression] = STATE(805), + [sym_assignment_expression] = STATE(805), + [sym_pointer_expression] = STATE(805), + [sym_logical_expression] = STATE(805), + [sym_bitwise_expression] = STATE(805), + [sym_equality_expression] = STATE(805), + [sym_relational_expression] = STATE(805), + [sym_shift_expression] = STATE(805), + [sym_math_expression] = STATE(805), + [sym_cast_expression] = STATE(805), + [sym_sizeof_expression] = STATE(805), + [sym_subscript_expression] = STATE(805), + [sym_call_expression] = STATE(805), + [sym_field_expression] = STATE(805), + [sym_compound_literal_expression] = STATE(805), + [sym_parenthesized_expression] = STATE(805), + [sym_char_literal] = STATE(805), + [sym_concatenated_string] = STATE(805), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(2216), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2218), + [sym_false] = ACTIONS(2218), + [sym_null] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2218), + [sym_comment] = ACTIONS(81), }, - [637] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(989), - [sym_preproc_directive] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_typedef] = ACTIONS(989), - [anon_sym_extern] = ACTIONS(989), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_LPAREN2] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_static] = ACTIONS(989), - [anon_sym_auto] = ACTIONS(989), - [anon_sym_register] = ACTIONS(989), - [anon_sym_inline] = ACTIONS(989), - [anon_sym_const] = ACTIONS(989), - [anon_sym_restrict] = ACTIONS(989), - [anon_sym_volatile] = ACTIONS(989), - [anon_sym__Atomic] = ACTIONS(989), - [anon_sym_unsigned] = ACTIONS(989), - [anon_sym_long] = ACTIONS(989), - [anon_sym_short] = ACTIONS(989), - [sym_primitive_type] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(989), - [anon_sym_union] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_switch] = ACTIONS(989), - [anon_sym_case] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [anon_sym_do] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_goto] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(987), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_sizeof] = ACTIONS(989), - [sym_number_literal] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym_true] = ACTIONS(989), - [sym_false] = ACTIONS(989), - [sym_null] = ACTIONS(989), - [sym_identifier] = ACTIONS(989), - [sym_comment] = ACTIONS(85), + [580] = { + [sym__expression] = STATE(806), + [sym_conditional_expression] = STATE(806), + [sym_assignment_expression] = STATE(806), + [sym_pointer_expression] = STATE(806), + [sym_logical_expression] = STATE(806), + [sym_bitwise_expression] = STATE(806), + [sym_equality_expression] = STATE(806), + [sym_relational_expression] = STATE(806), + [sym_shift_expression] = STATE(806), + [sym_math_expression] = STATE(806), + [sym_cast_expression] = STATE(806), + [sym_sizeof_expression] = STATE(806), + [sym_subscript_expression] = STATE(806), + [sym_call_expression] = STATE(806), + [sym_field_expression] = STATE(806), + [sym_compound_literal_expression] = STATE(806), + [sym_parenthesized_expression] = STATE(806), + [sym_char_literal] = STATE(806), + [sym_concatenated_string] = STATE(806), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2222), + [sym_false] = ACTIONS(2222), + [sym_null] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2222), + [sym_comment] = ACTIONS(81), }, - [638] = { - [anon_sym_LF] = ACTIONS(2360), - [sym_comment] = ACTIONS(95), + [581] = { + [sym__expression] = STATE(807), + [sym_conditional_expression] = STATE(807), + [sym_assignment_expression] = STATE(807), + [sym_pointer_expression] = STATE(807), + [sym_logical_expression] = STATE(807), + [sym_bitwise_expression] = STATE(807), + [sym_equality_expression] = STATE(807), + [sym_relational_expression] = STATE(807), + [sym_shift_expression] = STATE(807), + [sym_math_expression] = STATE(807), + [sym_cast_expression] = STATE(807), + [sym_sizeof_expression] = STATE(807), + [sym_subscript_expression] = STATE(807), + [sym_call_expression] = STATE(807), + [sym_field_expression] = STATE(807), + [sym_compound_literal_expression] = STATE(807), + [sym_parenthesized_expression] = STATE(807), + [sym_char_literal] = STATE(807), + [sym_concatenated_string] = STATE(807), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(2224), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2226), + [sym_false] = ACTIONS(2226), + [sym_null] = ACTIONS(2226), + [sym_identifier] = ACTIONS(2226), + [sym_comment] = ACTIONS(81), }, - [639] = { - [anon_sym_LF] = ACTIONS(2362), - [sym_preproc_arg] = ACTIONS(2364), - [sym_comment] = ACTIONS(95), + [582] = { + [sym__expression] = STATE(808), + [sym_conditional_expression] = STATE(808), + [sym_assignment_expression] = STATE(808), + [sym_pointer_expression] = STATE(808), + [sym_logical_expression] = STATE(808), + [sym_bitwise_expression] = STATE(808), + [sym_equality_expression] = STATE(808), + [sym_relational_expression] = STATE(808), + [sym_shift_expression] = STATE(808), + [sym_math_expression] = STATE(808), + [sym_cast_expression] = STATE(808), + [sym_sizeof_expression] = STATE(808), + [sym_subscript_expression] = STATE(808), + [sym_call_expression] = STATE(808), + [sym_field_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(808), + [sym_parenthesized_expression] = STATE(808), + [sym_char_literal] = STATE(808), + [sym_concatenated_string] = STATE(808), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(2228), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2230), + [sym_false] = ACTIONS(2230), + [sym_null] = ACTIONS(2230), + [sym_identifier] = ACTIONS(2230), + [sym_comment] = ACTIONS(81), }, - [640] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1011), - [sym_preproc_directive] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_typedef] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_LPAREN2] = ACTIONS(1009), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1011), - [anon_sym_auto] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_inline] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [anon_sym_restrict] = ACTIONS(1011), - [anon_sym_volatile] = ACTIONS(1011), - [anon_sym__Atomic] = ACTIONS(1011), - [anon_sym_unsigned] = ACTIONS(1011), - [anon_sym_long] = ACTIONS(1011), - [anon_sym_short] = ACTIONS(1011), - [sym_primitive_type] = ACTIONS(1011), - [anon_sym_enum] = ACTIONS(1011), - [anon_sym_struct] = ACTIONS(1011), - [anon_sym_union] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_switch] = ACTIONS(1011), - [anon_sym_case] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_goto] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_TILDE] = ACTIONS(1009), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_sizeof] = ACTIONS(1011), - [sym_number_literal] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1009), - [sym_true] = ACTIONS(1011), - [sym_false] = ACTIONS(1011), - [sym_null] = ACTIONS(1011), - [sym_identifier] = ACTIONS(1011), - [sym_comment] = ACTIONS(85), + [583] = { + [sym__expression] = STATE(809), + [sym_conditional_expression] = STATE(809), + [sym_assignment_expression] = STATE(809), + [sym_pointer_expression] = STATE(809), + [sym_logical_expression] = STATE(809), + [sym_bitwise_expression] = STATE(809), + [sym_equality_expression] = STATE(809), + [sym_relational_expression] = STATE(809), + [sym_shift_expression] = STATE(809), + [sym_math_expression] = STATE(809), + [sym_cast_expression] = STATE(809), + [sym_sizeof_expression] = STATE(809), + [sym_subscript_expression] = STATE(809), + [sym_call_expression] = STATE(809), + [sym_field_expression] = STATE(809), + [sym_compound_literal_expression] = STATE(809), + [sym_parenthesized_expression] = STATE(809), + [sym_char_literal] = STATE(809), + [sym_concatenated_string] = STATE(809), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(2232), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_null] = ACTIONS(2234), + [sym_identifier] = ACTIONS(2234), + [sym_comment] = ACTIONS(81), }, - [641] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2366), - [sym_comment] = ACTIONS(85), + [584] = { + [sym_string_literal] = STATE(810), + [aux_sym_concatenated_string_repeat1] = STATE(810), + [anon_sym_LPAREN2] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_COLON] = ACTIONS(761), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_STAR_EQ] = ACTIONS(761), + [anon_sym_SLASH_EQ] = ACTIONS(761), + [anon_sym_PERCENT_EQ] = ACTIONS(761), + [anon_sym_PLUS_EQ] = ACTIONS(761), + [anon_sym_DASH_EQ] = ACTIONS(761), + [anon_sym_LT_LT_EQ] = ACTIONS(761), + [anon_sym_GT_GT_EQ] = ACTIONS(761), + [anon_sym_AMP_EQ] = ACTIONS(761), + [anon_sym_CARET_EQ] = ACTIONS(761), + [anon_sym_PIPE_EQ] = ACTIONS(761), + [anon_sym_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(761), + [anon_sym_AMP_AMP] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_CARET] = ACTIONS(763), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_LT_LT] = ACTIONS(763), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_PERCENT] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(761), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_comment] = ACTIONS(81), }, - [642] = { - [sym_preproc_include] = STATE(447), - [sym_preproc_def] = STATE(447), - [sym_preproc_function_def] = STATE(447), - [sym_preproc_call] = STATE(447), - [sym_preproc_if] = STATE(447), - [sym_preproc_ifdef] = STATE(447), - [sym_preproc_else] = STATE(862), - [sym_preproc_elif] = STATE(862), - [sym_function_definition] = STATE(447), - [sym_declaration] = STATE(447), - [sym_type_definition] = STATE(447), - [sym__declaration_specifiers] = STATE(200), - [sym_linkage_specification] = STATE(447), - [sym_compound_statement] = STATE(447), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(447), - [sym_expression_statement] = STATE(447), - [sym_if_statement] = STATE(447), - [sym_switch_statement] = STATE(447), - [sym_case_statement] = STATE(447), - [sym_while_statement] = STATE(447), - [sym_do_statement] = STATE(447), - [sym_for_statement] = STATE(447), - [sym_return_statement] = STATE(447), - [sym_break_statement] = STATE(447), - [sym_continue_statement] = STATE(447), - [sym_goto_statement] = STATE(447), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(447), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(447), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2368), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(384), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [585] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(2236), + [sym_identifier] = ACTIONS(2236), + [sym_comment] = ACTIONS(81), + }, + [586] = { + [anon_sym_LF] = ACTIONS(2238), + [sym_preproc_arg] = ACTIONS(2238), + [sym_comment] = ACTIONS(91), + }, + [587] = { + [aux_sym_preproc_params_repeat1] = STATE(813), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(2240), + [sym_comment] = ACTIONS(81), + }, + [588] = { + [ts_builtin_sym_end] = ACTIONS(2242), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2244), + [sym_preproc_directive] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_typedef] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_LPAREN2] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_auto] = ACTIONS(2244), + [anon_sym_register] = ACTIONS(2244), + [anon_sym_inline] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_restrict] = ACTIONS(2244), + [anon_sym_volatile] = ACTIONS(2244), + [anon_sym__Atomic] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [anon_sym_struct] = ACTIONS(2244), + [anon_sym_union] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_goto] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_sizeof] = ACTIONS(2244), + [sym_number_literal] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_identifier] = ACTIONS(2244), + [sym_comment] = ACTIONS(81), + }, + [589] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(631), + [sym_preproc_directive] = ACTIONS(631), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_typedef] = ACTIONS(631), + [anon_sym_extern] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN2] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(629), + [anon_sym_static] = ACTIONS(631), + [anon_sym_auto] = ACTIONS(631), + [anon_sym_register] = ACTIONS(631), + [anon_sym_inline] = ACTIONS(631), + [anon_sym_const] = ACTIONS(631), + [anon_sym_restrict] = ACTIONS(631), + [anon_sym_volatile] = ACTIONS(631), + [anon_sym__Atomic] = ACTIONS(631), + [anon_sym_unsigned] = ACTIONS(631), + [anon_sym_long] = ACTIONS(631), + [anon_sym_short] = ACTIONS(631), + [sym_primitive_type] = ACTIONS(631), + [anon_sym_enum] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(631), + [anon_sym_union] = ACTIONS(631), + [anon_sym_if] = ACTIONS(631), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(631), + [anon_sym_for] = ACTIONS(631), + [anon_sym_return] = ACTIONS(631), + [anon_sym_break] = ACTIONS(631), + [anon_sym_continue] = ACTIONS(631), + [anon_sym_goto] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_BANG] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DASH_DASH] = ACTIONS(629), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_sizeof] = ACTIONS(631), + [sym_number_literal] = ACTIONS(629), + [anon_sym_SQUOTE] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(629), + [sym_true] = ACTIONS(631), + [sym_false] = ACTIONS(631), + [sym_null] = ACTIONS(631), + [sym_identifier] = ACTIONS(631), + [sym_comment] = ACTIONS(81), + }, + [590] = { + [aux_sym_string_literal_repeat1] = STATE(296), + [anon_sym_DQUOTE] = ACTIONS(2246), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(635), + [sym_escape_sequence] = ACTIONS(635), + [sym_comment] = ACTIONS(91), + }, + [591] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(905), + [sym_preproc_directive] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_typedef] = ACTIONS(905), + [anon_sym_extern] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_static] = ACTIONS(905), + [anon_sym_auto] = ACTIONS(905), + [anon_sym_register] = ACTIONS(905), + [anon_sym_inline] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_restrict] = ACTIONS(905), + [anon_sym_volatile] = ACTIONS(905), + [anon_sym__Atomic] = ACTIONS(905), + [anon_sym_unsigned] = ACTIONS(905), + [anon_sym_long] = ACTIONS(905), + [anon_sym_short] = ACTIONS(905), + [sym_primitive_type] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [anon_sym_struct] = ACTIONS(905), + [anon_sym_union] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_switch] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_goto] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_TILDE] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [sym_number_literal] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym_true] = ACTIONS(905), + [sym_false] = ACTIONS(905), + [sym_null] = ACTIONS(905), + [sym_identifier] = ACTIONS(905), + [sym_comment] = ACTIONS(81), + }, + [592] = { + [anon_sym_LF] = ACTIONS(2248), + [sym_comment] = ACTIONS(91), + }, + [593] = { + [anon_sym_LF] = ACTIONS(2250), + [sym_preproc_arg] = ACTIONS(2252), + [sym_comment] = ACTIONS(91), + }, + [594] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(927), + [sym_preproc_directive] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_typedef] = ACTIONS(927), + [anon_sym_extern] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_static] = ACTIONS(927), + [anon_sym_auto] = ACTIONS(927), + [anon_sym_register] = ACTIONS(927), + [anon_sym_inline] = ACTIONS(927), + [anon_sym_const] = ACTIONS(927), + [anon_sym_restrict] = ACTIONS(927), + [anon_sym_volatile] = ACTIONS(927), + [anon_sym__Atomic] = ACTIONS(927), + [anon_sym_unsigned] = ACTIONS(927), + [anon_sym_long] = ACTIONS(927), + [anon_sym_short] = ACTIONS(927), + [sym_primitive_type] = ACTIONS(927), + [anon_sym_enum] = ACTIONS(927), + [anon_sym_struct] = ACTIONS(927), + [anon_sym_union] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_switch] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_break] = ACTIONS(927), + [anon_sym_continue] = ACTIONS(927), + [anon_sym_goto] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_DASH_DASH] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_sizeof] = ACTIONS(927), + [sym_number_literal] = ACTIONS(925), + [anon_sym_SQUOTE] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym_true] = ACTIONS(927), + [sym_false] = ACTIONS(927), + [sym_null] = ACTIONS(927), + [sym_identifier] = ACTIONS(927), + [sym_comment] = ACTIONS(81), + }, + [595] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2254), + [sym_comment] = ACTIONS(81), + }, + [596] = { + [sym_preproc_include] = STATE(405), + [sym_preproc_def] = STATE(405), + [sym_preproc_function_def] = STATE(405), + [sym_preproc_call] = STATE(405), + [sym_preproc_if] = STATE(405), + [sym_preproc_ifdef] = STATE(405), + [sym_preproc_else] = STATE(819), + [sym_preproc_elif] = STATE(819), + [sym_function_definition] = STATE(405), + [sym_declaration] = STATE(405), + [sym_type_definition] = STATE(405), + [sym__declaration_specifiers] = STATE(182), + [sym_linkage_specification] = STATE(405), + [sym_compound_statement] = STATE(405), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(405), + [sym_expression_statement] = STATE(405), + [sym_if_statement] = STATE(405), + [sym_switch_statement] = STATE(405), + [sym_while_statement] = STATE(405), + [sym_do_statement] = STATE(405), + [sym_for_statement] = STATE(405), + [sym_return_statement] = STATE(405), + [sym_break_statement] = STATE(405), + [sym_continue_statement] = STATE(405), + [sym_goto_statement] = STATE(405), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(405), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(405), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(348), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(350), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -28480,170 +26186,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [643] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1107), - [sym_preproc_directive] = ACTIONS(1107), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_typedef] = ACTIONS(1107), - [anon_sym_extern] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_LPAREN2] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_static] = ACTIONS(1107), - [anon_sym_auto] = ACTIONS(1107), - [anon_sym_register] = ACTIONS(1107), - [anon_sym_inline] = ACTIONS(1107), - [anon_sym_const] = ACTIONS(1107), - [anon_sym_restrict] = ACTIONS(1107), - [anon_sym_volatile] = ACTIONS(1107), - [anon_sym__Atomic] = ACTIONS(1107), - [anon_sym_unsigned] = ACTIONS(1107), - [anon_sym_long] = ACTIONS(1107), - [anon_sym_short] = ACTIONS(1107), - [sym_primitive_type] = ACTIONS(1107), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_struct] = ACTIONS(1107), - [anon_sym_union] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_switch] = ACTIONS(1107), - [anon_sym_case] = ACTIONS(1107), - [anon_sym_default] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_do] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_return] = ACTIONS(1107), - [anon_sym_break] = ACTIONS(1107), - [anon_sym_continue] = ACTIONS(1107), - [anon_sym_goto] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1105), - [anon_sym_sizeof] = ACTIONS(1107), - [sym_number_literal] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(1105), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_null] = ACTIONS(1107), - [sym_identifier] = ACTIONS(1107), - [sym_comment] = ACTIONS(85), + [597] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1013), + [sym_preproc_directive] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_typedef] = ACTIONS(1013), + [anon_sym_extern] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_LPAREN2] = ACTIONS(1011), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_auto] = ACTIONS(1013), + [anon_sym_register] = ACTIONS(1013), + [anon_sym_inline] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_restrict] = ACTIONS(1013), + [anon_sym_volatile] = ACTIONS(1013), + [anon_sym__Atomic] = ACTIONS(1013), + [anon_sym_unsigned] = ACTIONS(1013), + [anon_sym_long] = ACTIONS(1013), + [anon_sym_short] = ACTIONS(1013), + [sym_primitive_type] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1013), + [anon_sym_union] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [anon_sym_do] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_goto] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_TILDE] = ACTIONS(1011), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1011), + [anon_sym_sizeof] = ACTIONS(1013), + [sym_number_literal] = ACTIONS(1011), + [anon_sym_SQUOTE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1011), + [sym_true] = ACTIONS(1013), + [sym_false] = ACTIONS(1013), + [sym_null] = ACTIONS(1013), + [sym_identifier] = ACTIONS(1013), + [sym_comment] = ACTIONS(81), }, - [644] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2370), - [sym_comment] = ACTIONS(85), + [598] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2258), + [sym_comment] = ACTIONS(81), }, - [645] = { - [sym_preproc_include] = STATE(447), - [sym_preproc_def] = STATE(447), - [sym_preproc_function_def] = STATE(447), - [sym_preproc_call] = STATE(447), - [sym_preproc_if] = STATE(447), - [sym_preproc_ifdef] = STATE(447), - [sym_preproc_else] = STATE(864), - [sym_preproc_elif] = STATE(864), - [sym_function_definition] = STATE(447), - [sym_declaration] = STATE(447), - [sym_type_definition] = STATE(447), - [sym__declaration_specifiers] = STATE(200), - [sym_linkage_specification] = STATE(447), - [sym_compound_statement] = STATE(447), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(447), - [sym_expression_statement] = STATE(447), - [sym_if_statement] = STATE(447), - [sym_switch_statement] = STATE(447), - [sym_case_statement] = STATE(447), - [sym_while_statement] = STATE(447), - [sym_do_statement] = STATE(447), - [sym_for_statement] = STATE(447), - [sym_return_statement] = STATE(447), - [sym_break_statement] = STATE(447), - [sym_continue_statement] = STATE(447), - [sym_goto_statement] = STATE(447), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(447), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(447), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(384), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [599] = { + [sym_preproc_include] = STATE(405), + [sym_preproc_def] = STATE(405), + [sym_preproc_function_def] = STATE(405), + [sym_preproc_call] = STATE(405), + [sym_preproc_if] = STATE(405), + [sym_preproc_ifdef] = STATE(405), + [sym_preproc_else] = STATE(821), + [sym_preproc_elif] = STATE(821), + [sym_function_definition] = STATE(405), + [sym_declaration] = STATE(405), + [sym_type_definition] = STATE(405), + [sym__declaration_specifiers] = STATE(182), + [sym_linkage_specification] = STATE(405), + [sym_compound_statement] = STATE(405), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(405), + [sym_expression_statement] = STATE(405), + [sym_if_statement] = STATE(405), + [sym_switch_statement] = STATE(405), + [sym_while_statement] = STATE(405), + [sym_do_statement] = STATE(405), + [sym_for_statement] = STATE(405), + [sym_return_statement] = STATE(405), + [sym_break_statement] = STATE(405), + [sym_continue_statement] = STATE(405), + [sym_goto_statement] = STATE(405), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(405), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(405), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2260), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(348), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(350), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -28661,178 +26362,173 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [646] = { - [aux_sym_string_literal_repeat1] = STATE(866), - [anon_sym_DQUOTE] = ACTIONS(2374), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(2376), - [sym_escape_sequence] = ACTIONS(2376), - [sym_comment] = ACTIONS(95), + [600] = { + [aux_sym_string_literal_repeat1] = STATE(823), + [anon_sym_DQUOTE] = ACTIONS(2262), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(2264), + [sym_escape_sequence] = ACTIONS(2264), + [sym_comment] = ACTIONS(91), }, - [647] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(364), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(364), - [sym_preproc_directive] = ACTIONS(364), - [anon_sym_SEMI] = ACTIONS(362), - [anon_sym_typedef] = ACTIONS(364), - [anon_sym_extern] = ACTIONS(364), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_LPAREN2] = ACTIONS(362), - [anon_sym_STAR] = ACTIONS(362), - [anon_sym_static] = ACTIONS(364), - [anon_sym_auto] = ACTIONS(364), - [anon_sym_register] = ACTIONS(364), - [anon_sym_inline] = ACTIONS(364), - [anon_sym_const] = ACTIONS(364), - [anon_sym_restrict] = ACTIONS(364), - [anon_sym_volatile] = ACTIONS(364), - [anon_sym__Atomic] = ACTIONS(364), - [anon_sym_unsigned] = ACTIONS(364), - [anon_sym_long] = ACTIONS(364), - [anon_sym_short] = ACTIONS(364), - [sym_primitive_type] = ACTIONS(364), - [anon_sym_enum] = ACTIONS(364), - [anon_sym_struct] = ACTIONS(364), - [anon_sym_union] = ACTIONS(364), - [anon_sym_if] = ACTIONS(364), - [anon_sym_switch] = ACTIONS(364), - [anon_sym_case] = ACTIONS(364), - [anon_sym_default] = ACTIONS(364), - [anon_sym_while] = ACTIONS(364), - [anon_sym_do] = ACTIONS(364), - [anon_sym_for] = ACTIONS(364), - [anon_sym_return] = ACTIONS(364), - [anon_sym_break] = ACTIONS(364), - [anon_sym_continue] = ACTIONS(364), - [anon_sym_goto] = ACTIONS(364), - [anon_sym_AMP] = ACTIONS(362), - [anon_sym_BANG] = ACTIONS(362), - [anon_sym_TILDE] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(364), - [anon_sym_DASH] = ACTIONS(364), - [anon_sym_DASH_DASH] = ACTIONS(362), - [anon_sym_PLUS_PLUS] = ACTIONS(362), - [anon_sym_sizeof] = ACTIONS(364), - [sym_number_literal] = ACTIONS(362), - [anon_sym_SQUOTE] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [sym_true] = ACTIONS(364), - [sym_false] = ACTIONS(364), - [sym_null] = ACTIONS(364), - [sym_identifier] = ACTIONS(364), - [sym_comment] = ACTIONS(85), + [601] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(330), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(330), + [sym_preproc_directive] = ACTIONS(330), + [anon_sym_SEMI] = ACTIONS(328), + [anon_sym_typedef] = ACTIONS(330), + [anon_sym_extern] = ACTIONS(330), + [anon_sym_LBRACE] = ACTIONS(328), + [anon_sym_LPAREN2] = ACTIONS(328), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_static] = ACTIONS(330), + [anon_sym_auto] = ACTIONS(330), + [anon_sym_register] = ACTIONS(330), + [anon_sym_inline] = ACTIONS(330), + [anon_sym_const] = ACTIONS(330), + [anon_sym_restrict] = ACTIONS(330), + [anon_sym_volatile] = ACTIONS(330), + [anon_sym__Atomic] = ACTIONS(330), + [anon_sym_unsigned] = ACTIONS(330), + [anon_sym_long] = ACTIONS(330), + [anon_sym_short] = ACTIONS(330), + [sym_primitive_type] = ACTIONS(330), + [anon_sym_enum] = ACTIONS(330), + [anon_sym_struct] = ACTIONS(330), + [anon_sym_union] = ACTIONS(330), + [anon_sym_if] = ACTIONS(330), + [anon_sym_switch] = ACTIONS(330), + [anon_sym_while] = ACTIONS(330), + [anon_sym_do] = ACTIONS(330), + [anon_sym_for] = ACTIONS(330), + [anon_sym_return] = ACTIONS(330), + [anon_sym_break] = ACTIONS(330), + [anon_sym_continue] = ACTIONS(330), + [anon_sym_goto] = ACTIONS(330), + [anon_sym_AMP] = ACTIONS(328), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_sizeof] = ACTIONS(330), + [sym_number_literal] = ACTIONS(328), + [anon_sym_SQUOTE] = ACTIONS(328), + [anon_sym_DQUOTE] = ACTIONS(328), + [sym_true] = ACTIONS(330), + [sym_false] = ACTIONS(330), + [sym_null] = ACTIONS(330), + [sym_identifier] = ACTIONS(330), + [sym_comment] = ACTIONS(81), }, - [648] = { - [sym_preproc_params] = STATE(869), - [anon_sym_LF] = ACTIONS(2378), - [anon_sym_LPAREN] = ACTIONS(368), - [sym_preproc_arg] = ACTIONS(2380), - [sym_comment] = ACTIONS(95), + [602] = { + [sym_preproc_params] = STATE(826), + [anon_sym_LF] = ACTIONS(2266), + [anon_sym_LPAREN] = ACTIONS(334), + [sym_preproc_arg] = ACTIONS(2268), + [sym_comment] = ACTIONS(91), }, - [649] = { - [sym_preproc_include] = STATE(872), - [sym_preproc_def] = STATE(872), - [sym_preproc_function_def] = STATE(872), - [sym_preproc_call] = STATE(872), - [sym_preproc_if] = STATE(872), - [sym_preproc_ifdef] = STATE(872), - [sym_preproc_else] = STATE(871), - [sym_preproc_elif] = STATE(871), - [sym_function_definition] = STATE(872), - [sym_declaration] = STATE(872), - [sym_type_definition] = STATE(872), - [sym__declaration_specifiers] = STATE(200), - [sym_linkage_specification] = STATE(872), - [sym_compound_statement] = STATE(872), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(872), - [sym_expression_statement] = STATE(872), - [sym_if_statement] = STATE(872), - [sym_switch_statement] = STATE(872), - [sym_case_statement] = STATE(872), - [sym_while_statement] = STATE(872), - [sym_do_statement] = STATE(872), - [sym_for_statement] = STATE(872), - [sym_return_statement] = STATE(872), - [sym_break_statement] = STATE(872), - [sym_continue_statement] = STATE(872), - [sym_goto_statement] = STATE(872), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(872), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(872), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(384), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [603] = { + [sym_preproc_include] = STATE(829), + [sym_preproc_def] = STATE(829), + [sym_preproc_function_def] = STATE(829), + [sym_preproc_call] = STATE(829), + [sym_preproc_if] = STATE(829), + [sym_preproc_ifdef] = STATE(829), + [sym_preproc_else] = STATE(828), + [sym_preproc_elif] = STATE(828), + [sym_function_definition] = STATE(829), + [sym_declaration] = STATE(829), + [sym_type_definition] = STATE(829), + [sym__declaration_specifiers] = STATE(182), + [sym_linkage_specification] = STATE(829), + [sym_compound_statement] = STATE(829), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(829), + [sym_expression_statement] = STATE(829), + [sym_if_statement] = STATE(829), + [sym_switch_statement] = STATE(829), + [sym_while_statement] = STATE(829), + [sym_do_statement] = STATE(829), + [sym_for_statement] = STATE(829), + [sym_return_statement] = STATE(829), + [sym_break_statement] = STATE(829), + [sym_continue_statement] = STATE(829), + [sym_goto_statement] = STATE(829), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(829), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(829), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(348), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(350), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -28850,107 +26546,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [650] = { - [sym_preproc_include] = STATE(875), - [sym_preproc_def] = STATE(875), - [sym_preproc_function_def] = STATE(875), - [sym_preproc_call] = STATE(875), - [sym_preproc_if] = STATE(875), - [sym_preproc_ifdef] = STATE(875), - [sym_preproc_else] = STATE(874), - [sym_preproc_elif] = STATE(874), - [sym_function_definition] = STATE(875), - [sym_declaration] = STATE(875), - [sym_type_definition] = STATE(875), - [sym__declaration_specifiers] = STATE(200), - [sym_linkage_specification] = STATE(875), - [sym_compound_statement] = STATE(875), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(875), - [sym_expression_statement] = STATE(875), - [sym_if_statement] = STATE(875), - [sym_switch_statement] = STATE(875), - [sym_case_statement] = STATE(875), - [sym_while_statement] = STATE(875), - [sym_do_statement] = STATE(875), - [sym_for_statement] = STATE(875), - [sym_return_statement] = STATE(875), - [sym_break_statement] = STATE(875), - [sym_continue_statement] = STATE(875), - [sym_goto_statement] = STATE(875), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(875), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(875), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2384), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(384), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [604] = { + [sym_preproc_include] = STATE(832), + [sym_preproc_def] = STATE(832), + [sym_preproc_function_def] = STATE(832), + [sym_preproc_call] = STATE(832), + [sym_preproc_if] = STATE(832), + [sym_preproc_ifdef] = STATE(832), + [sym_preproc_else] = STATE(831), + [sym_preproc_elif] = STATE(831), + [sym_function_definition] = STATE(832), + [sym_declaration] = STATE(832), + [sym_type_definition] = STATE(832), + [sym__declaration_specifiers] = STATE(182), + [sym_linkage_specification] = STATE(832), + [sym_compound_statement] = STATE(832), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(832), + [sym_expression_statement] = STATE(832), + [sym_if_statement] = STATE(832), + [sym_switch_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_statement] = STATE(832), + [sym_for_statement] = STATE(832), + [sym_return_statement] = STATE(832), + [sym_break_statement] = STATE(832), + [sym_continue_statement] = STATE(832), + [sym_goto_statement] = STATE(832), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(832), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(832), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2272), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(348), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(350), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -28968,146 +26661,142 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [651] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(428), - [sym_preproc_directive] = ACTIONS(428), - [anon_sym_SEMI] = ACTIONS(426), - [anon_sym_typedef] = ACTIONS(428), - [anon_sym_extern] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(426), - [anon_sym_LPAREN2] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(426), - [anon_sym_static] = ACTIONS(428), - [anon_sym_auto] = ACTIONS(428), - [anon_sym_register] = ACTIONS(428), - [anon_sym_inline] = ACTIONS(428), - [anon_sym_const] = ACTIONS(428), - [anon_sym_restrict] = ACTIONS(428), - [anon_sym_volatile] = ACTIONS(428), - [anon_sym__Atomic] = ACTIONS(428), - [anon_sym_unsigned] = ACTIONS(428), - [anon_sym_long] = ACTIONS(428), - [anon_sym_short] = ACTIONS(428), - [sym_primitive_type] = ACTIONS(428), - [anon_sym_enum] = ACTIONS(428), - [anon_sym_struct] = ACTIONS(428), - [anon_sym_union] = ACTIONS(428), - [anon_sym_if] = ACTIONS(428), - [anon_sym_switch] = ACTIONS(428), - [anon_sym_case] = ACTIONS(428), - [anon_sym_default] = ACTIONS(428), - [anon_sym_while] = ACTIONS(428), - [anon_sym_do] = ACTIONS(428), - [anon_sym_for] = ACTIONS(428), - [anon_sym_return] = ACTIONS(428), - [anon_sym_break] = ACTIONS(428), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_goto] = ACTIONS(428), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_BANG] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(428), - [anon_sym_DASH] = ACTIONS(428), - [anon_sym_DASH_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(426), - [anon_sym_sizeof] = ACTIONS(428), - [sym_number_literal] = ACTIONS(426), - [anon_sym_SQUOTE] = ACTIONS(426), - [anon_sym_DQUOTE] = ACTIONS(426), - [sym_true] = ACTIONS(428), - [sym_false] = ACTIONS(428), - [sym_null] = ACTIONS(428), - [sym_identifier] = ACTIONS(428), - [sym_comment] = ACTIONS(85), + [605] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(390), + [sym_preproc_directive] = ACTIONS(390), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_typedef] = ACTIONS(390), + [anon_sym_extern] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_LPAREN2] = ACTIONS(388), + [anon_sym_STAR] = ACTIONS(388), + [anon_sym_static] = ACTIONS(390), + [anon_sym_auto] = ACTIONS(390), + [anon_sym_register] = ACTIONS(390), + [anon_sym_inline] = ACTIONS(390), + [anon_sym_const] = ACTIONS(390), + [anon_sym_restrict] = ACTIONS(390), + [anon_sym_volatile] = ACTIONS(390), + [anon_sym__Atomic] = ACTIONS(390), + [anon_sym_unsigned] = ACTIONS(390), + [anon_sym_long] = ACTIONS(390), + [anon_sym_short] = ACTIONS(390), + [sym_primitive_type] = ACTIONS(390), + [anon_sym_enum] = ACTIONS(390), + [anon_sym_struct] = ACTIONS(390), + [anon_sym_union] = ACTIONS(390), + [anon_sym_if] = ACTIONS(390), + [anon_sym_switch] = ACTIONS(390), + [anon_sym_while] = ACTIONS(390), + [anon_sym_do] = ACTIONS(390), + [anon_sym_for] = ACTIONS(390), + [anon_sym_return] = ACTIONS(390), + [anon_sym_break] = ACTIONS(390), + [anon_sym_continue] = ACTIONS(390), + [anon_sym_goto] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_DASH_DASH] = ACTIONS(388), + [anon_sym_PLUS_PLUS] = ACTIONS(388), + [anon_sym_sizeof] = ACTIONS(390), + [sym_number_literal] = ACTIONS(388), + [anon_sym_SQUOTE] = ACTIONS(388), + [anon_sym_DQUOTE] = ACTIONS(388), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_null] = ACTIONS(390), + [sym_identifier] = ACTIONS(390), + [sym_comment] = ACTIONS(81), }, - [652] = { - [anon_sym_LF] = ACTIONS(2386), - [sym_comment] = ACTIONS(95), + [606] = { + [anon_sym_LF] = ACTIONS(2274), + [sym_comment] = ACTIONS(91), }, - [653] = { - [sym__type_declarator] = STATE(877), - [sym_pointer_type_declarator] = STATE(877), - [sym_function_type_declarator] = STATE(877), - [sym_array_type_declarator] = STATE(877), - [anon_sym_LPAREN2] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [sym_identifier] = ACTIONS(441), - [sym_comment] = ACTIONS(85), + [607] = { + [sym__type_declarator] = STATE(834), + [sym_pointer_type_declarator] = STATE(834), + [sym_function_type_declarator] = STATE(834), + [sym_array_type_declarator] = STATE(834), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(401), + [sym_identifier] = ACTIONS(403), + [sym_comment] = ACTIONS(81), }, - [654] = { - [sym_type_qualifier] = STATE(213), - [sym__type_specifier] = STATE(878), - [sym_sized_type_specifier] = STATE(878), - [sym_enum_specifier] = STATE(878), - [sym_struct_specifier] = STATE(878), - [sym_union_specifier] = STATE(878), - [sym_macro_type_specifier] = STATE(878), - [aux_sym_type_definition_repeat1] = STATE(213), - [aux_sym_sized_type_specifier_repeat1] = STATE(55), + [608] = { + [sym_type_qualifier] = STATE(195), + [sym__type_specifier] = STATE(835), + [sym_sized_type_specifier] = STATE(835), + [sym_enum_specifier] = STATE(835), + [sym_struct_specifier] = STATE(835), + [sym_union_specifier] = STATE(835), + [sym_macro_type_specifier] = STATE(835), + [aux_sym_type_definition_repeat1] = STATE(195), + [aux_sym_sized_type_specifier_repeat1] = STATE(53), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(107), - [anon_sym_long] = ACTIONS(107), - [anon_sym_short] = ACTIONS(107), - [sym_primitive_type] = ACTIONS(2388), + [anon_sym_unsigned] = ACTIONS(103), + [anon_sym_long] = ACTIONS(103), + [anon_sym_short] = ACTIONS(103), + [sym_primitive_type] = ACTIONS(2276), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [655] = { - [sym_function_definition] = STATE(880), - [sym_declaration] = STATE(880), - [sym__declaration_specifiers] = STATE(881), - [sym_declaration_list] = STATE(880), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), + [609] = { + [sym_function_definition] = STATE(837), + [sym_declaration] = STATE(837), + [sym__declaration_specifiers] = STATE(838), + [sym_declaration_list] = STATE(837), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(2390), + [anon_sym_LBRACE] = ACTIONS(2278), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -29116,141 +26805,138 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [656] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(459), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(459), - [sym_preproc_directive] = ACTIONS(459), - [anon_sym_SEMI] = ACTIONS(457), - [anon_sym_typedef] = ACTIONS(459), - [anon_sym_extern] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(457), - [anon_sym_LPAREN2] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(457), - [anon_sym_static] = ACTIONS(459), - [anon_sym_auto] = ACTIONS(459), - [anon_sym_register] = ACTIONS(459), - [anon_sym_inline] = ACTIONS(459), - [anon_sym_const] = ACTIONS(459), - [anon_sym_restrict] = ACTIONS(459), - [anon_sym_volatile] = ACTIONS(459), - [anon_sym__Atomic] = ACTIONS(459), - [anon_sym_unsigned] = ACTIONS(459), - [anon_sym_long] = ACTIONS(459), - [anon_sym_short] = ACTIONS(459), - [sym_primitive_type] = ACTIONS(459), - [anon_sym_enum] = ACTIONS(459), - [anon_sym_struct] = ACTIONS(459), - [anon_sym_union] = ACTIONS(459), - [anon_sym_if] = ACTIONS(459), - [anon_sym_else] = ACTIONS(459), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_case] = ACTIONS(459), - [anon_sym_default] = ACTIONS(459), - [anon_sym_while] = ACTIONS(459), - [anon_sym_do] = ACTIONS(459), - [anon_sym_for] = ACTIONS(459), - [anon_sym_return] = ACTIONS(459), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(459), - [anon_sym_goto] = ACTIONS(459), - [anon_sym_AMP] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(457), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_DASH_DASH] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(457), - [anon_sym_sizeof] = ACTIONS(459), - [sym_number_literal] = ACTIONS(457), - [anon_sym_SQUOTE] = ACTIONS(457), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_true] = ACTIONS(459), - [sym_false] = ACTIONS(459), - [sym_null] = ACTIONS(459), - [sym_identifier] = ACTIONS(459), - [sym_comment] = ACTIONS(85), + [610] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(421), + [sym_preproc_directive] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_typedef] = ACTIONS(421), + [anon_sym_extern] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_LPAREN2] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(419), + [anon_sym_static] = ACTIONS(421), + [anon_sym_auto] = ACTIONS(421), + [anon_sym_register] = ACTIONS(421), + [anon_sym_inline] = ACTIONS(421), + [anon_sym_const] = ACTIONS(421), + [anon_sym_restrict] = ACTIONS(421), + [anon_sym_volatile] = ACTIONS(421), + [anon_sym__Atomic] = ACTIONS(421), + [anon_sym_unsigned] = ACTIONS(421), + [anon_sym_long] = ACTIONS(421), + [anon_sym_short] = ACTIONS(421), + [sym_primitive_type] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(421), + [anon_sym_struct] = ACTIONS(421), + [anon_sym_union] = ACTIONS(421), + [anon_sym_if] = ACTIONS(421), + [anon_sym_else] = ACTIONS(421), + [anon_sym_switch] = ACTIONS(421), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(421), + [anon_sym_for] = ACTIONS(421), + [anon_sym_return] = ACTIONS(421), + [anon_sym_break] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_goto] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(419), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_DASH_DASH] = ACTIONS(419), + [anon_sym_PLUS_PLUS] = ACTIONS(419), + [anon_sym_sizeof] = ACTIONS(421), + [sym_number_literal] = ACTIONS(419), + [anon_sym_SQUOTE] = ACTIONS(419), + [anon_sym_DQUOTE] = ACTIONS(419), + [sym_true] = ACTIONS(421), + [sym_false] = ACTIONS(421), + [sym_null] = ACTIONS(421), + [sym_identifier] = ACTIONS(421), + [sym_comment] = ACTIONS(81), }, - [657] = { - [sym_preproc_include] = STATE(233), - [sym_preproc_def] = STATE(233), - [sym_preproc_function_def] = STATE(233), - [sym_preproc_call] = STATE(233), - [sym_preproc_if_in_compound_statement] = STATE(233), - [sym_preproc_ifdef_in_compound_statement] = STATE(233), - [sym_declaration] = STATE(233), - [sym_type_definition] = STATE(233), - [sym__declaration_specifiers] = STATE(67), - [sym_compound_statement] = STATE(233), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(233), - [sym_expression_statement] = STATE(233), - [sym_if_statement] = STATE(233), - [sym_switch_statement] = STATE(233), - [sym_case_statement] = STATE(233), - [sym_while_statement] = STATE(233), - [sym_do_statement] = STATE(233), - [sym_for_statement] = STATE(233), - [sym_return_statement] = STATE(233), - [sym_break_statement] = STATE(233), - [sym_continue_statement] = STATE(233), - [sym_goto_statement] = STATE(233), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(233), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(233), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), + [611] = { + [sym_preproc_include] = STATE(212), + [sym_preproc_def] = STATE(212), + [sym_preproc_function_def] = STATE(212), + [sym_preproc_call] = STATE(212), + [sym_preproc_if_in_compound_statement] = STATE(212), + [sym_preproc_ifdef_in_compound_statement] = STATE(212), + [sym_declaration] = STATE(212), + [sym_type_definition] = STATE(212), + [sym__declaration_specifiers] = STATE(62), + [sym_compound_statement] = STATE(212), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(212), + [sym_expression_statement] = STATE(212), + [sym_if_statement] = STATE(212), + [sym_switch_statement] = STATE(212), + [sym_while_statement] = STATE(212), + [sym_do_statement] = STATE(212), + [sym_for_statement] = STATE(212), + [sym_return_statement] = STATE(212), + [sym_break_statement] = STATE(212), + [sym_continue_statement] = STATE(212), + [sym_goto_statement] = STATE(212), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(212), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(212), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(117), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(117), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(111), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(113), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(113), [sym_preproc_directive] = ACTIONS(15), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2280), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -29268,414 +26954,206 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(133), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(123), + [sym_comment] = ACTIONS(81), }, - [658] = { - [sym_compound_statement] = STATE(890), - [sym_labeled_statement] = STATE(890), - [sym_expression_statement] = STATE(890), - [sym_if_statement] = STATE(890), - [sym_switch_statement] = STATE(890), - [sym_case_statement] = STATE(890), - [sym_while_statement] = STATE(890), - [sym_do_statement] = STATE(890), - [sym_for_statement] = STATE(890), - [sym_return_statement] = STATE(890), - [sym_break_statement] = STATE(890), - [sym_continue_statement] = STATE(890), - [sym_goto_statement] = STATE(890), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), + [612] = { + [sym_compound_statement] = STATE(844), + [sym_labeled_statement] = STATE(844), + [sym_expression_statement] = STATE(844), + [sym_if_statement] = STATE(844), + [sym_switch_statement] = STATE(844), + [sym_while_statement] = STATE(844), + [sym_do_statement] = STATE(844), + [sym_for_statement] = STATE(844), + [sym_return_statement] = STATE(844), + [sym_break_statement] = STATE(844), + [sym_continue_statement] = STATE(844), + [sym_goto_statement] = STATE(844), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_case] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(2282), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2406), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2288), + [sym_comment] = ACTIONS(81), }, - [659] = { - [sym_compound_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_expression_statement] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_case_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_goto_statement] = STATE(892), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), + [613] = { + [sym_switch_body] = STATE(846), + [anon_sym_LBRACE] = ACTIONS(2290), + [sym_comment] = ACTIONS(81), + }, + [614] = { + [sym_compound_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_expression_statement] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_goto_statement] = STATE(848), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2408), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2292), + [sym_comment] = ACTIONS(81), }, - [660] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(2410), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [615] = { + [anon_sym_while] = ACTIONS(2294), + [sym_comment] = ACTIONS(81), }, - [661] = { - [sym_declaration] = STATE(895), - [sym_type_definition] = STATE(895), - [sym__declaration_specifiers] = STATE(896), - [sym_compound_statement] = STATE(895), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_labeled_statement] = STATE(895), - [sym_expression_statement] = STATE(895), - [sym_if_statement] = STATE(895), - [sym_switch_statement] = STATE(895), - [sym_case_statement] = STATE(895), - [sym_while_statement] = STATE(895), - [sym_do_statement] = STATE(895), - [sym_for_statement] = STATE(895), - [sym_return_statement] = STATE(895), - [sym_break_statement] = STATE(895), - [sym_continue_statement] = STATE(895), - [sym_goto_statement] = STATE(895), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_typedef] = ACTIONS(1029), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2412), - [sym_comment] = ACTIONS(85), - }, - [662] = { - [sym_compound_statement] = STATE(897), - [sym_labeled_statement] = STATE(897), - [sym_expression_statement] = STATE(897), - [sym_if_statement] = STATE(897), - [sym_switch_statement] = STATE(897), - [sym_case_statement] = STATE(897), - [sym_while_statement] = STATE(897), - [sym_do_statement] = STATE(897), - [sym_for_statement] = STATE(897), - [sym_return_statement] = STATE(897), - [sym_break_statement] = STATE(897), - [sym_continue_statement] = STATE(897), - [sym_goto_statement] = STATE(897), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2408), - [sym_comment] = ACTIONS(85), - }, - [663] = { - [anon_sym_while] = ACTIONS(2414), - [sym_comment] = ACTIONS(85), - }, - [664] = { - [sym_declaration] = STATE(899), - [sym__declaration_specifiers] = STATE(306), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym__expression] = STATE(900), - [sym_conditional_expression] = STATE(900), - [sym_assignment_expression] = STATE(900), - [sym_pointer_expression] = STATE(900), - [sym_logical_expression] = STATE(900), - [sym_bitwise_expression] = STATE(900), - [sym_equality_expression] = STATE(900), - [sym_relational_expression] = STATE(900), - [sym_shift_expression] = STATE(900), - [sym_math_expression] = STATE(900), - [sym_cast_expression] = STATE(900), - [sym_sizeof_expression] = STATE(900), - [sym_subscript_expression] = STATE(900), - [sym_call_expression] = STATE(900), - [sym_field_expression] = STATE(900), - [sym_compound_literal_expression] = STATE(900), - [sym_parenthesized_expression] = STATE(900), - [sym_char_literal] = STATE(900), - [sym_concatenated_string] = STATE(900), - [sym_string_literal] = STATE(123), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(2416), + [616] = { + [sym_declaration] = STATE(850), + [sym__declaration_specifiers] = STATE(273), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym__expression] = STATE(851), + [sym_conditional_expression] = STATE(851), + [sym_assignment_expression] = STATE(851), + [sym_pointer_expression] = STATE(851), + [sym_logical_expression] = STATE(851), + [sym_bitwise_expression] = STATE(851), + [sym_equality_expression] = STATE(851), + [sym_relational_expression] = STATE(851), + [sym_shift_expression] = STATE(851), + [sym_math_expression] = STATE(851), + [sym_cast_expression] = STATE(851), + [sym_sizeof_expression] = STATE(851), + [sym_subscript_expression] = STATE(851), + [sym_call_expression] = STATE(851), + [sym_field_expression] = STATE(851), + [sym_compound_literal_expression] = STATE(851), + [sym_parenthesized_expression] = STATE(851), + [sym_char_literal] = STATE(851), + [sym_concatenated_string] = STATE(851), + [sym_string_literal] = STATE(107), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(2296), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -29684,640 +27162,623 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2420), - [sym_false] = ACTIONS(2420), - [sym_null] = ACTIONS(2420), - [sym_identifier] = ACTIONS(651), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_identifier] = ACTIONS(559), + [sym_comment] = ACTIONS(81), }, - [665] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(655), - [sym_preproc_directive] = ACTIONS(655), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_typedef] = ACTIONS(655), - [anon_sym_extern] = ACTIONS(655), - [anon_sym_LBRACE] = ACTIONS(653), - [anon_sym_LPAREN2] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_static] = ACTIONS(655), - [anon_sym_auto] = ACTIONS(655), - [anon_sym_register] = ACTIONS(655), - [anon_sym_inline] = ACTIONS(655), - [anon_sym_const] = ACTIONS(655), - [anon_sym_restrict] = ACTIONS(655), - [anon_sym_volatile] = ACTIONS(655), - [anon_sym__Atomic] = ACTIONS(655), - [anon_sym_unsigned] = ACTIONS(655), - [anon_sym_long] = ACTIONS(655), - [anon_sym_short] = ACTIONS(655), - [sym_primitive_type] = ACTIONS(655), - [anon_sym_enum] = ACTIONS(655), - [anon_sym_struct] = ACTIONS(655), - [anon_sym_union] = ACTIONS(655), - [anon_sym_if] = ACTIONS(655), - [anon_sym_else] = ACTIONS(655), - [anon_sym_switch] = ACTIONS(655), - [anon_sym_case] = ACTIONS(655), - [anon_sym_default] = ACTIONS(655), - [anon_sym_while] = ACTIONS(655), - [anon_sym_do] = ACTIONS(655), - [anon_sym_for] = ACTIONS(655), - [anon_sym_return] = ACTIONS(655), - [anon_sym_break] = ACTIONS(655), - [anon_sym_continue] = ACTIONS(655), - [anon_sym_goto] = ACTIONS(655), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(653), - [anon_sym_sizeof] = ACTIONS(655), - [sym_number_literal] = ACTIONS(653), - [anon_sym_SQUOTE] = ACTIONS(653), - [anon_sym_DQUOTE] = ACTIONS(653), - [sym_true] = ACTIONS(655), - [sym_false] = ACTIONS(655), - [sym_null] = ACTIONS(655), - [sym_identifier] = ACTIONS(655), - [sym_comment] = ACTIONS(85), + [617] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(563), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(563), + [sym_preproc_directive] = ACTIONS(563), + [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_typedef] = ACTIONS(563), + [anon_sym_extern] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_LPAREN2] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(561), + [anon_sym_static] = ACTIONS(563), + [anon_sym_auto] = ACTIONS(563), + [anon_sym_register] = ACTIONS(563), + [anon_sym_inline] = ACTIONS(563), + [anon_sym_const] = ACTIONS(563), + [anon_sym_restrict] = ACTIONS(563), + [anon_sym_volatile] = ACTIONS(563), + [anon_sym__Atomic] = ACTIONS(563), + [anon_sym_unsigned] = ACTIONS(563), + [anon_sym_long] = ACTIONS(563), + [anon_sym_short] = ACTIONS(563), + [sym_primitive_type] = ACTIONS(563), + [anon_sym_enum] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(563), + [anon_sym_union] = ACTIONS(563), + [anon_sym_if] = ACTIONS(563), + [anon_sym_else] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(563), + [anon_sym_while] = ACTIONS(563), + [anon_sym_do] = ACTIONS(563), + [anon_sym_for] = ACTIONS(563), + [anon_sym_return] = ACTIONS(563), + [anon_sym_break] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(563), + [anon_sym_goto] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(561), + [anon_sym_BANG] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(561), + [anon_sym_PLUS_PLUS] = ACTIONS(561), + [anon_sym_sizeof] = ACTIONS(563), + [sym_number_literal] = ACTIONS(561), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(561), + [sym_true] = ACTIONS(563), + [sym_false] = ACTIONS(563), + [sym_null] = ACTIONS(563), + [sym_identifier] = ACTIONS(563), + [sym_comment] = ACTIONS(81), }, - [666] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [618] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [667] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(695), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(695), - [sym_preproc_directive] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(693), - [anon_sym_typedef] = ACTIONS(695), - [anon_sym_extern] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_LPAREN2] = ACTIONS(693), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_static] = ACTIONS(695), - [anon_sym_auto] = ACTIONS(695), - [anon_sym_register] = ACTIONS(695), - [anon_sym_inline] = ACTIONS(695), - [anon_sym_const] = ACTIONS(695), - [anon_sym_restrict] = ACTIONS(695), - [anon_sym_volatile] = ACTIONS(695), - [anon_sym__Atomic] = ACTIONS(695), - [anon_sym_unsigned] = ACTIONS(695), - [anon_sym_long] = ACTIONS(695), - [anon_sym_short] = ACTIONS(695), - [sym_primitive_type] = ACTIONS(695), - [anon_sym_enum] = ACTIONS(695), - [anon_sym_struct] = ACTIONS(695), - [anon_sym_union] = ACTIONS(695), - [anon_sym_if] = ACTIONS(695), - [anon_sym_else] = ACTIONS(695), - [anon_sym_switch] = ACTIONS(695), - [anon_sym_case] = ACTIONS(695), - [anon_sym_default] = ACTIONS(695), - [anon_sym_while] = ACTIONS(695), - [anon_sym_do] = ACTIONS(695), - [anon_sym_for] = ACTIONS(695), - [anon_sym_return] = ACTIONS(695), - [anon_sym_break] = ACTIONS(695), - [anon_sym_continue] = ACTIONS(695), - [anon_sym_goto] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(693), - [anon_sym_TILDE] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_DASH_DASH] = ACTIONS(693), - [anon_sym_PLUS_PLUS] = ACTIONS(693), - [anon_sym_sizeof] = ACTIONS(695), - [sym_number_literal] = ACTIONS(693), - [anon_sym_SQUOTE] = ACTIONS(693), - [anon_sym_DQUOTE] = ACTIONS(693), - [sym_true] = ACTIONS(695), - [sym_false] = ACTIONS(695), - [sym_null] = ACTIONS(695), - [sym_identifier] = ACTIONS(695), - [sym_comment] = ACTIONS(85), + [619] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(603), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(603), + [sym_preproc_directive] = ACTIONS(603), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym_typedef] = ACTIONS(603), + [anon_sym_extern] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_LPAREN2] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(601), + [anon_sym_static] = ACTIONS(603), + [anon_sym_auto] = ACTIONS(603), + [anon_sym_register] = ACTIONS(603), + [anon_sym_inline] = ACTIONS(603), + [anon_sym_const] = ACTIONS(603), + [anon_sym_restrict] = ACTIONS(603), + [anon_sym_volatile] = ACTIONS(603), + [anon_sym__Atomic] = ACTIONS(603), + [anon_sym_unsigned] = ACTIONS(603), + [anon_sym_long] = ACTIONS(603), + [anon_sym_short] = ACTIONS(603), + [sym_primitive_type] = ACTIONS(603), + [anon_sym_enum] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(603), + [anon_sym_union] = ACTIONS(603), + [anon_sym_if] = ACTIONS(603), + [anon_sym_else] = ACTIONS(603), + [anon_sym_switch] = ACTIONS(603), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(603), + [anon_sym_for] = ACTIONS(603), + [anon_sym_return] = ACTIONS(603), + [anon_sym_break] = ACTIONS(603), + [anon_sym_continue] = ACTIONS(603), + [anon_sym_goto] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(601), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(603), + [anon_sym_DASH] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_sizeof] = ACTIONS(603), + [sym_number_literal] = ACTIONS(601), + [anon_sym_SQUOTE] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(601), + [sym_true] = ACTIONS(603), + [sym_false] = ACTIONS(603), + [sym_null] = ACTIONS(603), + [sym_identifier] = ACTIONS(603), + [sym_comment] = ACTIONS(81), }, - [668] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(699), - [sym_preproc_directive] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_typedef] = ACTIONS(699), - [anon_sym_extern] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(697), - [anon_sym_LPAREN2] = ACTIONS(697), - [anon_sym_STAR] = ACTIONS(697), - [anon_sym_static] = ACTIONS(699), - [anon_sym_auto] = ACTIONS(699), - [anon_sym_register] = ACTIONS(699), - [anon_sym_inline] = ACTIONS(699), - [anon_sym_const] = ACTIONS(699), - [anon_sym_restrict] = ACTIONS(699), - [anon_sym_volatile] = ACTIONS(699), - [anon_sym__Atomic] = ACTIONS(699), - [anon_sym_unsigned] = ACTIONS(699), - [anon_sym_long] = ACTIONS(699), - [anon_sym_short] = ACTIONS(699), - [sym_primitive_type] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(699), - [anon_sym_struct] = ACTIONS(699), - [anon_sym_union] = ACTIONS(699), - [anon_sym_if] = ACTIONS(699), - [anon_sym_else] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(699), - [anon_sym_case] = ACTIONS(699), - [anon_sym_default] = ACTIONS(699), - [anon_sym_while] = ACTIONS(699), - [anon_sym_do] = ACTIONS(699), - [anon_sym_for] = ACTIONS(699), - [anon_sym_return] = ACTIONS(699), - [anon_sym_break] = ACTIONS(699), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_goto] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_TILDE] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_sizeof] = ACTIONS(699), - [sym_number_literal] = ACTIONS(697), - [anon_sym_SQUOTE] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(697), - [sym_true] = ACTIONS(699), - [sym_false] = ACTIONS(699), - [sym_null] = ACTIONS(699), - [sym_identifier] = ACTIONS(699), - [sym_comment] = ACTIONS(85), + [620] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(607), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(607), + [sym_preproc_directive] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_typedef] = ACTIONS(607), + [anon_sym_extern] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_LPAREN2] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_static] = ACTIONS(607), + [anon_sym_auto] = ACTIONS(607), + [anon_sym_register] = ACTIONS(607), + [anon_sym_inline] = ACTIONS(607), + [anon_sym_const] = ACTIONS(607), + [anon_sym_restrict] = ACTIONS(607), + [anon_sym_volatile] = ACTIONS(607), + [anon_sym__Atomic] = ACTIONS(607), + [anon_sym_unsigned] = ACTIONS(607), + [anon_sym_long] = ACTIONS(607), + [anon_sym_short] = ACTIONS(607), + [sym_primitive_type] = ACTIONS(607), + [anon_sym_enum] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_union] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_else] = ACTIONS(607), + [anon_sym_switch] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [anon_sym_do] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_goto] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_sizeof] = ACTIONS(607), + [sym_number_literal] = ACTIONS(605), + [anon_sym_SQUOTE] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_true] = ACTIONS(607), + [sym_false] = ACTIONS(607), + [sym_null] = ACTIONS(607), + [sym_identifier] = ACTIONS(607), + [sym_comment] = ACTIONS(81), }, - [669] = { - [anon_sym_SEMI] = ACTIONS(2424), - [sym_comment] = ACTIONS(85), + [621] = { + [anon_sym_SEMI] = ACTIONS(2304), + [sym_comment] = ACTIONS(81), }, - [670] = { - [sym_compound_statement] = STATE(903), - [sym_labeled_statement] = STATE(903), - [sym_expression_statement] = STATE(903), - [sym_if_statement] = STATE(903), - [sym_switch_statement] = STATE(903), - [sym_case_statement] = STATE(903), - [sym_while_statement] = STATE(903), - [sym_do_statement] = STATE(903), - [sym_for_statement] = STATE(903), - [sym_return_statement] = STATE(903), - [sym_break_statement] = STATE(903), - [sym_continue_statement] = STATE(903), - [sym_goto_statement] = STATE(903), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), + [622] = { + [sym_compound_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_expression_statement] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_goto_statement] = STATE(854), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2408), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2292), + [sym_comment] = ACTIONS(81), }, - [671] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(731), - [sym_preproc_directive] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_typedef] = ACTIONS(731), - [anon_sym_extern] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(729), - [anon_sym_LPAREN2] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_static] = ACTIONS(731), - [anon_sym_auto] = ACTIONS(731), - [anon_sym_register] = ACTIONS(731), - [anon_sym_inline] = ACTIONS(731), - [anon_sym_const] = ACTIONS(731), - [anon_sym_restrict] = ACTIONS(731), - [anon_sym_volatile] = ACTIONS(731), - [anon_sym__Atomic] = ACTIONS(731), - [anon_sym_unsigned] = ACTIONS(731), - [anon_sym_long] = ACTIONS(731), - [anon_sym_short] = ACTIONS(731), - [sym_primitive_type] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(731), - [anon_sym_struct] = ACTIONS(731), - [anon_sym_union] = ACTIONS(731), - [anon_sym_if] = ACTIONS(731), - [anon_sym_switch] = ACTIONS(731), - [anon_sym_case] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_while] = ACTIONS(731), - [anon_sym_do] = ACTIONS(731), - [anon_sym_for] = ACTIONS(731), - [anon_sym_return] = ACTIONS(731), - [anon_sym_break] = ACTIONS(731), - [anon_sym_continue] = ACTIONS(731), - [anon_sym_goto] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_TILDE] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_sizeof] = ACTIONS(731), - [sym_number_literal] = ACTIONS(729), - [anon_sym_SQUOTE] = ACTIONS(729), - [anon_sym_DQUOTE] = ACTIONS(729), - [sym_true] = ACTIONS(731), - [sym_false] = ACTIONS(731), - [sym_null] = ACTIONS(731), - [sym_identifier] = ACTIONS(731), - [sym_comment] = ACTIONS(85), + [623] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(639), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(639), + [sym_preproc_directive] = ACTIONS(639), + [anon_sym_SEMI] = ACTIONS(637), + [anon_sym_typedef] = ACTIONS(639), + [anon_sym_extern] = ACTIONS(639), + [anon_sym_LBRACE] = ACTIONS(637), + [anon_sym_LPAREN2] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_static] = ACTIONS(639), + [anon_sym_auto] = ACTIONS(639), + [anon_sym_register] = ACTIONS(639), + [anon_sym_inline] = ACTIONS(639), + [anon_sym_const] = ACTIONS(639), + [anon_sym_restrict] = ACTIONS(639), + [anon_sym_volatile] = ACTIONS(639), + [anon_sym__Atomic] = ACTIONS(639), + [anon_sym_unsigned] = ACTIONS(639), + [anon_sym_long] = ACTIONS(639), + [anon_sym_short] = ACTIONS(639), + [sym_primitive_type] = ACTIONS(639), + [anon_sym_enum] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(639), + [anon_sym_union] = ACTIONS(639), + [anon_sym_if] = ACTIONS(639), + [anon_sym_switch] = ACTIONS(639), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(639), + [anon_sym_for] = ACTIONS(639), + [anon_sym_return] = ACTIONS(639), + [anon_sym_break] = ACTIONS(639), + [anon_sym_continue] = ACTIONS(639), + [anon_sym_goto] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_DASH_DASH] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(637), + [anon_sym_sizeof] = ACTIONS(639), + [sym_number_literal] = ACTIONS(637), + [anon_sym_SQUOTE] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(637), + [sym_true] = ACTIONS(639), + [sym_false] = ACTIONS(639), + [sym_null] = ACTIONS(639), + [sym_identifier] = ACTIONS(639), + [sym_comment] = ACTIONS(81), }, - [672] = { - [sym_compound_statement] = STATE(905), - [sym_parameter_list] = STATE(354), - [aux_sym_declaration_repeat1] = STATE(906), - [anon_sym_COMMA] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(747), - [sym_comment] = ACTIONS(85), + [624] = { + [sym_compound_statement] = STATE(856), + [sym_parameter_list] = STATE(309), + [aux_sym_declaration_repeat1] = STATE(857), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(2306), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(655), + [sym_comment] = ACTIONS(81), }, - [673] = { - [aux_sym_declaration_repeat1] = STATE(906), - [anon_sym_COMMA] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(2426), - [sym_comment] = ACTIONS(85), + [625] = { + [aux_sym_declaration_repeat1] = STATE(857), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(2306), + [sym_comment] = ACTIONS(81), }, - [674] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(759), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(759), - [sym_preproc_directive] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(757), - [anon_sym_typedef] = ACTIONS(759), - [anon_sym_extern] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_LPAREN2] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(757), - [anon_sym_static] = ACTIONS(759), - [anon_sym_auto] = ACTIONS(759), - [anon_sym_register] = ACTIONS(759), - [anon_sym_inline] = ACTIONS(759), - [anon_sym_const] = ACTIONS(759), - [anon_sym_restrict] = ACTIONS(759), - [anon_sym_volatile] = ACTIONS(759), - [anon_sym__Atomic] = ACTIONS(759), - [anon_sym_unsigned] = ACTIONS(759), - [anon_sym_long] = ACTIONS(759), - [anon_sym_short] = ACTIONS(759), - [sym_primitive_type] = ACTIONS(759), - [anon_sym_enum] = ACTIONS(759), - [anon_sym_struct] = ACTIONS(759), - [anon_sym_union] = ACTIONS(759), - [anon_sym_if] = ACTIONS(759), - [anon_sym_else] = ACTIONS(759), - [anon_sym_switch] = ACTIONS(759), - [anon_sym_case] = ACTIONS(759), - [anon_sym_default] = ACTIONS(759), - [anon_sym_while] = ACTIONS(759), - [anon_sym_do] = ACTIONS(759), - [anon_sym_for] = ACTIONS(759), - [anon_sym_return] = ACTIONS(759), - [anon_sym_break] = ACTIONS(759), - [anon_sym_continue] = ACTIONS(759), - [anon_sym_goto] = ACTIONS(759), - [anon_sym_AMP] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_TILDE] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(757), - [anon_sym_PLUS_PLUS] = ACTIONS(757), - [anon_sym_sizeof] = ACTIONS(759), - [sym_number_literal] = ACTIONS(757), - [anon_sym_SQUOTE] = ACTIONS(757), - [anon_sym_DQUOTE] = ACTIONS(757), - [sym_true] = ACTIONS(759), - [sym_false] = ACTIONS(759), - [sym_null] = ACTIONS(759), - [sym_identifier] = ACTIONS(759), - [sym_comment] = ACTIONS(85), + [626] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(667), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(667), + [sym_preproc_directive] = ACTIONS(667), + [anon_sym_SEMI] = ACTIONS(665), + [anon_sym_typedef] = ACTIONS(667), + [anon_sym_extern] = ACTIONS(667), + [anon_sym_LBRACE] = ACTIONS(665), + [anon_sym_LPAREN2] = ACTIONS(665), + [anon_sym_STAR] = ACTIONS(665), + [anon_sym_static] = ACTIONS(667), + [anon_sym_auto] = ACTIONS(667), + [anon_sym_register] = ACTIONS(667), + [anon_sym_inline] = ACTIONS(667), + [anon_sym_const] = ACTIONS(667), + [anon_sym_restrict] = ACTIONS(667), + [anon_sym_volatile] = ACTIONS(667), + [anon_sym__Atomic] = ACTIONS(667), + [anon_sym_unsigned] = ACTIONS(667), + [anon_sym_long] = ACTIONS(667), + [anon_sym_short] = ACTIONS(667), + [sym_primitive_type] = ACTIONS(667), + [anon_sym_enum] = ACTIONS(667), + [anon_sym_struct] = ACTIONS(667), + [anon_sym_union] = ACTIONS(667), + [anon_sym_if] = ACTIONS(667), + [anon_sym_else] = ACTIONS(667), + [anon_sym_switch] = ACTIONS(667), + [anon_sym_while] = ACTIONS(667), + [anon_sym_do] = ACTIONS(667), + [anon_sym_for] = ACTIONS(667), + [anon_sym_return] = ACTIONS(667), + [anon_sym_break] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(667), + [anon_sym_goto] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_BANG] = ACTIONS(665), + [anon_sym_TILDE] = ACTIONS(665), + [anon_sym_PLUS] = ACTIONS(667), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_DASH_DASH] = ACTIONS(665), + [anon_sym_PLUS_PLUS] = ACTIONS(665), + [anon_sym_sizeof] = ACTIONS(667), + [sym_number_literal] = ACTIONS(665), + [anon_sym_SQUOTE] = ACTIONS(665), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_true] = ACTIONS(667), + [sym_false] = ACTIONS(667), + [sym_null] = ACTIONS(667), + [sym_identifier] = ACTIONS(667), + [sym_comment] = ACTIONS(81), }, - [675] = { - [sym_preproc_include] = STATE(675), - [sym_preproc_def] = STATE(675), - [sym_preproc_function_def] = STATE(675), - [sym_preproc_call] = STATE(675), - [sym_preproc_if] = STATE(675), - [sym_preproc_ifdef] = STATE(675), - [sym_function_definition] = STATE(675), - [sym_declaration] = STATE(675), - [sym_type_definition] = STATE(675), - [sym__declaration_specifiers] = STATE(416), - [sym_linkage_specification] = STATE(675), - [sym_compound_statement] = STATE(675), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(675), - [sym_expression_statement] = STATE(675), - [sym_if_statement] = STATE(675), - [sym_switch_statement] = STATE(675), - [sym_case_statement] = STATE(675), - [sym_while_statement] = STATE(675), - [sym_do_statement] = STATE(675), - [sym_for_statement] = STATE(675), - [sym_return_statement] = STATE(675), - [sym_break_statement] = STATE(675), - [sym_continue_statement] = STATE(675), - [sym_goto_statement] = STATE(675), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(675), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(675), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2431), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2434), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2437), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2437), - [sym_preproc_directive] = ACTIONS(2440), - [anon_sym_SEMI] = ACTIONS(2443), - [anon_sym_typedef] = ACTIONS(2446), - [anon_sym_extern] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2452), - [anon_sym_LPAREN2] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(875), - [anon_sym_static] = ACTIONS(878), - [anon_sym_auto] = ACTIONS(878), - [anon_sym_register] = ACTIONS(878), - [anon_sym_inline] = ACTIONS(878), - [anon_sym_const] = ACTIONS(881), - [anon_sym_restrict] = ACTIONS(881), - [anon_sym_volatile] = ACTIONS(881), - [anon_sym__Atomic] = ACTIONS(881), - [anon_sym_unsigned] = ACTIONS(884), - [anon_sym_long] = ACTIONS(884), - [anon_sym_short] = ACTIONS(884), - [sym_primitive_type] = ACTIONS(887), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(893), - [anon_sym_union] = ACTIONS(896), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_switch] = ACTIONS(2458), - [anon_sym_case] = ACTIONS(2461), - [anon_sym_default] = ACTIONS(2464), - [anon_sym_while] = ACTIONS(2467), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2476), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_goto] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(875), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_sizeof] = ACTIONS(944), - [sym_number_literal] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym_true] = ACTIONS(2491), - [sym_false] = ACTIONS(2491), - [sym_null] = ACTIONS(2491), - [sym_identifier] = ACTIONS(2494), - [sym_comment] = ACTIONS(85), + [627] = { + [sym_preproc_include] = STATE(627), + [sym_preproc_def] = STATE(627), + [sym_preproc_function_def] = STATE(627), + [sym_preproc_call] = STATE(627), + [sym_preproc_if] = STATE(627), + [sym_preproc_ifdef] = STATE(627), + [sym_function_definition] = STATE(627), + [sym_declaration] = STATE(627), + [sym_type_definition] = STATE(627), + [sym__declaration_specifiers] = STATE(376), + [sym_linkage_specification] = STATE(627), + [sym_compound_statement] = STATE(627), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(627), + [sym_expression_statement] = STATE(627), + [sym_if_statement] = STATE(627), + [sym_switch_statement] = STATE(627), + [sym_while_statement] = STATE(627), + [sym_do_statement] = STATE(627), + [sym_for_statement] = STATE(627), + [sym_return_statement] = STATE(627), + [sym_break_statement] = STATE(627), + [sym_continue_statement] = STATE(627), + [sym_goto_statement] = STATE(627), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [sym__empty_declaration] = STATE(627), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(627), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2308), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2311), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2314), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1741), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2317), + [sym_preproc_directive] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_typedef] = ACTIONS(2326), + [anon_sym_extern] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_LPAREN2] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_static] = ACTIONS(800), + [anon_sym_auto] = ACTIONS(800), + [anon_sym_register] = ACTIONS(800), + [anon_sym_inline] = ACTIONS(800), + [anon_sym_const] = ACTIONS(803), + [anon_sym_restrict] = ACTIONS(803), + [anon_sym_volatile] = ACTIONS(803), + [anon_sym__Atomic] = ACTIONS(803), + [anon_sym_unsigned] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [sym_primitive_type] = ACTIONS(809), + [anon_sym_enum] = ACTIONS(812), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_union] = ACTIONS(818), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_switch] = ACTIONS(2338), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2344), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2353), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_goto] = ACTIONS(2359), + [anon_sym_AMP] = ACTIONS(797), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_sizeof] = ACTIONS(860), + [sym_number_literal] = ACTIONS(2362), + [anon_sym_SQUOTE] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(869), + [sym_true] = ACTIONS(2365), + [sym_false] = ACTIONS(2365), + [sym_null] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2368), + [sym_comment] = ACTIONS(81), }, - [676] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2497), - [sym_comment] = ACTIONS(85), + [628] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2371), + [sym_comment] = ACTIONS(81), }, - [677] = { - [sym_preproc_include] = STATE(447), - [sym_preproc_def] = STATE(447), - [sym_preproc_function_def] = STATE(447), - [sym_preproc_call] = STATE(447), - [sym_preproc_if] = STATE(447), - [sym_preproc_ifdef] = STATE(447), - [sym_preproc_else] = STATE(907), - [sym_preproc_elif] = STATE(907), - [sym_function_definition] = STATE(447), - [sym_declaration] = STATE(447), - [sym_type_definition] = STATE(447), - [sym__declaration_specifiers] = STATE(200), - [sym_linkage_specification] = STATE(447), - [sym_compound_statement] = STATE(447), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(447), - [sym_expression_statement] = STATE(447), - [sym_if_statement] = STATE(447), - [sym_switch_statement] = STATE(447), - [sym_case_statement] = STATE(447), - [sym_while_statement] = STATE(447), - [sym_do_statement] = STATE(447), - [sym_for_statement] = STATE(447), - [sym_return_statement] = STATE(447), - [sym_break_statement] = STATE(447), - [sym_continue_statement] = STATE(447), - [sym_goto_statement] = STATE(447), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(447), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(447), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(384), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [629] = { + [sym_preproc_include] = STATE(405), + [sym_preproc_def] = STATE(405), + [sym_preproc_function_def] = STATE(405), + [sym_preproc_call] = STATE(405), + [sym_preproc_if] = STATE(405), + [sym_preproc_ifdef] = STATE(405), + [sym_preproc_else] = STATE(858), + [sym_preproc_elif] = STATE(858), + [sym_function_definition] = STATE(405), + [sym_declaration] = STATE(405), + [sym_type_definition] = STATE(405), + [sym__declaration_specifiers] = STATE(182), + [sym_linkage_specification] = STATE(405), + [sym_compound_statement] = STATE(405), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(405), + [sym_expression_statement] = STATE(405), + [sym_if_statement] = STATE(405), + [sym_switch_statement] = STATE(405), + [sym_while_statement] = STATE(405), + [sym_do_statement] = STATE(405), + [sym_for_statement] = STATE(405), + [sym_return_statement] = STATE(405), + [sym_break_statement] = STATE(405), + [sym_continue_statement] = STATE(405), + [sym_goto_statement] = STATE(405), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(405), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(405), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(348), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(350), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -30335,168 +27796,163 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [678] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1115), - [sym_preproc_directive] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_typedef] = ACTIONS(1115), - [anon_sym_extern] = ACTIONS(1115), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_LPAREN2] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_static] = ACTIONS(1115), - [anon_sym_auto] = ACTIONS(1115), - [anon_sym_register] = ACTIONS(1115), - [anon_sym_inline] = ACTIONS(1115), - [anon_sym_const] = ACTIONS(1115), - [anon_sym_restrict] = ACTIONS(1115), - [anon_sym_volatile] = ACTIONS(1115), - [anon_sym__Atomic] = ACTIONS(1115), - [anon_sym_unsigned] = ACTIONS(1115), - [anon_sym_long] = ACTIONS(1115), - [anon_sym_short] = ACTIONS(1115), - [sym_primitive_type] = ACTIONS(1115), - [anon_sym_enum] = ACTIONS(1115), - [anon_sym_struct] = ACTIONS(1115), - [anon_sym_union] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1115), - [anon_sym_switch] = ACTIONS(1115), - [anon_sym_case] = ACTIONS(1115), - [anon_sym_default] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1115), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_for] = ACTIONS(1115), - [anon_sym_return] = ACTIONS(1115), - [anon_sym_break] = ACTIONS(1115), - [anon_sym_continue] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1115), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_sizeof] = ACTIONS(1115), - [sym_number_literal] = ACTIONS(1113), - [anon_sym_SQUOTE] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_null] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1115), - [sym_comment] = ACTIONS(85), + [630] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1021), + [sym_preproc_directive] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_typedef] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_LPAREN2] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_static] = ACTIONS(1021), + [anon_sym_auto] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_inline] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [anon_sym_restrict] = ACTIONS(1021), + [anon_sym_volatile] = ACTIONS(1021), + [anon_sym__Atomic] = ACTIONS(1021), + [anon_sym_unsigned] = ACTIONS(1021), + [anon_sym_long] = ACTIONS(1021), + [anon_sym_short] = ACTIONS(1021), + [sym_primitive_type] = ACTIONS(1021), + [anon_sym_enum] = ACTIONS(1021), + [anon_sym_struct] = ACTIONS(1021), + [anon_sym_union] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_switch] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_goto] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_TILDE] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1019), + [anon_sym_PLUS_PLUS] = ACTIONS(1019), + [anon_sym_sizeof] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1019), + [anon_sym_SQUOTE] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym_true] = ACTIONS(1021), + [sym_false] = ACTIONS(1021), + [sym_null] = ACTIONS(1021), + [sym_identifier] = ACTIONS(1021), + [sym_comment] = ACTIONS(81), }, - [679] = { - [sym_parameter_list] = STATE(456), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1125), - [sym_comment] = ACTIONS(85), + [631] = { + [sym_parameter_list] = STATE(414), + [anon_sym_SEMI] = ACTIONS(2375), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1031), + [sym_comment] = ACTIONS(81), }, - [680] = { - [sym__type_declarator] = STATE(909), - [sym_pointer_type_declarator] = STATE(909), - [sym_function_type_declarator] = STATE(909), - [sym_array_type_declarator] = STATE(909), - [anon_sym_LPAREN2] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [sym_identifier] = ACTIONS(441), - [sym_comment] = ACTIONS(85), + [632] = { + [sym__type_declarator] = STATE(860), + [sym_pointer_type_declarator] = STATE(860), + [sym_function_type_declarator] = STATE(860), + [sym_array_type_declarator] = STATE(860), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(401), + [sym_identifier] = ACTIONS(403), + [sym_comment] = ACTIONS(81), }, - [681] = { - [sym_preproc_include] = STATE(911), - [sym_preproc_def] = STATE(911), - [sym_preproc_function_def] = STATE(911), - [sym_preproc_call] = STATE(911), - [sym_preproc_if] = STATE(911), - [sym_preproc_ifdef] = STATE(911), - [sym_function_definition] = STATE(911), - [sym_declaration] = STATE(911), - [sym_type_definition] = STATE(911), - [sym__declaration_specifiers] = STATE(37), - [sym_linkage_specification] = STATE(911), - [sym_compound_statement] = STATE(911), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(911), - [sym_expression_statement] = STATE(911), - [sym_if_statement] = STATE(911), - [sym_switch_statement] = STATE(911), - [sym_case_statement] = STATE(911), - [sym_while_statement] = STATE(911), - [sym_do_statement] = STATE(911), - [sym_for_statement] = STATE(911), - [sym_return_statement] = STATE(911), - [sym_break_statement] = STATE(911), - [sym_continue_statement] = STATE(911), - [sym_goto_statement] = STATE(911), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(911), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(911), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), + [633] = { + [sym_preproc_include] = STATE(862), + [sym_preproc_def] = STATE(862), + [sym_preproc_function_def] = STATE(862), + [sym_preproc_call] = STATE(862), + [sym_preproc_if] = STATE(862), + [sym_preproc_ifdef] = STATE(862), + [sym_function_definition] = STATE(862), + [sym_declaration] = STATE(862), + [sym_type_definition] = STATE(862), + [sym__declaration_specifiers] = STATE(35), + [sym_linkage_specification] = STATE(862), + [sym_compound_statement] = STATE(862), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(862), + [sym_expression_statement] = STATE(862), + [sym_if_statement] = STATE(862), + [sym_switch_statement] = STATE(862), + [sym_while_statement] = STATE(862), + [sym_do_statement] = STATE(862), + [sym_for_statement] = STATE(862), + [sym_return_statement] = STATE(862), + [sym_break_statement] = STATE(862), + [sym_continue_statement] = STATE(862), + [sym_goto_statement] = STATE(862), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(862), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(862), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), @@ -30507,7 +27963,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_RBRACE] = ACTIONS(2377), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -30525,1574 +27981,1391 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(133), - [sym_comment] = ACTIONS(85), - }, - [682] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_SEMI] = ACTIONS(1137), - [anon_sym_typedef] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_LPAREN2] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_auto] = ACTIONS(1139), - [anon_sym_register] = ACTIONS(1139), - [anon_sym_inline] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_restrict] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1139), - [anon_sym_unsigned] = ACTIONS(1139), - [anon_sym_long] = ACTIONS(1139), - [anon_sym_short] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_sizeof] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1137), - [sym_true] = ACTIONS(1139), - [sym_false] = ACTIONS(1139), - [sym_null] = ACTIONS(1139), - [sym_identifier] = ACTIONS(1139), - [sym_comment] = ACTIONS(85), - }, - [683] = { - [sym__declarator] = STATE(443), - [sym_pointer_declarator] = STATE(443), - [sym_function_declarator] = STATE(443), - [sym_array_declarator] = STATE(443), - [sym_init_declarator] = STATE(444), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [sym_identifier] = ACTIONS(1099), - [sym_comment] = ACTIONS(85), - }, - [684] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1185), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_LPAREN2] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_auto] = ACTIONS(1185), - [anon_sym_register] = ACTIONS(1185), - [anon_sym_inline] = ACTIONS(1185), - [anon_sym_const] = ACTIONS(1185), - [anon_sym_restrict] = ACTIONS(1185), - [anon_sym_volatile] = ACTIONS(1185), - [anon_sym__Atomic] = ACTIONS(1185), - [anon_sym_unsigned] = ACTIONS(1185), - [anon_sym_long] = ACTIONS(1185), - [anon_sym_short] = ACTIONS(1185), - [sym_primitive_type] = ACTIONS(1185), - [anon_sym_enum] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_union] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_switch] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1185), - [sym_number_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [sym_null] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1185), - [sym_comment] = ACTIONS(85), - }, - [685] = { - [sym_parenthesized_expression] = STATE(912), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(123), + [sym_comment] = ACTIONS(81), }, - [686] = { - [sym_parenthesized_expression] = STATE(913), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), - }, - [687] = { - [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(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_null] = ACTIONS(2507), - [sym_identifier] = ACTIONS(2507), - [sym_comment] = ACTIONS(85), + [634] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1045), + [sym_preproc_directive] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_typedef] = ACTIONS(1045), + [anon_sym_extern] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_LPAREN2] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_auto] = ACTIONS(1045), + [anon_sym_register] = ACTIONS(1045), + [anon_sym_inline] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_restrict] = ACTIONS(1045), + [anon_sym_volatile] = ACTIONS(1045), + [anon_sym__Atomic] = ACTIONS(1045), + [anon_sym_unsigned] = ACTIONS(1045), + [anon_sym_long] = ACTIONS(1045), + [anon_sym_short] = ACTIONS(1045), + [sym_primitive_type] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_union] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_switch] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [anon_sym_do] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_goto] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_TILDE] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_DASH_DASH] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1043), + [anon_sym_sizeof] = ACTIONS(1045), + [sym_number_literal] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [sym_true] = ACTIONS(1045), + [sym_false] = ACTIONS(1045), + [sym_null] = ACTIONS(1045), + [sym_identifier] = ACTIONS(1045), + [sym_comment] = ACTIONS(81), }, - [688] = { - [anon_sym_COLON] = ACTIONS(2509), - [sym_comment] = ACTIONS(85), + [635] = { + [sym__declarator] = STATE(401), + [sym_pointer_declarator] = STATE(401), + [sym_function_declarator] = STATE(401), + [sym_array_declarator] = STATE(401), + [sym_init_declarator] = STATE(402), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(261), + [sym_identifier] = ACTIONS(1005), + [sym_comment] = ACTIONS(81), }, - [689] = { - [sym_parenthesized_expression] = STATE(916), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [636] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1081), + [sym_preproc_directive] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1079), + [anon_sym_typedef] = ACTIONS(1081), + [anon_sym_extern] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN2] = ACTIONS(1079), + [anon_sym_STAR] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1081), + [anon_sym_auto] = ACTIONS(1081), + [anon_sym_register] = ACTIONS(1081), + [anon_sym_inline] = ACTIONS(1081), + [anon_sym_const] = ACTIONS(1081), + [anon_sym_restrict] = ACTIONS(1081), + [anon_sym_volatile] = ACTIONS(1081), + [anon_sym__Atomic] = ACTIONS(1081), + [anon_sym_unsigned] = ACTIONS(1081), + [anon_sym_long] = ACTIONS(1081), + [anon_sym_short] = ACTIONS(1081), + [sym_primitive_type] = ACTIONS(1081), + [anon_sym_enum] = ACTIONS(1081), + [anon_sym_struct] = ACTIONS(1081), + [anon_sym_union] = ACTIONS(1081), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_else] = ACTIONS(1081), + [anon_sym_switch] = ACTIONS(1081), + [anon_sym_while] = ACTIONS(1081), + [anon_sym_do] = ACTIONS(1081), + [anon_sym_for] = ACTIONS(1081), + [anon_sym_return] = ACTIONS(1081), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1081), + [anon_sym_goto] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_DASH_DASH] = ACTIONS(1079), + [anon_sym_PLUS_PLUS] = ACTIONS(1079), + [anon_sym_sizeof] = ACTIONS(1081), + [sym_number_literal] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_DQUOTE] = ACTIONS(1079), + [sym_true] = ACTIONS(1081), + [sym_false] = ACTIONS(1081), + [sym_null] = ACTIONS(1081), + [sym_identifier] = ACTIONS(1081), + [sym_comment] = ACTIONS(81), }, - [690] = { - [anon_sym_LPAREN2] = ACTIONS(2511), - [sym_comment] = ACTIONS(85), + [637] = { + [sym_parenthesized_expression] = STATE(863), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [691] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(2513), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_comment] = ACTIONS(85), + [638] = { + [sym_parenthesized_expression] = STATE(864), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [692] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_else] = ACTIONS(2515), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [sym_null] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1454), - [sym_comment] = ACTIONS(85), + [639] = { + [anon_sym_LPAREN2] = ACTIONS(2379), + [sym_comment] = ACTIONS(81), }, - [693] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(1093), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_comment] = ACTIONS(85), + [640] = { + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(2381), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_comment] = ACTIONS(81), }, - [694] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_else] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_null] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1460), - [sym_comment] = ACTIONS(85), + [641] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(2383), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_null] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1338), + [sym_comment] = ACTIONS(81), }, - [695] = { - [sym_declaration] = STATE(920), - [sym_type_definition] = STATE(920), - [sym__declaration_specifiers] = STATE(698), - [sym_compound_statement] = STATE(920), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_labeled_statement] = STATE(920), - [sym_expression_statement] = STATE(920), - [sym_if_statement] = STATE(920), - [sym_switch_statement] = STATE(920), - [sym_case_statement] = STATE(920), - [sym_while_statement] = STATE(920), - [sym_do_statement] = STATE(920), - [sym_for_statement] = STATE(920), - [sym_return_statement] = STATE(920), - [sym_break_statement] = STATE(920), - [sym_continue_statement] = STATE(920), - [sym_goto_statement] = STATE(920), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), + [642] = { + [sym_compound_statement] = STATE(869), + [sym_labeled_statement] = STATE(869), + [sym_expression_statement] = STATE(869), + [sym_if_statement] = STATE(869), + [sym_switch_statement] = STATE(869), + [sym_case_statement] = STATE(869), + [sym_while_statement] = STATE(869), + [sym_do_statement] = STATE(869), + [sym_for_statement] = STATE(869), + [sym_return_statement] = STATE(869), + [sym_break_statement] = STATE(869), + [sym_continue_statement] = STATE(869), + [sym_goto_statement] = STATE(869), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(869), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2385), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1852), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(81), }, - [696] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(1093), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), + [643] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [sym_null] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1358), + [sym_comment] = ACTIONS(81), }, - [697] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1510), - [sym_preproc_directive] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_LPAREN2] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_auto] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_restrict] = ACTIONS(1510), - [anon_sym_volatile] = ACTIONS(1510), - [anon_sym__Atomic] = ACTIONS(1510), - [anon_sym_unsigned] = ACTIONS(1510), - [anon_sym_long] = ACTIONS(1510), - [anon_sym_short] = ACTIONS(1510), - [sym_primitive_type] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1510), - [anon_sym_case] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_goto] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1508), - [anon_sym_sizeof] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1508), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [sym_null] = ACTIONS(1510), - [sym_identifier] = ACTIONS(1510), - [sym_comment] = ACTIONS(85), + [644] = { + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_comment] = ACTIONS(81), }, - [698] = { - [sym__declarator] = STATE(731), - [sym_pointer_declarator] = STATE(731), - [sym_function_declarator] = STATE(731), - [sym_array_declarator] = STATE(731), - [sym_init_declarator] = STATE(444), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(471), - [sym_identifier] = ACTIONS(1998), - [sym_comment] = ACTIONS(85), + [645] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [sym_null] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1362), + [sym_comment] = ACTIONS(81), }, - [699] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_auto] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_else] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_goto] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(1514), - [sym_number_literal] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_DQUOTE] = ACTIONS(1512), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_null] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1514), - [sym_comment] = ACTIONS(85), + [646] = { + [sym_parenthesized_expression] = STATE(871), + [anon_sym_LPAREN2] = ACTIONS(2387), + [sym_comment] = ACTIONS(81), }, - [700] = { - [sym_parenthesized_expression] = STATE(922), - [anon_sym_LPAREN2] = ACTIONS(2517), - [sym_comment] = ACTIONS(85), + [647] = { + [sym__expression] = STATE(873), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_char_literal] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(2389), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2391), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2393), + [sym_false] = ACTIONS(2393), + [sym_null] = ACTIONS(2393), + [sym_identifier] = ACTIONS(2393), + [sym_comment] = ACTIONS(81), }, - [701] = { - [sym__expression] = STATE(924), - [sym_conditional_expression] = STATE(924), - [sym_assignment_expression] = STATE(924), - [sym_pointer_expression] = STATE(924), - [sym_logical_expression] = STATE(924), - [sym_bitwise_expression] = STATE(924), - [sym_equality_expression] = STATE(924), - [sym_relational_expression] = STATE(924), - [sym_shift_expression] = STATE(924), - [sym_math_expression] = STATE(924), - [sym_cast_expression] = STATE(924), - [sym_sizeof_expression] = STATE(924), - [sym_subscript_expression] = STATE(924), - [sym_call_expression] = STATE(924), - [sym_field_expression] = STATE(924), - [sym_compound_literal_expression] = STATE(924), - [sym_parenthesized_expression] = STATE(924), - [sym_char_literal] = STATE(924), - [sym_concatenated_string] = STATE(924), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(2519), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2523), - [sym_false] = ACTIONS(2523), - [sym_null] = ACTIONS(2523), - [sym_identifier] = ACTIONS(2523), - [sym_comment] = ACTIONS(85), + [648] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(2395), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [702] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(2525), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [649] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1392), + [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), + [sym_preproc_directive] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_inline] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [sym_primitive_type] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_null] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1392), + [sym_comment] = ACTIONS(81), }, - [703] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1554), - [sym_preproc_directive] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_typedef] = ACTIONS(1554), - [anon_sym_extern] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_static] = ACTIONS(1554), - [anon_sym_auto] = ACTIONS(1554), - [anon_sym_register] = ACTIONS(1554), - [anon_sym_inline] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1554), - [anon_sym_restrict] = ACTIONS(1554), - [anon_sym_volatile] = ACTIONS(1554), - [anon_sym__Atomic] = ACTIONS(1554), - [anon_sym_unsigned] = ACTIONS(1554), - [anon_sym_long] = ACTIONS(1554), - [anon_sym_short] = ACTIONS(1554), - [sym_primitive_type] = ACTIONS(1554), - [anon_sym_enum] = ACTIONS(1554), - [anon_sym_struct] = ACTIONS(1554), - [anon_sym_union] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_else] = ACTIONS(1554), - [anon_sym_switch] = ACTIONS(1554), - [anon_sym_case] = ACTIONS(1554), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_do] = ACTIONS(1554), - [anon_sym_for] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_goto] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1552), - [anon_sym_TILDE] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_sizeof] = ACTIONS(1554), - [sym_number_literal] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym_true] = ACTIONS(1554), - [sym_false] = ACTIONS(1554), - [sym_null] = ACTIONS(1554), - [sym_identifier] = ACTIONS(1554), - [sym_comment] = ACTIONS(85), + [650] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [sym_null] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1440), + [sym_comment] = ACTIONS(81), }, - [704] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1602), - [sym_preproc_directive] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_typedef] = ACTIONS(1602), - [anon_sym_extern] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_LPAREN2] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_auto] = ACTIONS(1602), - [anon_sym_register] = ACTIONS(1602), - [anon_sym_inline] = ACTIONS(1602), - [anon_sym_const] = ACTIONS(1602), - [anon_sym_restrict] = ACTIONS(1602), - [anon_sym_volatile] = ACTIONS(1602), - [anon_sym__Atomic] = ACTIONS(1602), - [anon_sym_unsigned] = ACTIONS(1602), - [anon_sym_long] = ACTIONS(1602), - [anon_sym_short] = ACTIONS(1602), - [sym_primitive_type] = ACTIONS(1602), - [anon_sym_enum] = ACTIONS(1602), - [anon_sym_struct] = ACTIONS(1602), - [anon_sym_union] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1602), - [anon_sym_else] = ACTIONS(1602), - [anon_sym_switch] = ACTIONS(1602), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1602), - [anon_sym_while] = ACTIONS(1602), - [anon_sym_do] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1602), - [anon_sym_return] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1602), - [anon_sym_continue] = ACTIONS(1602), - [anon_sym_goto] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_BANG] = ACTIONS(1600), - [anon_sym_TILDE] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1602), - [anon_sym_DASH] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1600), - [anon_sym_sizeof] = ACTIONS(1602), - [sym_number_literal] = ACTIONS(1600), - [anon_sym_SQUOTE] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_identifier] = ACTIONS(1602), - [sym_comment] = ACTIONS(85), + [651] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1461), + [sym_preproc_directive] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_typedef] = ACTIONS(1461), + [anon_sym_extern] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_LPAREN2] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_auto] = ACTIONS(1461), + [anon_sym_register] = ACTIONS(1461), + [anon_sym_inline] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_restrict] = ACTIONS(1461), + [anon_sym_volatile] = ACTIONS(1461), + [anon_sym__Atomic] = ACTIONS(1461), + [anon_sym_unsigned] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [sym_primitive_type] = ACTIONS(1461), + [anon_sym_enum] = ACTIONS(1461), + [anon_sym_struct] = ACTIONS(1461), + [anon_sym_union] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_goto] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_sizeof] = ACTIONS(1461), + [sym_number_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [sym_true] = ACTIONS(1461), + [sym_false] = ACTIONS(1461), + [sym_null] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1461), + [sym_comment] = ACTIONS(81), }, - [705] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1623), - [sym_preproc_directive] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_typedef] = ACTIONS(1623), - [anon_sym_extern] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1623), - [anon_sym_auto] = ACTIONS(1623), - [anon_sym_register] = ACTIONS(1623), - [anon_sym_inline] = ACTIONS(1623), - [anon_sym_const] = ACTIONS(1623), - [anon_sym_restrict] = ACTIONS(1623), - [anon_sym_volatile] = ACTIONS(1623), - [anon_sym__Atomic] = ACTIONS(1623), - [anon_sym_unsigned] = ACTIONS(1623), - [anon_sym_long] = ACTIONS(1623), - [anon_sym_short] = ACTIONS(1623), - [sym_primitive_type] = ACTIONS(1623), - [anon_sym_enum] = ACTIONS(1623), - [anon_sym_struct] = ACTIONS(1623), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(1623), - [anon_sym_else] = ACTIONS(1623), - [anon_sym_switch] = ACTIONS(1623), - [anon_sym_case] = ACTIONS(1623), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_while] = ACTIONS(1623), - [anon_sym_do] = ACTIONS(1623), - [anon_sym_for] = ACTIONS(1623), - [anon_sym_return] = ACTIONS(1623), - [anon_sym_break] = ACTIONS(1623), - [anon_sym_continue] = ACTIONS(1623), - [anon_sym_goto] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym_true] = ACTIONS(1623), - [sym_false] = ACTIONS(1623), - [sym_null] = ACTIONS(1623), - [sym_identifier] = ACTIONS(1623), - [sym_comment] = ACTIONS(85), + [652] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1473), + [sym_preproc_directive] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_typedef] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_LPAREN2] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_auto] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_inline] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_restrict] = ACTIONS(1473), + [anon_sym_volatile] = ACTIONS(1473), + [anon_sym__Atomic] = ACTIONS(1473), + [anon_sym_unsigned] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [sym_primitive_type] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_goto] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_sizeof] = ACTIONS(1473), + [sym_number_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [sym_true] = ACTIONS(1473), + [sym_false] = ACTIONS(1473), + [sym_null] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1473), + [sym_comment] = ACTIONS(81), }, - [706] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1635), - [sym_preproc_directive] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_typedef] = ACTIONS(1635), - [anon_sym_extern] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1635), - [anon_sym_auto] = ACTIONS(1635), - [anon_sym_register] = ACTIONS(1635), - [anon_sym_inline] = ACTIONS(1635), - [anon_sym_const] = ACTIONS(1635), - [anon_sym_restrict] = ACTIONS(1635), - [anon_sym_volatile] = ACTIONS(1635), - [anon_sym__Atomic] = ACTIONS(1635), - [anon_sym_unsigned] = ACTIONS(1635), - [anon_sym_long] = ACTIONS(1635), - [anon_sym_short] = ACTIONS(1635), - [sym_primitive_type] = ACTIONS(1635), - [anon_sym_enum] = ACTIONS(1635), - [anon_sym_struct] = ACTIONS(1635), - [anon_sym_union] = ACTIONS(1635), - [anon_sym_if] = ACTIONS(1635), - [anon_sym_else] = ACTIONS(1635), - [anon_sym_switch] = ACTIONS(1635), - [anon_sym_case] = ACTIONS(1635), - [anon_sym_default] = ACTIONS(1635), - [anon_sym_while] = ACTIONS(1635), - [anon_sym_do] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1635), - [anon_sym_return] = ACTIONS(1635), - [anon_sym_break] = ACTIONS(1635), - [anon_sym_continue] = ACTIONS(1635), - [anon_sym_goto] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(1633), - [anon_sym_TILDE] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_PLUS_PLUS] = ACTIONS(1633), - [anon_sym_sizeof] = ACTIONS(1635), - [sym_number_literal] = ACTIONS(1633), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym_true] = ACTIONS(1635), - [sym_false] = ACTIONS(1635), - [sym_null] = ACTIONS(1635), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(85), + [653] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1489), + [sym_preproc_directive] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_typedef] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_auto] = ACTIONS(1489), + [anon_sym_register] = ACTIONS(1489), + [anon_sym_inline] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_restrict] = ACTIONS(1489), + [anon_sym_volatile] = ACTIONS(1489), + [anon_sym__Atomic] = ACTIONS(1489), + [anon_sym_unsigned] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [sym_primitive_type] = ACTIONS(1489), + [anon_sym_enum] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1489), + [anon_sym_union] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_goto] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_sizeof] = ACTIONS(1489), + [sym_number_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [sym_true] = ACTIONS(1489), + [sym_false] = ACTIONS(1489), + [sym_null] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1489), + [sym_comment] = ACTIONS(81), }, - [707] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1651), - [sym_preproc_directive] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_typedef] = ACTIONS(1651), - [anon_sym_extern] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_LPAREN2] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1651), - [anon_sym_auto] = ACTIONS(1651), - [anon_sym_register] = ACTIONS(1651), - [anon_sym_inline] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [anon_sym_restrict] = ACTIONS(1651), - [anon_sym_volatile] = ACTIONS(1651), - [anon_sym__Atomic] = ACTIONS(1651), - [anon_sym_unsigned] = ACTIONS(1651), - [anon_sym_long] = ACTIONS(1651), - [anon_sym_short] = ACTIONS(1651), - [sym_primitive_type] = ACTIONS(1651), - [anon_sym_enum] = ACTIONS(1651), - [anon_sym_struct] = ACTIONS(1651), - [anon_sym_union] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_switch] = ACTIONS(1651), - [anon_sym_case] = ACTIONS(1651), - [anon_sym_default] = ACTIONS(1651), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_do] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_goto] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1649), - [anon_sym_TILDE] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_DASH_DASH] = ACTIONS(1649), - [anon_sym_PLUS_PLUS] = ACTIONS(1649), - [anon_sym_sizeof] = ACTIONS(1651), - [sym_number_literal] = ACTIONS(1649), - [anon_sym_SQUOTE] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_true] = ACTIONS(1651), - [sym_false] = ACTIONS(1651), - [sym_null] = ACTIONS(1651), - [sym_identifier] = ACTIONS(1651), - [sym_comment] = ACTIONS(85), - }, - [708] = { - [aux_sym_declaration_repeat1] = STATE(609), - [anon_sym_COMMA] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(2527), - [sym_comment] = ACTIONS(85), + [654] = { + [aux_sym_declaration_repeat1] = STATE(547), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(2397), + [sym_comment] = ACTIONS(81), }, - [709] = { - [ts_builtin_sym_end] = ACTIONS(2529), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2531), - [sym_preproc_directive] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2529), - [anon_sym_typedef] = ACTIONS(2531), - [anon_sym_extern] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_RBRACE] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2531), - [anon_sym_auto] = ACTIONS(2531), - [anon_sym_register] = ACTIONS(2531), - [anon_sym_inline] = ACTIONS(2531), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_restrict] = ACTIONS(2531), - [anon_sym_volatile] = ACTIONS(2531), - [anon_sym__Atomic] = ACTIONS(2531), - [anon_sym_unsigned] = ACTIONS(2531), - [anon_sym_long] = ACTIONS(2531), - [anon_sym_short] = ACTIONS(2531), - [sym_primitive_type] = ACTIONS(2531), - [anon_sym_enum] = ACTIONS(2531), - [anon_sym_struct] = ACTIONS(2531), - [anon_sym_union] = ACTIONS(2531), - [anon_sym_if] = ACTIONS(2531), - [anon_sym_switch] = ACTIONS(2531), - [anon_sym_case] = ACTIONS(2531), - [anon_sym_default] = ACTIONS(2531), - [anon_sym_while] = ACTIONS(2531), - [anon_sym_do] = ACTIONS(2531), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2531), - [anon_sym_break] = ACTIONS(2531), - [anon_sym_continue] = ACTIONS(2531), - [anon_sym_goto] = ACTIONS(2531), - [anon_sym_AMP] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2529), - [anon_sym_TILDE] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2529), - [anon_sym_PLUS_PLUS] = ACTIONS(2529), - [anon_sym_sizeof] = ACTIONS(2531), - [sym_number_literal] = ACTIONS(2529), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2529), - [sym_true] = ACTIONS(2531), - [sym_false] = ACTIONS(2531), - [sym_null] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(85), + [655] = { + [ts_builtin_sym_end] = ACTIONS(2399), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2401), + [sym_preproc_directive] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_typedef] = ACTIONS(2401), + [anon_sym_extern] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_RBRACE] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_auto] = ACTIONS(2401), + [anon_sym_register] = ACTIONS(2401), + [anon_sym_inline] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_restrict] = ACTIONS(2401), + [anon_sym_volatile] = ACTIONS(2401), + [anon_sym__Atomic] = ACTIONS(2401), + [anon_sym_unsigned] = ACTIONS(2401), + [anon_sym_long] = ACTIONS(2401), + [anon_sym_short] = ACTIONS(2401), + [sym_primitive_type] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_switch] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_goto] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_sizeof] = ACTIONS(2401), + [sym_number_literal] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2399), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_null] = ACTIONS(2401), + [sym_identifier] = ACTIONS(2401), + [sym_comment] = ACTIONS(81), }, - [710] = { - [ts_builtin_sym_end] = ACTIONS(2533), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2535), - [sym_preproc_directive] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_typedef] = ACTIONS(2535), - [anon_sym_extern] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_LPAREN2] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(2533), - [anon_sym_static] = ACTIONS(2535), - [anon_sym_auto] = ACTIONS(2535), - [anon_sym_register] = ACTIONS(2535), - [anon_sym_inline] = ACTIONS(2535), - [anon_sym_const] = ACTIONS(2535), - [anon_sym_restrict] = ACTIONS(2535), - [anon_sym_volatile] = ACTIONS(2535), - [anon_sym__Atomic] = ACTIONS(2535), - [anon_sym_unsigned] = ACTIONS(2535), - [anon_sym_long] = ACTIONS(2535), - [anon_sym_short] = ACTIONS(2535), - [sym_primitive_type] = ACTIONS(2535), - [anon_sym_enum] = ACTIONS(2535), - [anon_sym_struct] = ACTIONS(2535), - [anon_sym_union] = ACTIONS(2535), - [anon_sym_if] = ACTIONS(2535), - [anon_sym_switch] = ACTIONS(2535), - [anon_sym_case] = ACTIONS(2535), - [anon_sym_default] = ACTIONS(2535), - [anon_sym_while] = ACTIONS(2535), - [anon_sym_do] = ACTIONS(2535), - [anon_sym_for] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2535), - [anon_sym_continue] = ACTIONS(2535), - [anon_sym_goto] = ACTIONS(2535), - [anon_sym_AMP] = ACTIONS(2533), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_DASH_DASH] = ACTIONS(2533), - [anon_sym_PLUS_PLUS] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2535), - [sym_number_literal] = ACTIONS(2533), - [anon_sym_SQUOTE] = ACTIONS(2533), - [anon_sym_DQUOTE] = ACTIONS(2533), - [sym_true] = ACTIONS(2535), - [sym_false] = ACTIONS(2535), - [sym_null] = ACTIONS(2535), - [sym_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(85), + [656] = { + [ts_builtin_sym_end] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_LPAREN2] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_auto] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_AMP] = ACTIONS(2403), + [anon_sym_BANG] = ACTIONS(2403), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2403), + [anon_sym_PLUS_PLUS] = ACTIONS(2403), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(2403), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2405), + [sym_comment] = ACTIONS(81), }, - [711] = { - [sym__type_declarator] = STATE(713), - [sym_pointer_type_declarator] = STATE(713), - [sym_function_type_declarator] = STATE(713), - [sym_array_type_declarator] = STATE(713), - [sym_type_qualifier] = STATE(599), - [aux_sym_type_definition_repeat1] = STATE(599), - [anon_sym_LPAREN2] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(1117), + [657] = { + [sym__type_declarator] = STATE(659), + [sym_pointer_type_declarator] = STATE(659), + [sym_function_type_declarator] = STATE(659), + [sym_array_type_declarator] = STATE(659), + [sym_type_qualifier] = STATE(537), + [aux_sym_type_definition_repeat1] = STATE(537), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(1023), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1119), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(1025), + [sym_comment] = ACTIONS(81), }, - [712] = { - [anon_sym_RPAREN] = ACTIONS(2537), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_LPAREN2] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2537), - [sym_comment] = ACTIONS(85), + [658] = { + [anon_sym_RPAREN] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [sym_comment] = ACTIONS(81), }, - [713] = { - [sym_parameter_list] = STATE(456), - [anon_sym_RPAREN] = ACTIONS(2539), - [anon_sym_SEMI] = ACTIONS(2539), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1125), - [sym_comment] = ACTIONS(85), + [659] = { + [sym_parameter_list] = STATE(414), + [anon_sym_RPAREN] = ACTIONS(2409), + [anon_sym_SEMI] = ACTIONS(2409), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1031), + [sym_comment] = ACTIONS(81), }, - [714] = { - [sym__expression] = STATE(83), - [sym_conditional_expression] = STATE(83), - [sym_assignment_expression] = STATE(83), - [sym_pointer_expression] = STATE(83), - [sym_logical_expression] = STATE(83), - [sym_bitwise_expression] = STATE(83), - [sym_equality_expression] = STATE(83), - [sym_relational_expression] = STATE(83), - [sym_shift_expression] = STATE(83), - [sym_math_expression] = STATE(83), - [sym_cast_expression] = STATE(83), - [sym_sizeof_expression] = STATE(83), - [sym_subscript_expression] = STATE(83), - [sym_call_expression] = STATE(83), - [sym_field_expression] = STATE(83), - [sym_compound_literal_expression] = STATE(83), - [sym_parenthesized_expression] = STATE(83), - [sym_char_literal] = STATE(83), - [sym_concatenated_string] = STATE(83), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(2541), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(85), + [660] = { + [sym__expression] = STATE(78), + [sym_conditional_expression] = STATE(78), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(78), + [sym_call_expression] = STATE(78), + [sym_field_expression] = STATE(78), + [sym_compound_literal_expression] = STATE(78), + [sym_parenthesized_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_concatenated_string] = STATE(78), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(2411), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(151), + [sym_false] = ACTIONS(151), + [sym_null] = ACTIONS(151), + [sym_identifier] = ACTIONS(151), + [sym_comment] = ACTIONS(81), }, - [715] = { - [anon_sym_RPAREN] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2543), - [anon_sym_LPAREN2] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2543), - [sym_comment] = ACTIONS(85), + [661] = { + [anon_sym_RPAREN] = ACTIONS(2413), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2413), + [sym_comment] = ACTIONS(81), }, - [716] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(2541), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1685), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PERCENT_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_CARET_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [662] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(2411), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [717] = { - [sym_type_qualifier] = STATE(764), - [sym__expression] = STATE(929), - [sym_conditional_expression] = STATE(929), - [sym_assignment_expression] = STATE(929), - [sym_pointer_expression] = STATE(929), - [sym_logical_expression] = STATE(929), - [sym_bitwise_expression] = STATE(929), - [sym_equality_expression] = STATE(929), - [sym_relational_expression] = STATE(929), - [sym_shift_expression] = STATE(929), - [sym_math_expression] = STATE(929), - [sym_cast_expression] = STATE(929), - [sym_sizeof_expression] = STATE(929), - [sym_subscript_expression] = STATE(929), - [sym_call_expression] = STATE(929), - [sym_field_expression] = STATE(929), - [sym_compound_literal_expression] = STATE(929), - [sym_parenthesized_expression] = STATE(929), - [sym_char_literal] = STATE(929), - [sym_concatenated_string] = STATE(929), - [sym_string_literal] = STATE(369), - [aux_sym_type_definition_repeat1] = STATE(764), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(2545), - [anon_sym_RBRACK] = ACTIONS(2541), + [663] = { + [sym_type_qualifier] = STATE(707), + [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(324), + [aux_sym_type_definition_repeat1] = STATE(707), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_RBRACK] = ACTIONS(2411), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2547), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2549), - [sym_false] = ACTIONS(2549), - [sym_null] = ACTIONS(2549), - [sym_identifier] = ACTIONS(2549), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(2417), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2419), + [sym_false] = ACTIONS(2419), + [sym_null] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2419), + [sym_comment] = ACTIONS(81), }, - [718] = { - [ts_builtin_sym_end] = ACTIONS(2551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2553), - [sym_preproc_directive] = ACTIONS(2553), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_typedef] = ACTIONS(2553), - [anon_sym_extern] = ACTIONS(2553), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_RBRACE] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(2551), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_static] = ACTIONS(2553), - [anon_sym_auto] = ACTIONS(2553), - [anon_sym_register] = ACTIONS(2553), - [anon_sym_inline] = ACTIONS(2553), - [anon_sym_const] = ACTIONS(2553), - [anon_sym_restrict] = ACTIONS(2553), - [anon_sym_volatile] = ACTIONS(2553), - [anon_sym__Atomic] = ACTIONS(2553), - [anon_sym_unsigned] = ACTIONS(2553), - [anon_sym_long] = ACTIONS(2553), - [anon_sym_short] = ACTIONS(2553), - [sym_primitive_type] = ACTIONS(2553), - [anon_sym_enum] = ACTIONS(2553), - [anon_sym_struct] = ACTIONS(2553), - [anon_sym_union] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2553), - [anon_sym_else] = ACTIONS(2553), - [anon_sym_switch] = ACTIONS(2553), - [anon_sym_case] = ACTIONS(2553), - [anon_sym_default] = ACTIONS(2553), - [anon_sym_while] = ACTIONS(2553), - [anon_sym_do] = ACTIONS(2553), - [anon_sym_for] = ACTIONS(2553), - [anon_sym_return] = ACTIONS(2553), - [anon_sym_break] = ACTIONS(2553), - [anon_sym_continue] = ACTIONS(2553), - [anon_sym_goto] = ACTIONS(2553), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_BANG] = ACTIONS(2551), - [anon_sym_TILDE] = ACTIONS(2551), - [anon_sym_PLUS] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_DASH_DASH] = ACTIONS(2551), - [anon_sym_PLUS_PLUS] = ACTIONS(2551), - [anon_sym_sizeof] = ACTIONS(2553), - [sym_number_literal] = ACTIONS(2551), - [anon_sym_SQUOTE] = ACTIONS(2551), - [anon_sym_DQUOTE] = ACTIONS(2551), - [sym_true] = ACTIONS(2553), - [sym_false] = ACTIONS(2553), - [sym_null] = ACTIONS(2553), - [sym_identifier] = ACTIONS(2553), - [sym_comment] = ACTIONS(85), + [664] = { + [ts_builtin_sym_end] = ACTIONS(2421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2423), + [sym_preproc_directive] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2421), + [anon_sym_typedef] = ACTIONS(2423), + [anon_sym_extern] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_LPAREN2] = ACTIONS(2421), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2423), + [anon_sym_auto] = ACTIONS(2423), + [anon_sym_register] = ACTIONS(2423), + [anon_sym_inline] = ACTIONS(2423), + [anon_sym_const] = ACTIONS(2423), + [anon_sym_restrict] = ACTIONS(2423), + [anon_sym_volatile] = ACTIONS(2423), + [anon_sym__Atomic] = ACTIONS(2423), + [anon_sym_unsigned] = ACTIONS(2423), + [anon_sym_long] = ACTIONS(2423), + [anon_sym_short] = ACTIONS(2423), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2423), + [anon_sym_struct] = ACTIONS(2423), + [anon_sym_union] = ACTIONS(2423), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_switch] = ACTIONS(2423), + [anon_sym_case] = ACTIONS(2423), + [anon_sym_default] = ACTIONS(2423), + [anon_sym_while] = ACTIONS(2423), + [anon_sym_do] = ACTIONS(2423), + [anon_sym_for] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2423), + [anon_sym_break] = ACTIONS(2423), + [anon_sym_continue] = ACTIONS(2423), + [anon_sym_goto] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(2421), + [anon_sym_PLUS_PLUS] = ACTIONS(2421), + [anon_sym_sizeof] = ACTIONS(2423), + [sym_number_literal] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [sym_true] = ACTIONS(2423), + [sym_false] = ACTIONS(2423), + [sym_null] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2423), + [sym_comment] = ACTIONS(81), }, - [719] = { - [ts_builtin_sym_end] = ACTIONS(2555), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2557), - [sym_preproc_directive] = ACTIONS(2557), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_typedef] = ACTIONS(2557), - [anon_sym_extern] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2557), - [anon_sym_auto] = ACTIONS(2557), - [anon_sym_register] = ACTIONS(2557), - [anon_sym_inline] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [anon_sym_restrict] = ACTIONS(2557), - [anon_sym_volatile] = ACTIONS(2557), - [anon_sym__Atomic] = ACTIONS(2557), - [anon_sym_unsigned] = ACTIONS(2557), - [anon_sym_long] = ACTIONS(2557), - [anon_sym_short] = ACTIONS(2557), - [sym_primitive_type] = ACTIONS(2557), - [anon_sym_enum] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(2557), - [anon_sym_union] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_switch] = ACTIONS(2557), - [anon_sym_case] = ACTIONS(2557), - [anon_sym_default] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_goto] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2555), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_DASH_DASH] = ACTIONS(2555), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_sizeof] = ACTIONS(2557), - [sym_number_literal] = ACTIONS(2555), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_DQUOTE] = ACTIONS(2555), - [sym_true] = ACTIONS(2557), - [sym_false] = ACTIONS(2557), - [sym_null] = ACTIONS(2557), - [sym_identifier] = ACTIONS(2557), - [sym_comment] = ACTIONS(85), + [665] = { + [ts_builtin_sym_end] = ACTIONS(2425), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2427), + [sym_preproc_directive] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2425), + [anon_sym_typedef] = ACTIONS(2427), + [anon_sym_extern] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2425), + [anon_sym_LPAREN2] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2427), + [anon_sym_auto] = ACTIONS(2427), + [anon_sym_register] = ACTIONS(2427), + [anon_sym_inline] = ACTIONS(2427), + [anon_sym_const] = ACTIONS(2427), + [anon_sym_restrict] = ACTIONS(2427), + [anon_sym_volatile] = ACTIONS(2427), + [anon_sym__Atomic] = ACTIONS(2427), + [anon_sym_unsigned] = ACTIONS(2427), + [anon_sym_long] = ACTIONS(2427), + [anon_sym_short] = ACTIONS(2427), + [sym_primitive_type] = ACTIONS(2427), + [anon_sym_enum] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2427), + [anon_sym_union] = ACTIONS(2427), + [anon_sym_if] = ACTIONS(2427), + [anon_sym_switch] = ACTIONS(2427), + [anon_sym_while] = ACTIONS(2427), + [anon_sym_do] = ACTIONS(2427), + [anon_sym_for] = ACTIONS(2427), + [anon_sym_return] = ACTIONS(2427), + [anon_sym_break] = ACTIONS(2427), + [anon_sym_continue] = ACTIONS(2427), + [anon_sym_goto] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(2425), + [anon_sym_TILDE] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_DASH_DASH] = ACTIONS(2425), + [anon_sym_PLUS_PLUS] = ACTIONS(2425), + [anon_sym_sizeof] = ACTIONS(2427), + [sym_number_literal] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2425), + [sym_true] = ACTIONS(2427), + [sym_false] = ACTIONS(2427), + [sym_null] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2427), + [sym_comment] = ACTIONS(81), }, - [720] = { - [sym_preproc_include] = STATE(720), - [sym_preproc_def] = STATE(720), - [sym_preproc_function_def] = STATE(720), - [sym_preproc_call] = STATE(720), - [sym_preproc_if] = STATE(720), - [sym_preproc_ifdef] = STATE(720), - [sym_function_definition] = STATE(720), - [sym_declaration] = STATE(720), - [sym_type_definition] = STATE(720), - [sym__declaration_specifiers] = STATE(37), - [sym_linkage_specification] = STATE(720), - [sym_compound_statement] = STATE(720), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(720), - [sym_expression_statement] = STATE(720), - [sym_if_statement] = STATE(720), - [sym_switch_statement] = STATE(720), - [sym_case_statement] = STATE(720), - [sym_while_statement] = STATE(720), - [sym_do_statement] = STATE(720), - [sym_for_statement] = STATE(720), - [sym_return_statement] = STATE(720), - [sym_break_statement] = STATE(720), - [sym_continue_statement] = STATE(720), - [sym_goto_statement] = STATE(720), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(720), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(720), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(845), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(848), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(851), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(854), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(854), - [sym_preproc_directive] = ACTIONS(857), - [anon_sym_SEMI] = ACTIONS(860), - [anon_sym_typedef] = ACTIONS(863), - [anon_sym_extern] = ACTIONS(866), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(843), - [anon_sym_LPAREN2] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(875), + [666] = { + [sym_preproc_include] = STATE(666), + [sym_preproc_def] = STATE(666), + [sym_preproc_function_def] = STATE(666), + [sym_preproc_call] = STATE(666), + [sym_preproc_if] = STATE(666), + [sym_preproc_ifdef] = STATE(666), + [sym_function_definition] = STATE(666), + [sym_declaration] = STATE(666), + [sym_type_definition] = STATE(666), + [sym__declaration_specifiers] = STATE(35), + [sym_linkage_specification] = STATE(666), + [sym_compound_statement] = STATE(666), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(666), + [sym_expression_statement] = STATE(666), + [sym_if_statement] = STATE(666), + [sym_switch_statement] = STATE(666), + [sym_while_statement] = STATE(666), + [sym_do_statement] = STATE(666), + [sym_for_statement] = STATE(666), + [sym_return_statement] = STATE(666), + [sym_break_statement] = STATE(666), + [sym_continue_statement] = STATE(666), + [sym_goto_statement] = STATE(666), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(666), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(666), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(767), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(770), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(776), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(776), + [sym_preproc_directive] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_typedef] = ACTIONS(785), + [anon_sym_extern] = ACTIONS(788), + [anon_sym_LBRACE] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(765), + [anon_sym_LPAREN2] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_static] = ACTIONS(800), + [anon_sym_auto] = ACTIONS(800), + [anon_sym_register] = ACTIONS(800), + [anon_sym_inline] = ACTIONS(800), + [anon_sym_const] = ACTIONS(803), + [anon_sym_restrict] = ACTIONS(803), + [anon_sym_volatile] = ACTIONS(803), + [anon_sym__Atomic] = ACTIONS(803), + [anon_sym_unsigned] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [sym_primitive_type] = ACTIONS(809), + [anon_sym_enum] = ACTIONS(812), + [anon_sym_struct] = ACTIONS(815), + [anon_sym_union] = ACTIONS(818), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_do] = ACTIONS(830), + [anon_sym_for] = ACTIONS(2435), + [anon_sym_return] = ACTIONS(836), + [anon_sym_break] = ACTIONS(839), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_goto] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(797), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_sizeof] = ACTIONS(860), + [sym_number_literal] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(869), + [sym_true] = ACTIONS(872), + [sym_false] = ACTIONS(872), + [sym_null] = ACTIONS(872), + [sym_identifier] = ACTIONS(2438), + [sym_comment] = ACTIONS(81), + }, + [667] = { + [sym_storage_class_specifier] = STATE(667), + [sym_type_qualifier] = STATE(667), + [aux_sym__declaration_specifiers_repeat1] = STATE(667), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LPAREN2] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1495), [anon_sym_static] = ACTIONS(878), [anon_sym_auto] = ACTIONS(878), [anon_sym_register] = ACTIONS(878), @@ -32101,66 +29374,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(881), [anon_sym_volatile] = ACTIONS(881), [anon_sym__Atomic] = ACTIONS(881), - [anon_sym_unsigned] = ACTIONS(884), - [anon_sym_long] = ACTIONS(884), - [anon_sym_short] = ACTIONS(884), - [sym_primitive_type] = ACTIONS(887), - [anon_sym_enum] = ACTIONS(890), - [anon_sym_struct] = ACTIONS(893), - [anon_sym_union] = ACTIONS(896), - [anon_sym_if] = ACTIONS(2559), - [anon_sym_switch] = ACTIONS(2562), - [anon_sym_case] = ACTIONS(2565), - [anon_sym_default] = ACTIONS(2568), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_do] = ACTIONS(914), - [anon_sym_for] = ACTIONS(2574), - [anon_sym_return] = ACTIONS(920), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_goto] = ACTIONS(929), - [anon_sym_AMP] = ACTIONS(875), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_sizeof] = ACTIONS(944), - [sym_number_literal] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(953), - [sym_true] = ACTIONS(956), - [sym_false] = ACTIONS(956), - [sym_null] = ACTIONS(956), - [sym_identifier] = ACTIONS(2577), - [sym_comment] = ACTIONS(85), - }, - [721] = { - [sym_storage_class_specifier] = STATE(721), - [sym_type_qualifier] = STATE(721), - [aux_sym__declaration_specifiers_repeat1] = STATE(721), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_LPAREN2] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(965), - [anon_sym_restrict] = ACTIONS(965), - [anon_sym_volatile] = ACTIONS(965), - [anon_sym__Atomic] = ACTIONS(965), - [sym_identifier] = ACTIONS(968), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(884), + [sym_comment] = ACTIONS(81), }, - [722] = { - [sym_storage_class_specifier] = STATE(721), - [sym_type_qualifier] = STATE(721), - [aux_sym__declaration_specifiers_repeat1] = STATE(721), + [668] = { + [sym_storage_class_specifier] = STATE(667), + [sym_type_qualifier] = STATE(667), + [aux_sym__declaration_specifiers_repeat1] = STATE(667), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -32169,80 +29392,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1746), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(1618), + [sym_comment] = ACTIONS(81), }, - [723] = { - [sym_preproc_include] = STATE(932), - [sym_preproc_def] = STATE(932), - [sym_preproc_function_def] = STATE(932), - [sym_preproc_call] = STATE(932), - [sym_preproc_if_in_compound_statement] = STATE(932), - [sym_preproc_ifdef_in_compound_statement] = STATE(932), - [sym_preproc_else_in_compound_statement] = STATE(931), - [sym_preproc_elif_in_compound_statement] = STATE(931), - [sym_declaration] = STATE(932), - [sym_type_definition] = STATE(932), - [sym__declaration_specifiers] = STATE(469), - [sym_compound_statement] = STATE(932), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(932), - [sym_expression_statement] = STATE(932), - [sym_if_statement] = STATE(932), - [sym_switch_statement] = STATE(932), - [sym_case_statement] = STATE(932), - [sym_while_statement] = STATE(932), - [sym_do_statement] = STATE(932), - [sym_for_statement] = STATE(932), - [sym_return_statement] = STATE(932), - [sym_break_statement] = STATE(932), - [sym_continue_statement] = STATE(932), - [sym_goto_statement] = STATE(932), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(932), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(932), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2580), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), + [669] = { + [sym_preproc_include] = STATE(881), + [sym_preproc_def] = STATE(881), + [sym_preproc_function_def] = STATE(881), + [sym_preproc_call] = STATE(881), + [sym_preproc_if_in_compound_statement] = STATE(881), + [sym_preproc_ifdef_in_compound_statement] = STATE(881), + [sym_preproc_else_in_compound_statement] = STATE(880), + [sym_preproc_elif_in_compound_statement] = STATE(880), + [sym_declaration] = STATE(881), + [sym_type_definition] = STATE(881), + [sym__declaration_specifiers] = STATE(427), + [sym_compound_statement] = STATE(881), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(881), + [sym_expression_statement] = STATE(881), + [sym_if_statement] = STATE(881), + [sym_switch_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(881), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(881), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1051), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2441), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1059), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -32260,105 +29482,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [724] = { - [sym_preproc_include] = STATE(935), - [sym_preproc_def] = STATE(935), - [sym_preproc_function_def] = STATE(935), - [sym_preproc_call] = STATE(935), - [sym_preproc_if_in_compound_statement] = STATE(935), - [sym_preproc_ifdef_in_compound_statement] = STATE(935), - [sym_preproc_else_in_compound_statement] = STATE(934), - [sym_preproc_elif_in_compound_statement] = STATE(934), - [sym_declaration] = STATE(935), - [sym_type_definition] = STATE(935), - [sym__declaration_specifiers] = STATE(469), - [sym_compound_statement] = STATE(935), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(935), - [sym_expression_statement] = STATE(935), - [sym_if_statement] = STATE(935), - [sym_switch_statement] = STATE(935), - [sym_case_statement] = STATE(935), - [sym_while_statement] = STATE(935), - [sym_do_statement] = STATE(935), - [sym_for_statement] = STATE(935), - [sym_return_statement] = STATE(935), - [sym_break_statement] = STATE(935), - [sym_continue_statement] = STATE(935), - [sym_goto_statement] = STATE(935), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(935), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(935), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2582), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), + [670] = { + [sym_preproc_include] = STATE(884), + [sym_preproc_def] = STATE(884), + [sym_preproc_function_def] = STATE(884), + [sym_preproc_call] = STATE(884), + [sym_preproc_if_in_compound_statement] = STATE(884), + [sym_preproc_ifdef_in_compound_statement] = STATE(884), + [sym_preproc_else_in_compound_statement] = STATE(883), + [sym_preproc_elif_in_compound_statement] = STATE(883), + [sym_declaration] = STATE(884), + [sym_type_definition] = STATE(884), + [sym__declaration_specifiers] = STATE(427), + [sym_compound_statement] = STATE(884), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(884), + [sym_expression_statement] = STATE(884), + [sym_if_statement] = STATE(884), + [sym_switch_statement] = STATE(884), + [sym_while_statement] = STATE(884), + [sym_do_statement] = STATE(884), + [sym_for_statement] = STATE(884), + [sym_return_statement] = STATE(884), + [sym_break_statement] = STATE(884), + [sym_continue_statement] = STATE(884), + [sym_goto_statement] = STATE(884), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(884), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(884), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1051), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2443), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1059), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -32376,121 +29595,118 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [725] = { - [sym_preproc_arg] = ACTIONS(2584), - [sym_comment] = ACTIONS(95), + [671] = { + [sym_preproc_arg] = ACTIONS(2445), + [sym_comment] = ACTIONS(91), }, - [726] = { - [sym_identifier] = ACTIONS(2586), - [sym_comment] = ACTIONS(85), + [672] = { + [sym_identifier] = ACTIONS(2447), + [sym_comment] = ACTIONS(81), }, - [727] = { - [sym__declarator] = STATE(938), - [sym_pointer_declarator] = STATE(938), - [sym_function_declarator] = STATE(938), - [sym_array_declarator] = STATE(938), - [sym_init_declarator] = STATE(673), - [anon_sym_SEMI] = ACTIONS(1816), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(471), - [sym_identifier] = ACTIONS(2588), - [sym_comment] = ACTIONS(85), + [673] = { + [sym__declarator] = STATE(887), + [sym_pointer_declarator] = STATE(887), + [sym_function_declarator] = STATE(887), + [sym_array_declarator] = STATE(887), + [sym_init_declarator] = STATE(625), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(427), + [sym_identifier] = ACTIONS(2449), + [sym_comment] = ACTIONS(81), }, - [728] = { - [sym_preproc_include] = STATE(939), - [sym_preproc_def] = STATE(939), - [sym_preproc_function_def] = STATE(939), - [sym_preproc_call] = STATE(939), - [sym_preproc_if_in_compound_statement] = STATE(939), - [sym_preproc_ifdef_in_compound_statement] = STATE(939), - [sym_declaration] = STATE(939), - [sym_type_definition] = STATE(939), - [sym__declaration_specifiers] = STATE(727), - [sym_compound_statement] = STATE(939), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(939), - [sym_expression_statement] = STATE(939), - [sym_if_statement] = STATE(939), - [sym_switch_statement] = STATE(939), - [sym_case_statement] = STATE(939), - [sym_while_statement] = STATE(939), - [sym_do_statement] = STATE(939), - [sym_for_statement] = STATE(939), - [sym_return_statement] = STATE(939), - [sym_break_statement] = STATE(939), - [sym_continue_statement] = STATE(939), - [sym_goto_statement] = STATE(939), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(939), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(939), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1015), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1017), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2590), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1992), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1992), - [sym_preproc_directive] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_typedef] = ACTIONS(1029), + [674] = { + [sym_preproc_include] = STATE(888), + [sym_preproc_def] = STATE(888), + [sym_preproc_function_def] = STATE(888), + [sym_preproc_call] = STATE(888), + [sym_preproc_if_in_compound_statement] = STATE(888), + [sym_preproc_ifdef_in_compound_statement] = STATE(888), + [sym_declaration] = STATE(888), + [sym_type_definition] = STATE(888), + [sym__declaration_specifiers] = STATE(673), + [sym_compound_statement] = STATE(888), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(888), + [sym_expression_statement] = STATE(888), + [sym_if_statement] = STATE(888), + [sym_switch_statement] = STATE(888), + [sym_while_statement] = STATE(888), + [sym_do_statement] = STATE(888), + [sym_for_statement] = STATE(888), + [sym_return_statement] = STATE(888), + [sym_break_statement] = STATE(888), + [sym_continue_statement] = STATE(888), + [sym_goto_statement] = STATE(888), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [sym__empty_declaration] = STATE(888), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(888), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(931), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(933), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1840), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2451), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_typedef] = ACTIONS(945), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -32508,105 +29724,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(1061), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(973), + [sym_comment] = ACTIONS(81), }, - [729] = { - [sym_preproc_include] = STATE(941), - [sym_preproc_def] = STATE(941), - [sym_preproc_function_def] = STATE(941), - [sym_preproc_call] = STATE(941), - [sym_preproc_if_in_compound_statement] = STATE(941), - [sym_preproc_ifdef_in_compound_statement] = STATE(941), - [sym_preproc_else_in_compound_statement] = STATE(940), - [sym_preproc_elif_in_compound_statement] = STATE(940), - [sym_declaration] = STATE(941), - [sym_type_definition] = STATE(941), - [sym__declaration_specifiers] = STATE(469), - [sym_compound_statement] = STATE(941), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(941), - [sym_expression_statement] = STATE(941), - [sym_if_statement] = STATE(941), - [sym_switch_statement] = STATE(941), - [sym_case_statement] = STATE(941), - [sym_while_statement] = STATE(941), - [sym_do_statement] = STATE(941), - [sym_for_statement] = STATE(941), - [sym_return_statement] = STATE(941), - [sym_break_statement] = STATE(941), - [sym_continue_statement] = STATE(941), - [sym_goto_statement] = STATE(941), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(941), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(941), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2592), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), + [675] = { + [sym_preproc_include] = STATE(890), + [sym_preproc_def] = STATE(890), + [sym_preproc_function_def] = STATE(890), + [sym_preproc_call] = STATE(890), + [sym_preproc_if_in_compound_statement] = STATE(890), + [sym_preproc_ifdef_in_compound_statement] = STATE(890), + [sym_preproc_else_in_compound_statement] = STATE(889), + [sym_preproc_elif_in_compound_statement] = STATE(889), + [sym_declaration] = STATE(890), + [sym_type_definition] = STATE(890), + [sym__declaration_specifiers] = STATE(427), + [sym_compound_statement] = STATE(890), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(890), + [sym_expression_statement] = STATE(890), + [sym_if_statement] = STATE(890), + [sym_switch_statement] = STATE(890), + [sym_while_statement] = STATE(890), + [sym_do_statement] = STATE(890), + [sym_for_statement] = STATE(890), + [sym_return_statement] = STATE(890), + [sym_break_statement] = STATE(890), + [sym_continue_statement] = STATE(890), + [sym_goto_statement] = STATE(890), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(890), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(890), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1051), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1059), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -32624,656 +29837,436 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), - }, - [730] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2594), - [sym_preproc_directive] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_typedef] = ACTIONS(2594), - [anon_sym_extern] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_LPAREN2] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_auto] = ACTIONS(2594), - [anon_sym_register] = ACTIONS(2594), - [anon_sym_inline] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_restrict] = ACTIONS(2594), - [anon_sym_volatile] = ACTIONS(2594), - [anon_sym__Atomic] = ACTIONS(2594), - [anon_sym_unsigned] = ACTIONS(2594), - [anon_sym_long] = ACTIONS(2594), - [anon_sym_short] = ACTIONS(2594), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), - [anon_sym_struct] = ACTIONS(2594), - [anon_sym_union] = ACTIONS(2594), - [anon_sym_if] = ACTIONS(2594), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2594), - [anon_sym_default] = ACTIONS(2594), - [anon_sym_while] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2594), - [anon_sym_return] = ACTIONS(2594), - [anon_sym_break] = ACTIONS(2594), - [anon_sym_continue] = ACTIONS(2594), - [anon_sym_goto] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2596), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DASH_DASH] = ACTIONS(2596), - [anon_sym_PLUS_PLUS] = ACTIONS(2596), - [anon_sym_sizeof] = ACTIONS(2594), - [sym_number_literal] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [sym_true] = ACTIONS(2594), - [sym_false] = ACTIONS(2594), - [sym_null] = ACTIONS(2594), - [sym_identifier] = ACTIONS(2594), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [731] = { - [sym_parameter_list] = STATE(354), - [aux_sym_declaration_repeat1] = STATE(708), - [anon_sym_COMMA] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(747), - [sym_comment] = ACTIONS(85), - }, - [732] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2598), - [sym_comment] = ACTIONS(85), - }, - [733] = { - [sym_preproc_include] = STATE(733), - [sym_preproc_def] = STATE(733), - [sym_preproc_function_def] = STATE(733), - [sym_preproc_call] = STATE(733), - [sym_preproc_if_in_compound_statement] = STATE(733), - [sym_preproc_ifdef_in_compound_statement] = STATE(733), - [sym_declaration] = STATE(733), - [sym_type_definition] = STATE(733), - [sym__declaration_specifiers] = STATE(469), - [sym_compound_statement] = STATE(733), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(733), - [sym_expression_statement] = STATE(733), - [sym_if_statement] = STATE(733), - [sym_switch_statement] = STATE(733), - [sym_case_statement] = STATE(733), - [sym_while_statement] = STATE(733), - [sym_do_statement] = STATE(733), - [sym_for_statement] = STATE(733), - [sym_return_statement] = STATE(733), - [sym_break_statement] = STATE(733), - [sym_continue_statement] = STATE(733), - [sym_goto_statement] = STATE(733), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(733), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(733), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2600), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2603), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2606), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2611), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2611), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2609), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_typedef] = ACTIONS(2620), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_LPAREN2] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1225), - [anon_sym_long] = ACTIONS(1225), - [anon_sym_short] = ACTIONS(1225), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_switch] = ACTIONS(2629), - [anon_sym_case] = ACTIONS(2632), - [anon_sym_default] = ACTIONS(2635), - [anon_sym_while] = ACTIONS(2638), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_for] = ACTIONS(2644), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2653), - [anon_sym_goto] = ACTIONS(2656), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1285), - [sym_number_literal] = ACTIONS(2659), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(2662), - [sym_false] = ACTIONS(2662), - [sym_null] = ACTIONS(2662), - [sym_identifier] = ACTIONS(2665), - [sym_comment] = ACTIONS(85), + [676] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2455), + [sym_preproc_directive] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_typedef] = ACTIONS(2455), + [anon_sym_extern] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_LPAREN2] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_auto] = ACTIONS(2455), + [anon_sym_register] = ACTIONS(2455), + [anon_sym_inline] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2455), + [anon_sym_restrict] = ACTIONS(2455), + [anon_sym_volatile] = ACTIONS(2455), + [anon_sym__Atomic] = ACTIONS(2455), + [anon_sym_unsigned] = ACTIONS(2455), + [anon_sym_long] = ACTIONS(2455), + [anon_sym_short] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2455), + [anon_sym_enum] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_switch] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_do] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2455), + [anon_sym_continue] = ACTIONS(2455), + [anon_sym_goto] = ACTIONS(2455), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_sizeof] = ACTIONS(2455), + [sym_number_literal] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [sym_true] = ACTIONS(2455), + [sym_false] = ACTIONS(2455), + [sym_null] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2455), + [sym_comment] = ACTIONS(81), }, - [734] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2668), - [sym_preproc_directive] = ACTIONS(2668), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_typedef] = ACTIONS(2668), - [anon_sym_extern] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_RBRACE] = ACTIONS(2670), - [anon_sym_LPAREN2] = ACTIONS(2670), - [anon_sym_STAR] = ACTIONS(2670), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_auto] = ACTIONS(2668), - [anon_sym_register] = ACTIONS(2668), - [anon_sym_inline] = ACTIONS(2668), - [anon_sym_const] = ACTIONS(2668), - [anon_sym_restrict] = ACTIONS(2668), - [anon_sym_volatile] = ACTIONS(2668), - [anon_sym__Atomic] = ACTIONS(2668), - [anon_sym_unsigned] = ACTIONS(2668), - [anon_sym_long] = ACTIONS(2668), - [anon_sym_short] = ACTIONS(2668), - [sym_primitive_type] = ACTIONS(2668), - [anon_sym_enum] = ACTIONS(2668), - [anon_sym_struct] = ACTIONS(2668), - [anon_sym_union] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_switch] = ACTIONS(2668), - [anon_sym_case] = ACTIONS(2668), - [anon_sym_default] = ACTIONS(2668), - [anon_sym_while] = ACTIONS(2668), - [anon_sym_do] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_goto] = ACTIONS(2668), - [anon_sym_AMP] = ACTIONS(2670), - [anon_sym_BANG] = ACTIONS(2670), - [anon_sym_TILDE] = ACTIONS(2670), - [anon_sym_PLUS] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), - [anon_sym_DASH_DASH] = ACTIONS(2670), - [anon_sym_PLUS_PLUS] = ACTIONS(2670), - [anon_sym_sizeof] = ACTIONS(2668), - [sym_number_literal] = ACTIONS(2670), - [anon_sym_SQUOTE] = ACTIONS(2670), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym_true] = ACTIONS(2668), - [sym_false] = ACTIONS(2668), - [sym_null] = ACTIONS(2668), - [sym_identifier] = ACTIONS(2668), - [sym_comment] = ACTIONS(85), + [677] = { + [sym_parameter_list] = STATE(309), + [aux_sym_declaration_repeat1] = STATE(654), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(655), + [sym_comment] = ACTIONS(81), }, - [735] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2672), - [sym_comment] = ACTIONS(85), + [678] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2459), + [sym_comment] = ACTIONS(81), }, - [736] = { - [sym_compound_statement] = STATE(944), - [sym_labeled_statement] = STATE(944), - [sym_expression_statement] = STATE(944), - [sym_if_statement] = STATE(944), - [sym_switch_statement] = STATE(944), - [sym_case_statement] = STATE(944), - [sym_while_statement] = STATE(944), - [sym_do_statement] = STATE(944), - [sym_for_statement] = STATE(944), - [sym_return_statement] = STATE(944), - [sym_break_statement] = STATE(944), - [sym_continue_statement] = STATE(944), - [sym_goto_statement] = STATE(944), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1169), - [sym_comment] = ACTIONS(85), + [679] = { + [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(679), + [sym_preproc_ifdef_in_compound_statement] = STATE(679), + [sym_declaration] = STATE(679), + [sym_type_definition] = STATE(679), + [sym__declaration_specifiers] = STATE(427), + [sym_compound_statement] = STATE(679), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(679), + [sym_expression_statement] = STATE(679), + [sym_if_statement] = STATE(679), + [sym_switch_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(679), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(679), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2467), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2470), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2472), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2472), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2470), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2470), + [sym_preproc_directive] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2481), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1121), + [anon_sym_long] = ACTIONS(1121), + [anon_sym_short] = ACTIONS(1121), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1133), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_switch] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2496), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2502), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_goto] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1175), + [sym_number_literal] = ACTIONS(2514), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1184), + [sym_true] = ACTIONS(2517), + [sym_false] = ACTIONS(2517), + [sym_null] = ACTIONS(2517), + [sym_identifier] = ACTIONS(2520), + [sym_comment] = ACTIONS(81), }, - [737] = { - [sym_compound_statement] = STATE(286), - [sym_labeled_statement] = STATE(286), - [sym_expression_statement] = STATE(286), - [sym_if_statement] = STATE(286), - [sym_switch_statement] = STATE(286), - [sym_case_statement] = STATE(286), - [sym_while_statement] = STATE(286), - [sym_do_statement] = STATE(286), - [sym_for_statement] = STATE(286), - [sym_return_statement] = STATE(286), - [sym_break_statement] = STATE(286), - [sym_continue_statement] = STATE(286), - [sym_goto_statement] = STATE(286), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1169), - [sym_comment] = ACTIONS(85), + [680] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2523), + [sym_preproc_directive] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_typedef] = ACTIONS(2523), + [anon_sym_extern] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2523), + [anon_sym_auto] = ACTIONS(2523), + [anon_sym_register] = ACTIONS(2523), + [anon_sym_inline] = ACTIONS(2523), + [anon_sym_const] = ACTIONS(2523), + [anon_sym_restrict] = ACTIONS(2523), + [anon_sym_volatile] = ACTIONS(2523), + [anon_sym__Atomic] = ACTIONS(2523), + [anon_sym_unsigned] = ACTIONS(2523), + [anon_sym_long] = ACTIONS(2523), + [anon_sym_short] = ACTIONS(2523), + [sym_primitive_type] = ACTIONS(2523), + [anon_sym_enum] = ACTIONS(2523), + [anon_sym_struct] = ACTIONS(2523), + [anon_sym_union] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_switch] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2523), + [anon_sym_do] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_goto] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_DASH_DASH] = ACTIONS(2525), + [anon_sym_PLUS_PLUS] = ACTIONS(2525), + [anon_sym_sizeof] = ACTIONS(2523), + [sym_number_literal] = ACTIONS(2525), + [anon_sym_SQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2523), + [sym_false] = ACTIONS(2523), + [sym_null] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2523), + [sym_comment] = ACTIONS(81), }, - [738] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [681] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2527), + [sym_comment] = ACTIONS(81), }, - [739] = { - [sym_declaration] = STATE(305), - [sym_type_definition] = STATE(305), - [sym__declaration_specifiers] = STATE(306), - [sym_compound_statement] = STATE(305), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_labeled_statement] = STATE(305), - [sym_expression_statement] = STATE(305), - [sym_if_statement] = STATE(305), - [sym_switch_statement] = STATE(305), - [sym_case_statement] = STATE(305), - [sym_while_statement] = STATE(305), - [sym_do_statement] = STATE(305), - [sym_for_statement] = STATE(305), - [sym_return_statement] = STATE(305), - [sym_break_statement] = STATE(305), - [sym_continue_statement] = STATE(305), - [sym_goto_statement] = STATE(305), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), + [682] = { + [sym_compound_statement] = STATE(893), + [sym_labeled_statement] = STATE(893), + [sym_expression_statement] = STATE(893), + [sym_if_statement] = STATE(893), + [sym_switch_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(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(2676), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1069), + [sym_comment] = ACTIONS(81), }, - [740] = { - [sym_compound_statement] = STATE(307), - [sym_labeled_statement] = STATE(307), - [sym_expression_statement] = STATE(307), - [sym_if_statement] = STATE(307), - [sym_switch_statement] = STATE(307), - [sym_case_statement] = STATE(307), - [sym_while_statement] = STATE(307), - [sym_do_statement] = STATE(307), - [sym_for_statement] = STATE(307), - [sym_return_statement] = STATE(307), - [sym_break_statement] = STATE(307), - [sym_continue_statement] = STATE(307), - [sym_goto_statement] = STATE(307), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [683] = { + [sym_compound_statement] = STATE(264), + [sym_labeled_statement] = STATE(264), + [sym_expression_statement] = STATE(264), + [sym_if_statement] = STATE(264), + [sym_switch_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_do_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_return_statement] = STATE(264), + [sym_break_statement] = STATE(264), + [sym_continue_statement] = STATE(264), + [sym_goto_statement] = STATE(264), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1169), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1069), + [sym_comment] = ACTIONS(81), }, - [741] = { - [sym_declaration] = STATE(947), - [sym__declaration_specifiers] = STATE(306), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [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(123), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(2678), + [684] = { + [sym_declaration] = STATE(894), + [sym__declaration_specifiers] = STATE(273), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym__expression] = STATE(895), + [sym_conditional_expression] = STATE(895), + [sym_assignment_expression] = STATE(895), + [sym_pointer_expression] = STATE(895), + [sym_logical_expression] = STATE(895), + [sym_bitwise_expression] = STATE(895), + [sym_equality_expression] = STATE(895), + [sym_relational_expression] = STATE(895), + [sym_shift_expression] = STATE(895), + [sym_math_expression] = STATE(895), + [sym_cast_expression] = STATE(895), + [sym_sizeof_expression] = STATE(895), + [sym_subscript_expression] = STATE(895), + [sym_call_expression] = STATE(895), + [sym_field_expression] = STATE(895), + [sym_compound_literal_expression] = STATE(895), + [sym_parenthesized_expression] = STATE(895), + [sym_char_literal] = STATE(895), + [sym_concatenated_string] = STATE(895), + [sym_string_literal] = STATE(107), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(2529), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -33282,374 +30275,368 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2680), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_identifier] = ACTIONS(651), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2531), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2533), + [sym_false] = ACTIONS(2533), + [sym_null] = ACTIONS(2533), + [sym_identifier] = ACTIONS(559), + [sym_comment] = ACTIONS(81), }, - [742] = { - [sym_compound_statement] = STATE(343), - [sym_labeled_statement] = STATE(343), - [sym_expression_statement] = STATE(343), - [sym_if_statement] = STATE(343), - [sym_switch_statement] = STATE(343), - [sym_case_statement] = STATE(343), - [sym_while_statement] = STATE(343), - [sym_do_statement] = STATE(343), - [sym_for_statement] = STATE(343), - [sym_return_statement] = STATE(343), - [sym_break_statement] = STATE(343), - [sym_continue_statement] = STATE(343), - [sym_goto_statement] = STATE(343), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [685] = { + [sym_compound_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1169), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1069), + [sym_comment] = ACTIONS(81), }, - [743] = { - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_case_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [sym_do_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [686] = { + [sym_compound_statement] = STATE(753), + [sym_labeled_statement] = STATE(753), + [sym_expression_statement] = STATE(753), + [sym_if_statement] = STATE(753), + [sym_switch_statement] = STATE(753), + [sym_while_statement] = STATE(753), + [sym_do_statement] = STATE(753), + [sym_for_statement] = STATE(753), + [sym_return_statement] = STATE(753), + [sym_break_statement] = STATE(753), + [sym_continue_statement] = STATE(753), + [sym_goto_statement] = STATE(753), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1071), + [sym_comment] = ACTIONS(81), }, - [744] = { - [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(80), - [anon_sym_RPAREN] = ACTIONS(2684), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(2686), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2688), - [sym_false] = ACTIONS(2688), - [sym_null] = ACTIONS(2688), - [sym_identifier] = ACTIONS(2688), - [sym_comment] = ACTIONS(85), + [687] = { + [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(75), + [anon_sym_RPAREN] = ACTIONS(2535), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(2537), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2539), + [sym_false] = ACTIONS(2539), + [sym_null] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2539), + [sym_comment] = ACTIONS(81), }, - [745] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(2690), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [688] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [746] = { - [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(123), - [anon_sym_SEMI] = ACTIONS(2690), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_null] = ACTIONS(2694), - [sym_identifier] = ACTIONS(2694), - [sym_comment] = ACTIONS(85), + [689] = { + [sym__expression] = STATE(899), + [sym_conditional_expression] = STATE(899), + [sym_assignment_expression] = STATE(899), + [sym_pointer_expression] = STATE(899), + [sym_logical_expression] = STATE(899), + [sym_bitwise_expression] = STATE(899), + [sym_equality_expression] = STATE(899), + [sym_relational_expression] = STATE(899), + [sym_shift_expression] = STATE(899), + [sym_math_expression] = STATE(899), + [sym_cast_expression] = STATE(899), + [sym_sizeof_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_call_expression] = STATE(899), + [sym_field_expression] = STATE(899), + [sym_compound_literal_expression] = STATE(899), + [sym_parenthesized_expression] = STATE(899), + [sym_char_literal] = STATE(899), + [sym_concatenated_string] = STATE(899), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2545), + [sym_false] = ACTIONS(2545), + [sym_null] = ACTIONS(2545), + [sym_identifier] = ACTIONS(2545), + [sym_comment] = ACTIONS(81), }, - [747] = { - [sym__expression] = STATE(518), - [sym_conditional_expression] = STATE(518), - [sym_assignment_expression] = STATE(518), - [sym_pointer_expression] = STATE(518), - [sym_logical_expression] = STATE(518), - [sym_bitwise_expression] = STATE(518), - [sym_equality_expression] = STATE(518), - [sym_relational_expression] = STATE(518), - [sym_shift_expression] = STATE(518), - [sym_math_expression] = STATE(518), - [sym_cast_expression] = STATE(518), - [sym_sizeof_expression] = STATE(518), - [sym_subscript_expression] = STATE(518), - [sym_call_expression] = STATE(518), - [sym_field_expression] = STATE(518), - [sym_compound_literal_expression] = STATE(518), - [sym_parenthesized_expression] = STATE(518), - [sym_initializer_list] = STATE(519), - [sym_char_literal] = STATE(518), - [sym_concatenated_string] = STATE(518), - [sym_string_literal] = STATE(80), - [anon_sym_COMMA] = ACTIONS(2245), - [anon_sym_RPAREN] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_EQ] = ACTIONS(2249), - [anon_sym_QMARK] = ACTIONS(2245), - [anon_sym_STAR_EQ] = ACTIONS(2245), - [anon_sym_SLASH_EQ] = ACTIONS(2245), - [anon_sym_PERCENT_EQ] = ACTIONS(2245), - [anon_sym_PLUS_EQ] = ACTIONS(2245), - [anon_sym_DASH_EQ] = ACTIONS(2245), - [anon_sym_LT_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_GT_EQ] = ACTIONS(2245), - [anon_sym_AMP_EQ] = ACTIONS(2245), - [anon_sym_CARET_EQ] = ACTIONS(2245), - [anon_sym_PIPE_EQ] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2696), - [anon_sym_PIPE_PIPE] = ACTIONS(2245), - [anon_sym_AMP_AMP] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2698), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_EQ_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_GT] = ACTIONS(2249), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_GT_GT] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DASH_GT] = ACTIONS(2245), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1387), - [sym_comment] = ACTIONS(85), + [690] = { + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_pointer_expression] = STATE(471), + [sym_logical_expression] = STATE(471), + [sym_bitwise_expression] = STATE(471), + [sym_equality_expression] = STATE(471), + [sym_relational_expression] = STATE(471), + [sym_shift_expression] = STATE(471), + [sym_math_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(471), + [sym_call_expression] = STATE(471), + [sym_field_expression] = STATE(471), + [sym_compound_literal_expression] = STATE(471), + [sym_parenthesized_expression] = STATE(471), + [sym_initializer_list] = STATE(472), + [sym_char_literal] = STATE(471), + [sym_concatenated_string] = STATE(471), + [sym_string_literal] = STATE(75), + [anon_sym_COMMA] = ACTIONS(2087), + [anon_sym_RPAREN] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_EQ] = ACTIONS(2091), + [anon_sym_QMARK] = ACTIONS(2087), + [anon_sym_STAR_EQ] = ACTIONS(2087), + [anon_sym_SLASH_EQ] = ACTIONS(2087), + [anon_sym_PERCENT_EQ] = ACTIONS(2087), + [anon_sym_PLUS_EQ] = ACTIONS(2087), + [anon_sym_DASH_EQ] = ACTIONS(2087), + [anon_sym_LT_LT_EQ] = ACTIONS(2087), + [anon_sym_GT_GT_EQ] = ACTIONS(2087), + [anon_sym_AMP_EQ] = ACTIONS(2087), + [anon_sym_CARET_EQ] = ACTIONS(2087), + [anon_sym_PIPE_EQ] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2087), + [anon_sym_AMP_AMP] = ACTIONS(2087), + [anon_sym_BANG] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2091), + [anon_sym_CARET] = ACTIONS(2091), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_EQ_EQ] = ACTIONS(2087), + [anon_sym_BANG_EQ] = ACTIONS(2087), + [anon_sym_LT] = ACTIONS(2091), + [anon_sym_GT] = ACTIONS(2091), + [anon_sym_LT_EQ] = ACTIONS(2087), + [anon_sym_GT_EQ] = ACTIONS(2087), + [anon_sym_LT_LT] = ACTIONS(2091), + [anon_sym_GT_GT] = ACTIONS(2091), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_SLASH] = ACTIONS(2091), + [anon_sym_PERCENT] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [anon_sym_DOT] = ACTIONS(2087), + [anon_sym_DASH_GT] = ACTIONS(2087), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [sym_null] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1277), + [sym_comment] = ACTIONS(81), }, - [748] = { - [sym__declaration_specifiers] = STATE(492), - [sym_storage_class_specifier] = STATE(495), - [sym_type_qualifier] = STATE(495), - [sym__type_specifier] = STATE(494), - [sym_sized_type_specifier] = STATE(494), - [sym_enum_specifier] = STATE(494), - [sym_struct_specifier] = STATE(494), - [sym_union_specifier] = STATE(494), - [sym_parameter_declaration] = STATE(953), - [sym_macro_type_specifier] = STATE(494), - [aux_sym__declaration_specifiers_repeat1] = STATE(495), - [aux_sym_sized_type_specifier_repeat1] = STATE(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2700), + [691] = { + [sym__declaration_specifiers] = STATE(445), + [sym_storage_class_specifier] = STATE(448), + [sym_type_qualifier] = STATE(448), + [sym__type_specifier] = STATE(447), + [sym_sized_type_specifier] = STATE(447), + [sym_enum_specifier] = STATE(447), + [sym_struct_specifier] = STATE(447), + [sym_union_specifier] = STATE(447), + [sym_parameter_declaration] = STATE(900), + [sym_macro_type_specifier] = STATE(447), + [aux_sym__declaration_specifiers_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), [anon_sym_extern] = ACTIONS(29), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), @@ -33659,61 +30646,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(1309), - [anon_sym_long] = ACTIONS(1309), - [anon_sym_short] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1201), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [749] = { - [anon_sym_COMMA] = ACTIONS(2702), - [anon_sym_RPAREN] = ACTIONS(2702), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_LPAREN2] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_EQ] = ACTIONS(2702), - [anon_sym_COLON] = ACTIONS(2702), - [sym_comment] = ACTIONS(85), + [692] = { + [anon_sym_COMMA] = ACTIONS(2553), + [anon_sym_RPAREN] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2553), + [anon_sym_EQ] = ACTIONS(2553), + [anon_sym_COLON] = ACTIONS(2553), + [sym_comment] = ACTIONS(81), }, - [750] = { - [aux_sym_parameter_list_repeat1] = STATE(955), - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_RPAREN] = ACTIONS(2704), - [sym_comment] = ACTIONS(85), + [693] = { + [aux_sym_parameter_list_repeat1] = STATE(902), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_RPAREN] = ACTIONS(2555), + [sym_comment] = ACTIONS(81), }, - [751] = { - [sym__declaration_specifiers] = STATE(492), - [sym__declarator] = STATE(345), - [sym__abstract_declarator] = STATE(493), - [sym_pointer_declarator] = STATE(345), - [sym_abstract_pointer_declarator] = STATE(493), - [sym_function_declarator] = STATE(345), - [sym_abstract_function_declarator] = STATE(493), - [sym_array_declarator] = STATE(345), - [sym_abstract_array_declarator] = STATE(493), - [sym_storage_class_specifier] = STATE(495), - [sym_type_qualifier] = STATE(495), - [sym__type_specifier] = STATE(494), - [sym_sized_type_specifier] = STATE(494), - [sym_enum_specifier] = STATE(494), - [sym_struct_specifier] = STATE(494), - [sym_union_specifier] = STATE(494), - [sym_parameter_list] = STATE(241), - [sym_parameter_declaration] = STATE(490), - [sym_macro_type_specifier] = STATE(494), - [aux_sym__declaration_specifiers_repeat1] = STATE(495), - [aux_sym_sized_type_specifier_repeat1] = STATE(496), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(1307), + [694] = { + [sym__declaration_specifiers] = STATE(445), + [sym__declarator] = STATE(300), + [sym__abstract_declarator] = STATE(446), + [sym_pointer_declarator] = STATE(300), + [sym_abstract_pointer_declarator] = STATE(446), + [sym_function_declarator] = STATE(300), + [sym_abstract_function_declarator] = STATE(446), + [sym_array_declarator] = STATE(300), + [sym_abstract_array_declarator] = STATE(446), + [sym_storage_class_specifier] = STATE(448), + [sym_type_qualifier] = STATE(448), + [sym__type_specifier] = STATE(447), + [sym_sized_type_specifier] = STATE(447), + [sym_enum_specifier] = STATE(447), + [sym_struct_specifier] = STATE(447), + [sym_union_specifier] = STATE(447), + [sym_parameter_list] = STATE(220), + [sym_parameter_declaration] = STATE(443), + [sym_macro_type_specifier] = STATE(447), + [aux_sym__declaration_specifiers_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), + [anon_sym_RPAREN] = ACTIONS(1197), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(489), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(445), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -33722,73 +30709,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(1309), - [anon_sym_long] = ACTIONS(1309), - [anon_sym_short] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1199), + [anon_sym_long] = ACTIONS(1199), + [anon_sym_short] = ACTIONS(1199), + [sym_primitive_type] = ACTIONS(1201), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(2708), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(2559), + [sym_comment] = ACTIONS(81), }, - [752] = { - [sym__declarator] = STATE(346), - [sym__abstract_declarator] = STATE(497), - [sym_pointer_declarator] = STATE(346), - [sym_abstract_pointer_declarator] = STATE(497), - [sym_function_declarator] = STATE(346), - [sym_abstract_function_declarator] = STATE(497), - [sym_array_declarator] = STATE(346), - [sym_abstract_array_declarator] = STATE(497), - [sym_type_qualifier] = STATE(958), - [sym_parameter_list] = STATE(241), - [aux_sym_type_definition_repeat1] = STATE(958), - [anon_sym_COMMA] = ACTIONS(1313), - [anon_sym_RPAREN] = ACTIONS(1313), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(489), + [695] = { + [sym__declarator] = STATE(301), + [sym__abstract_declarator] = STATE(450), + [sym_pointer_declarator] = STATE(301), + [sym_abstract_pointer_declarator] = STATE(450), + [sym_function_declarator] = STATE(301), + [sym_abstract_function_declarator] = STATE(450), + [sym_array_declarator] = STATE(301), + [sym_abstract_array_declarator] = STATE(450), + [sym_type_qualifier] = STATE(905), + [sym_parameter_list] = STATE(220), + [aux_sym_type_definition_repeat1] = STATE(905), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_RPAREN] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(445), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(737), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(645), + [sym_comment] = ACTIONS(81), }, - [753] = { - [sym_parameter_list] = STATE(354), - [anon_sym_COMMA] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [sym_comment] = ACTIONS(85), + [696] = { + [sym_parameter_list] = STATE(309), + [anon_sym_COMMA] = ACTIONS(2561), + [anon_sym_RPAREN] = ACTIONS(2561), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(653), + [sym_comment] = ACTIONS(81), }, - [754] = { - [sym_parameter_list] = STATE(504), - [anon_sym_COMMA] = ACTIONS(2710), - [anon_sym_RPAREN] = ACTIONS(2710), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1327), - [sym_comment] = ACTIONS(85), + [697] = { + [sym_parameter_list] = STATE(457), + [anon_sym_COMMA] = ACTIONS(2561), + [anon_sym_RPAREN] = ACTIONS(2561), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1217), + [sym_comment] = ACTIONS(81), }, - [755] = { - [anon_sym_COMMA] = ACTIONS(2712), - [anon_sym_RPAREN] = ACTIONS(2712), - [anon_sym_LPAREN2] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2712), - [sym_comment] = ACTIONS(85), + [698] = { + [anon_sym_COMMA] = ACTIONS(2563), + [anon_sym_RPAREN] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2563), + [sym_comment] = ACTIONS(81), }, - [756] = { - [sym_storage_class_specifier] = STATE(959), - [sym_type_qualifier] = STATE(959), - [aux_sym__declaration_specifiers_repeat1] = STATE(959), - [anon_sym_COMMA] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), + [699] = { + [sym_storage_class_specifier] = STATE(906), + [sym_type_qualifier] = STATE(906), + [aux_sym__declaration_specifiers_repeat1] = STATE(906), + [anon_sym_COMMA] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(657), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(657), + [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -33797,19 +30784,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(751), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(659), + [sym_comment] = ACTIONS(81), }, - [757] = { - [sym_storage_class_specifier] = STATE(960), - [sym_type_qualifier] = STATE(960), - [aux_sym__declaration_specifiers_repeat1] = STATE(960), - [anon_sym_COMMA] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(749), + [700] = { + [sym_storage_class_specifier] = STATE(907), + [sym_type_qualifier] = STATE(907), + [aux_sym__declaration_specifiers_repeat1] = STATE(907), + [anon_sym_COMMA] = ACTIONS(657), + [anon_sym_RPAREN] = ACTIONS(657), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(749), + [anon_sym_LPAREN2] = ACTIONS(657), + [anon_sym_STAR] = ACTIONS(657), + [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -33818,840 +30805,840 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(751), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(659), + [sym_comment] = ACTIONS(81), }, - [758] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(758), - [anon_sym_COMMA] = ACTIONS(978), - [anon_sym_RPAREN] = ACTIONS(978), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_LPAREN2] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_static] = ACTIONS(980), - [anon_sym_auto] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_restrict] = ACTIONS(980), - [anon_sym_volatile] = ACTIONS(980), - [anon_sym__Atomic] = ACTIONS(980), - [anon_sym_unsigned] = ACTIONS(2714), - [anon_sym_long] = ACTIONS(2714), - [anon_sym_short] = ACTIONS(2714), - [sym_primitive_type] = ACTIONS(980), - [sym_identifier] = ACTIONS(980), - [sym_comment] = ACTIONS(85), + [701] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(701), + [anon_sym_COMMA] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(896), + [anon_sym_LPAREN2] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(894), + [anon_sym_static] = ACTIONS(896), + [anon_sym_auto] = ACTIONS(896), + [anon_sym_register] = ACTIONS(896), + [anon_sym_inline] = ACTIONS(896), + [anon_sym_const] = ACTIONS(896), + [anon_sym_restrict] = ACTIONS(896), + [anon_sym_volatile] = ACTIONS(896), + [anon_sym__Atomic] = ACTIONS(896), + [anon_sym_unsigned] = ACTIONS(2565), + [anon_sym_long] = ACTIONS(2565), + [anon_sym_short] = ACTIONS(2565), + [sym_primitive_type] = ACTIONS(896), + [sym_identifier] = ACTIONS(896), + [sym_comment] = ACTIONS(81), }, - [759] = { - [sym_parameter_list] = STATE(504), - [anon_sym_COMMA] = ACTIONS(2717), - [anon_sym_RPAREN] = ACTIONS(2717), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1327), - [sym_comment] = ACTIONS(85), + [702] = { + [sym_parameter_list] = STATE(457), + [anon_sym_COMMA] = ACTIONS(2568), + [anon_sym_RPAREN] = ACTIONS(2568), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1217), + [sym_comment] = ACTIONS(81), }, - [760] = { - [sym_type_qualifier] = STATE(760), - [aux_sym_type_definition_repeat1] = STATE(760), - [anon_sym_RPAREN] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_restrict] = ACTIONS(2719), - [anon_sym_volatile] = ACTIONS(2719), - [anon_sym__Atomic] = ACTIONS(2719), - [sym_comment] = ACTIONS(85), + [703] = { + [sym_type_qualifier] = STATE(703), + [aux_sym_type_definition_repeat1] = STATE(703), + [anon_sym_RPAREN] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2570), + [anon_sym_restrict] = ACTIONS(2570), + [anon_sym_volatile] = ACTIONS(2570), + [anon_sym__Atomic] = ACTIONS(2570), + [sym_comment] = ACTIONS(81), }, - [761] = { - [anon_sym_COMMA] = ACTIONS(2722), - [anon_sym_RPAREN] = ACTIONS(2722), - [anon_sym_LPAREN2] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2722), - [sym_comment] = ACTIONS(85), + [704] = { + [anon_sym_COMMA] = ACTIONS(2573), + [anon_sym_RPAREN] = ACTIONS(2573), + [anon_sym_LPAREN2] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2573), + [sym_comment] = ACTIONS(81), }, - [762] = { - [sym__expression] = STATE(83), - [sym_conditional_expression] = STATE(83), - [sym_assignment_expression] = STATE(83), - [sym_pointer_expression] = STATE(83), - [sym_logical_expression] = STATE(83), - [sym_bitwise_expression] = STATE(83), - [sym_equality_expression] = STATE(83), - [sym_relational_expression] = STATE(83), - [sym_shift_expression] = STATE(83), - [sym_math_expression] = STATE(83), - [sym_cast_expression] = STATE(83), - [sym_sizeof_expression] = STATE(83), - [sym_subscript_expression] = STATE(83), - [sym_call_expression] = STATE(83), - [sym_field_expression] = STATE(83), - [sym_compound_literal_expression] = STATE(83), - [sym_parenthesized_expression] = STATE(83), - [sym_char_literal] = STATE(83), - [sym_concatenated_string] = STATE(83), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(2724), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(85), + [705] = { + [sym__expression] = STATE(78), + [sym_conditional_expression] = STATE(78), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(78), + [sym_call_expression] = STATE(78), + [sym_field_expression] = STATE(78), + [sym_compound_literal_expression] = STATE(78), + [sym_parenthesized_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_concatenated_string] = STATE(78), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(151), + [sym_false] = ACTIONS(151), + [sym_null] = ACTIONS(151), + [sym_identifier] = ACTIONS(151), + [sym_comment] = ACTIONS(81), }, - [763] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(2724), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1685), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PERCENT_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_CARET_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [706] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [764] = { - [sym_type_qualifier] = STATE(764), - [aux_sym_type_definition_repeat1] = STATE(764), - [anon_sym_LPAREN2] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2261), - [anon_sym_RBRACK] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_restrict] = ACTIONS(1127), - [anon_sym_volatile] = ACTIONS(1127), - [anon_sym__Atomic] = ACTIONS(1127), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_BANG] = ACTIONS(2261), - [anon_sym_TILDE] = ACTIONS(2261), - [anon_sym_PLUS] = ACTIONS(1130), - [anon_sym_DASH] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(2261), - [anon_sym_PLUS_PLUS] = ACTIONS(2261), - [anon_sym_sizeof] = ACTIONS(1130), - [sym_number_literal] = ACTIONS(2261), - [anon_sym_SQUOTE] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(2261), - [sym_true] = ACTIONS(1130), - [sym_false] = ACTIONS(1130), - [sym_null] = ACTIONS(1130), - [sym_identifier] = ACTIONS(1130), - [sym_comment] = ACTIONS(85), + [707] = { + [sym_type_qualifier] = STATE(707), + [aux_sym_type_definition_repeat1] = STATE(707), + [anon_sym_LPAREN2] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_RBRACK] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_restrict] = ACTIONS(1033), + [anon_sym_volatile] = ACTIONS(1033), + [anon_sym__Atomic] = ACTIONS(1033), + [anon_sym_AMP] = ACTIONS(2103), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_sizeof] = ACTIONS(1036), + [sym_number_literal] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(2103), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1036), + [sym_identifier] = ACTIONS(1036), + [sym_comment] = ACTIONS(81), }, - [765] = { - [sym_type_qualifier] = STATE(764), - [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(369), - [aux_sym_type_definition_repeat1] = STATE(764), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(2726), - [anon_sym_RBRACK] = ACTIONS(2724), + [708] = { + [sym_type_qualifier] = STATE(707), + [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(324), + [aux_sym_type_definition_repeat1] = STATE(707), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(2577), + [anon_sym_RBRACK] = ACTIONS(2575), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2728), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_identifier] = ACTIONS(2730), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2581), + [sym_false] = ACTIONS(2581), + [sym_null] = ACTIONS(2581), + [sym_identifier] = ACTIONS(2581), + [sym_comment] = ACTIONS(81), }, - [766] = { - [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(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(2732), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_null] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2734), - [sym_comment] = ACTIONS(85), + [709] = { + [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(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2585), + [sym_false] = ACTIONS(2585), + [sym_null] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2585), + [sym_comment] = ACTIONS(81), }, - [767] = { - [anon_sym_RBRACE] = ACTIONS(2736), - [sym_comment] = ACTIONS(85), + [710] = { + [anon_sym_RBRACE] = ACTIONS(2587), + [sym_comment] = ACTIONS(81), }, - [768] = { - [anon_sym_COMMA] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_LPAREN2] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_RBRACK] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym_COLON] = ACTIONS(2738), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_STAR_EQ] = ACTIONS(2738), - [anon_sym_SLASH_EQ] = ACTIONS(2738), - [anon_sym_PERCENT_EQ] = ACTIONS(2738), - [anon_sym_PLUS_EQ] = ACTIONS(2738), - [anon_sym_DASH_EQ] = ACTIONS(2738), - [anon_sym_LT_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_GT_EQ] = ACTIONS(2738), - [anon_sym_AMP_EQ] = ACTIONS(2738), - [anon_sym_CARET_EQ] = ACTIONS(2738), - [anon_sym_PIPE_EQ] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2738), - [anon_sym_BANG_EQ] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_EQ] = ACTIONS(2738), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2738), - [anon_sym_PLUS_PLUS] = ACTIONS(2738), - [anon_sym_DOT] = ACTIONS(2738), - [anon_sym_DASH_GT] = ACTIONS(2738), - [sym_comment] = ACTIONS(85), + [711] = { + [anon_sym_COMMA] = ACTIONS(2589), + [anon_sym_RPAREN] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_RBRACE] = ACTIONS(2589), + [anon_sym_LPAREN2] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_RBRACK] = ACTIONS(2589), + [anon_sym_EQ] = ACTIONS(2591), + [anon_sym_COLON] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2589), + [anon_sym_STAR_EQ] = ACTIONS(2589), + [anon_sym_SLASH_EQ] = ACTIONS(2589), + [anon_sym_PERCENT_EQ] = ACTIONS(2589), + [anon_sym_PLUS_EQ] = ACTIONS(2589), + [anon_sym_DASH_EQ] = ACTIONS(2589), + [anon_sym_LT_LT_EQ] = ACTIONS(2589), + [anon_sym_GT_GT_EQ] = ACTIONS(2589), + [anon_sym_AMP_EQ] = ACTIONS(2589), + [anon_sym_CARET_EQ] = ACTIONS(2589), + [anon_sym_PIPE_EQ] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2591), + [anon_sym_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2591), + [anon_sym_CARET] = ACTIONS(2591), + [anon_sym_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2591), + [anon_sym_GT] = ACTIONS(2591), + [anon_sym_LT_EQ] = ACTIONS(2589), + [anon_sym_GT_EQ] = ACTIONS(2589), + [anon_sym_LT_LT] = ACTIONS(2591), + [anon_sym_GT_GT] = ACTIONS(2591), + [anon_sym_PLUS] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_SLASH] = ACTIONS(2591), + [anon_sym_PERCENT] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DOT] = ACTIONS(2589), + [anon_sym_DASH_GT] = ACTIONS(2589), + [sym_comment] = ACTIONS(81), }, - [769] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(76), - [sym_sized_type_specifier] = STATE(76), - [sym_enum_specifier] = STATE(76), - [sym_struct_specifier] = STATE(76), - [sym_union_specifier] = STATE(76), - [sym__expression] = STATE(77), - [sym_comma_expression] = STATE(78), - [sym_conditional_expression] = STATE(77), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_type_descriptor] = STATE(966), - [sym_sizeof_expression] = STATE(77), - [sym_subscript_expression] = STATE(77), - [sym_call_expression] = STATE(77), - [sym_field_expression] = STATE(77), - [sym_compound_literal_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(80), - [sym_macro_type_specifier] = STATE(76), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(82), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), + [712] = { + [sym_type_qualifier] = STATE(76), + [sym__type_specifier] = STATE(71), + [sym_sized_type_specifier] = STATE(71), + [sym_enum_specifier] = STATE(71), + [sym_struct_specifier] = STATE(71), + [sym_union_specifier] = STATE(71), + [sym__expression] = STATE(72), + [sym_comma_expression] = STATE(73), + [sym_conditional_expression] = STATE(72), + [sym_assignment_expression] = STATE(72), + [sym_pointer_expression] = STATE(72), + [sym_logical_expression] = STATE(72), + [sym_bitwise_expression] = STATE(72), + [sym_equality_expression] = STATE(72), + [sym_relational_expression] = STATE(72), + [sym_shift_expression] = STATE(72), + [sym_math_expression] = STATE(72), + [sym_cast_expression] = STATE(72), + [sym_type_descriptor] = STATE(913), + [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(72), + [sym_call_expression] = STATE(72), + [sym_field_expression] = STATE(72), + [sym_compound_literal_expression] = STATE(72), + [sym_parenthesized_expression] = STATE(72), + [sym_char_literal] = STATE(72), + [sym_concatenated_string] = STATE(72), + [sym_string_literal] = STATE(75), + [sym_macro_type_specifier] = STATE(71), + [aux_sym_type_definition_repeat1] = STATE(76), + [aux_sym_sized_type_specifier_repeat1] = STATE(77), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [sym_primitive_type] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(129), + [anon_sym_long] = ACTIONS(129), + [anon_sym_short] = ACTIONS(129), + [sym_primitive_type] = ACTIONS(131), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(155), - [sym_false] = ACTIONS(155), - [sym_null] = ACTIONS(155), - [sym_identifier] = ACTIONS(157), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_identifier] = ACTIONS(147), + [sym_comment] = ACTIONS(81), }, - [770] = { - [sym__expression] = STATE(83), - [sym_conditional_expression] = STATE(83), - [sym_assignment_expression] = STATE(83), - [sym_pointer_expression] = STATE(83), - [sym_logical_expression] = STATE(83), - [sym_bitwise_expression] = STATE(83), - [sym_equality_expression] = STATE(83), - [sym_relational_expression] = STATE(83), - [sym_shift_expression] = STATE(83), - [sym_math_expression] = STATE(83), - [sym_cast_expression] = STATE(83), - [sym_sizeof_expression] = STATE(83), - [sym_subscript_expression] = STATE(83), - [sym_call_expression] = STATE(83), - [sym_field_expression] = STATE(83), - [sym_compound_literal_expression] = STATE(83), - [sym_parenthesized_expression] = STATE(83), - [sym_char_literal] = STATE(83), - [sym_concatenated_string] = STATE(83), - [sym_string_literal] = STATE(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(85), + [713] = { + [sym__expression] = STATE(78), + [sym_conditional_expression] = STATE(78), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(78), + [sym_call_expression] = STATE(78), + [sym_field_expression] = STATE(78), + [sym_compound_literal_expression] = STATE(78), + [sym_parenthesized_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_concatenated_string] = STATE(78), + [sym_string_literal] = STATE(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(151), + [sym_false] = ACTIONS(151), + [sym_null] = ACTIONS(151), + [sym_identifier] = ACTIONS(151), + [sym_comment] = ACTIONS(81), }, - [771] = { - [sym__expression] = STATE(967), - [sym_conditional_expression] = STATE(967), - [sym_assignment_expression] = STATE(967), - [sym_pointer_expression] = STATE(967), - [sym_logical_expression] = STATE(967), - [sym_bitwise_expression] = STATE(967), - [sym_equality_expression] = STATE(967), - [sym_relational_expression] = STATE(967), - [sym_shift_expression] = STATE(967), - [sym_math_expression] = STATE(967), - [sym_cast_expression] = STATE(967), - [sym_sizeof_expression] = STATE(967), - [sym_subscript_expression] = STATE(967), - [sym_call_expression] = STATE(967), - [sym_field_expression] = STATE(967), - [sym_compound_literal_expression] = STATE(967), - [sym_parenthesized_expression] = STATE(967), - [sym_char_literal] = STATE(967), - [sym_concatenated_string] = STATE(967), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2742), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2744), - [sym_false] = ACTIONS(2744), - [sym_null] = ACTIONS(2744), - [sym_identifier] = ACTIONS(2744), - [sym_comment] = ACTIONS(85), + [714] = { + [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(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_identifier] = ACTIONS(2595), + [sym_comment] = ACTIONS(81), }, - [772] = { - [sym__expression] = STATE(127), - [sym_conditional_expression] = STATE(127), - [sym_assignment_expression] = STATE(127), - [sym_pointer_expression] = STATE(127), - [sym_logical_expression] = STATE(127), - [sym_bitwise_expression] = STATE(127), - [sym_equality_expression] = STATE(127), - [sym_relational_expression] = STATE(127), - [sym_shift_expression] = STATE(127), - [sym_math_expression] = STATE(127), - [sym_cast_expression] = STATE(127), - [sym_sizeof_expression] = STATE(127), - [sym_subscript_expression] = STATE(127), - [sym_call_expression] = STATE(127), - [sym_field_expression] = STATE(127), - [sym_compound_literal_expression] = STATE(127), - [sym_parenthesized_expression] = STATE(127), - [sym_char_literal] = STATE(127), - [sym_concatenated_string] = STATE(127), - [sym_string_literal] = STATE(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(247), - [sym_false] = ACTIONS(247), - [sym_null] = ACTIONS(247), - [sym_identifier] = ACTIONS(247), - [sym_comment] = ACTIONS(85), + [715] = { + [sym__expression] = STATE(111), + [sym_conditional_expression] = STATE(111), + [sym_assignment_expression] = STATE(111), + [sym_pointer_expression] = STATE(111), + [sym_logical_expression] = STATE(111), + [sym_bitwise_expression] = STATE(111), + [sym_equality_expression] = STATE(111), + [sym_relational_expression] = STATE(111), + [sym_shift_expression] = STATE(111), + [sym_math_expression] = STATE(111), + [sym_cast_expression] = STATE(111), + [sym_sizeof_expression] = STATE(111), + [sym_subscript_expression] = STATE(111), + [sym_call_expression] = STATE(111), + [sym_field_expression] = STATE(111), + [sym_compound_literal_expression] = STATE(111), + [sym_parenthesized_expression] = STATE(111), + [sym_char_literal] = STATE(111), + [sym_concatenated_string] = STATE(111), + [sym_string_literal] = STATE(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(211), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [sym_null] = ACTIONS(213), + [sym_identifier] = ACTIONS(213), + [sym_comment] = ACTIONS(81), }, - [773] = { - [sym__expression] = STATE(128), - [sym_conditional_expression] = STATE(128), - [sym_assignment_expression] = STATE(128), - [sym_pointer_expression] = STATE(128), - [sym_logical_expression] = STATE(128), - [sym_bitwise_expression] = STATE(128), - [sym_equality_expression] = STATE(128), - [sym_relational_expression] = STATE(128), - [sym_shift_expression] = STATE(128), - [sym_math_expression] = STATE(128), - [sym_cast_expression] = STATE(128), - [sym_sizeof_expression] = STATE(128), - [sym_subscript_expression] = STATE(128), - [sym_call_expression] = STATE(128), - [sym_field_expression] = STATE(128), - [sym_compound_literal_expression] = STATE(128), - [sym_parenthesized_expression] = STATE(128), - [sym_char_literal] = STATE(128), - [sym_concatenated_string] = STATE(128), - [sym_string_literal] = STATE(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(249), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(251), - [sym_false] = ACTIONS(251), - [sym_null] = ACTIONS(251), - [sym_identifier] = ACTIONS(251), - [sym_comment] = ACTIONS(85), + [716] = { + [sym__expression] = STATE(112), + [sym_conditional_expression] = STATE(112), + [sym_assignment_expression] = STATE(112), + [sym_pointer_expression] = STATE(112), + [sym_logical_expression] = STATE(112), + [sym_bitwise_expression] = STATE(112), + [sym_equality_expression] = STATE(112), + [sym_relational_expression] = STATE(112), + [sym_shift_expression] = STATE(112), + [sym_math_expression] = STATE(112), + [sym_cast_expression] = STATE(112), + [sym_sizeof_expression] = STATE(112), + [sym_subscript_expression] = STATE(112), + [sym_call_expression] = STATE(112), + [sym_field_expression] = STATE(112), + [sym_compound_literal_expression] = STATE(112), + [sym_parenthesized_expression] = STATE(112), + [sym_char_literal] = STATE(112), + [sym_concatenated_string] = STATE(112), + [sym_string_literal] = STATE(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(215), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(217), + [sym_false] = ACTIONS(217), + [sym_null] = ACTIONS(217), + [sym_identifier] = ACTIONS(217), + [sym_comment] = ACTIONS(81), }, - [774] = { - [sym__expression] = STATE(129), - [sym_conditional_expression] = STATE(129), - [sym_assignment_expression] = STATE(129), - [sym_pointer_expression] = STATE(129), - [sym_logical_expression] = STATE(129), - [sym_bitwise_expression] = STATE(129), - [sym_equality_expression] = STATE(129), - [sym_relational_expression] = STATE(129), - [sym_shift_expression] = STATE(129), - [sym_math_expression] = STATE(129), - [sym_cast_expression] = STATE(129), - [sym_sizeof_expression] = STATE(129), - [sym_subscript_expression] = STATE(129), - [sym_call_expression] = STATE(129), - [sym_field_expression] = STATE(129), - [sym_compound_literal_expression] = STATE(129), - [sym_parenthesized_expression] = STATE(129), - [sym_char_literal] = STATE(129), - [sym_concatenated_string] = STATE(129), - [sym_string_literal] = STATE(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(253), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(255), - [sym_false] = ACTIONS(255), - [sym_null] = ACTIONS(255), - [sym_identifier] = ACTIONS(255), - [sym_comment] = ACTIONS(85), + [717] = { + [sym__expression] = STATE(113), + [sym_conditional_expression] = STATE(113), + [sym_assignment_expression] = STATE(113), + [sym_pointer_expression] = STATE(113), + [sym_logical_expression] = STATE(113), + [sym_bitwise_expression] = STATE(113), + [sym_equality_expression] = STATE(113), + [sym_relational_expression] = STATE(113), + [sym_shift_expression] = STATE(113), + [sym_math_expression] = STATE(113), + [sym_cast_expression] = STATE(113), + [sym_sizeof_expression] = STATE(113), + [sym_subscript_expression] = STATE(113), + [sym_call_expression] = STATE(113), + [sym_field_expression] = STATE(113), + [sym_compound_literal_expression] = STATE(113), + [sym_parenthesized_expression] = STATE(113), + [sym_char_literal] = STATE(113), + [sym_concatenated_string] = STATE(113), + [sym_string_literal] = STATE(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(219), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(221), + [sym_false] = ACTIONS(221), + [sym_null] = ACTIONS(221), + [sym_identifier] = ACTIONS(221), + [sym_comment] = ACTIONS(81), }, - [775] = { - [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(779), - [anon_sym_LPAREN2] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2750), - [sym_false] = ACTIONS(2750), - [sym_null] = ACTIONS(2750), - [sym_identifier] = ACTIONS(2750), - [sym_comment] = ACTIONS(85), + [718] = { + [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(722), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(2599), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2601), + [sym_false] = ACTIONS(2601), + [sym_null] = ACTIONS(2601), + [sym_identifier] = ACTIONS(2601), + [sym_comment] = ACTIONS(81), }, - [776] = { - [sym_identifier] = ACTIONS(2752), - [sym_comment] = ACTIONS(85), + [719] = { + [sym_identifier] = ACTIONS(2603), + [sym_comment] = ACTIONS(81), }, - [777] = { - [sym_argument_list] = STATE(161), - [aux_sym_initializer_list_repeat1] = STATE(984), - [anon_sym_COMMA] = ACTIONS(2754), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(2758), - [anon_sym_QMARK] = ACTIONS(2760), - [anon_sym_STAR_EQ] = ACTIONS(2762), - [anon_sym_SLASH_EQ] = ACTIONS(2762), - [anon_sym_PERCENT_EQ] = ACTIONS(2762), - [anon_sym_PLUS_EQ] = ACTIONS(2762), - [anon_sym_DASH_EQ] = ACTIONS(2762), - [anon_sym_LT_LT_EQ] = ACTIONS(2762), - [anon_sym_GT_GT_EQ] = ACTIONS(2762), - [anon_sym_AMP_EQ] = ACTIONS(2762), - [anon_sym_CARET_EQ] = ACTIONS(2762), - [anon_sym_PIPE_EQ] = ACTIONS(2762), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_GT] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [720] = { + [sym_argument_list] = STATE(145), + [aux_sym_initializer_list_repeat1] = STATE(931), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(2609), + [anon_sym_QMARK] = ACTIONS(2611), + [anon_sym_STAR_EQ] = ACTIONS(2613), + [anon_sym_SLASH_EQ] = ACTIONS(2613), + [anon_sym_PERCENT_EQ] = ACTIONS(2613), + [anon_sym_PLUS_EQ] = ACTIONS(2613), + [anon_sym_DASH_EQ] = ACTIONS(2613), + [anon_sym_LT_LT_EQ] = ACTIONS(2613), + [anon_sym_GT_GT_EQ] = ACTIONS(2613), + [anon_sym_AMP_EQ] = ACTIONS(2613), + [anon_sym_CARET_EQ] = ACTIONS(2613), + [anon_sym_PIPE_EQ] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2623), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [778] = { - [aux_sym_initializer_list_repeat1] = STATE(984), - [anon_sym_COMMA] = ACTIONS(2754), - [anon_sym_RBRACE] = ACTIONS(2736), - [sym_comment] = ACTIONS(85), + [721] = { + [aux_sym_initializer_list_repeat1] = STATE(931), + [anon_sym_COMMA] = ACTIONS(2605), + [anon_sym_RBRACE] = ACTIONS(2587), + [sym_comment] = ACTIONS(81), }, - [779] = { - [sym_string_literal] = STATE(985), - [aux_sym_concatenated_string_repeat1] = STATE(985), - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_RBRACE] = ACTIONS(271), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_comment] = ACTIONS(85), + [722] = { + [sym_string_literal] = STATE(932), + [aux_sym_concatenated_string_repeat1] = STATE(932), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_RBRACE] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_comment] = ACTIONS(81), }, - [780] = { - [sym_subscript_designator] = STATE(987), - [sym_field_designator] = STATE(987), - [aux_sym_initializer_pair_repeat1] = STATE(987), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_EQ] = ACTIONS(2784), - [anon_sym_DOT] = ACTIONS(2088), - [sym_comment] = ACTIONS(85), + [723] = { + [sym_subscript_designator] = STATE(934), + [sym_field_designator] = STATE(934), + [aux_sym_initializer_pair_repeat1] = STATE(934), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym_DOT] = ACTIONS(1934), + [sym_comment] = ACTIONS(81), }, - [781] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_RBRACE] = ACTIONS(2786), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(2758), - [anon_sym_QMARK] = ACTIONS(2760), - [anon_sym_STAR_EQ] = ACTIONS(2762), - [anon_sym_SLASH_EQ] = ACTIONS(2762), - [anon_sym_PERCENT_EQ] = ACTIONS(2762), - [anon_sym_PLUS_EQ] = ACTIONS(2762), - [anon_sym_DASH_EQ] = ACTIONS(2762), - [anon_sym_LT_LT_EQ] = ACTIONS(2762), - [anon_sym_GT_GT_EQ] = ACTIONS(2762), - [anon_sym_AMP_EQ] = ACTIONS(2762), - [anon_sym_CARET_EQ] = ACTIONS(2762), - [anon_sym_PIPE_EQ] = ACTIONS(2762), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_GT] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [724] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(2637), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(2609), + [anon_sym_QMARK] = ACTIONS(2611), + [anon_sym_STAR_EQ] = ACTIONS(2613), + [anon_sym_SLASH_EQ] = ACTIONS(2613), + [anon_sym_PERCENT_EQ] = ACTIONS(2613), + [anon_sym_PLUS_EQ] = ACTIONS(2613), + [anon_sym_DASH_EQ] = ACTIONS(2613), + [anon_sym_LT_LT_EQ] = ACTIONS(2613), + [anon_sym_GT_GT_EQ] = ACTIONS(2613), + [anon_sym_AMP_EQ] = ACTIONS(2613), + [anon_sym_CARET_EQ] = ACTIONS(2613), + [anon_sym_PIPE_EQ] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2623), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [782] = { - [anon_sym_COMMA] = ACTIONS(2788), - [anon_sym_RPAREN] = ACTIONS(2788), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_extern] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2788), - [anon_sym_static] = ACTIONS(2790), - [anon_sym_auto] = ACTIONS(2790), - [anon_sym_register] = ACTIONS(2790), - [anon_sym_inline] = ACTIONS(2790), - [anon_sym_const] = ACTIONS(2790), - [anon_sym_restrict] = ACTIONS(2790), - [anon_sym_volatile] = ACTIONS(2790), - [anon_sym__Atomic] = ACTIONS(2790), - [anon_sym_COLON] = ACTIONS(2788), - [sym_identifier] = ACTIONS(2790), - [sym_comment] = ACTIONS(85), + [725] = { + [anon_sym_COMMA] = ACTIONS(2639), + [anon_sym_RPAREN] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2641), + [anon_sym_LPAREN2] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2641), + [anon_sym_auto] = ACTIONS(2641), + [anon_sym_register] = ACTIONS(2641), + [anon_sym_inline] = ACTIONS(2641), + [anon_sym_const] = ACTIONS(2641), + [anon_sym_restrict] = ACTIONS(2641), + [anon_sym_volatile] = ACTIONS(2641), + [anon_sym__Atomic] = ACTIONS(2641), + [anon_sym_COLON] = ACTIONS(2639), + [sym_identifier] = ACTIONS(2641), + [sym_comment] = ACTIONS(81), }, - [783] = { - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_RBRACE] = ACTIONS(2792), - [sym_comment] = ACTIONS(85), + [726] = { + [anon_sym_COMMA] = ACTIONS(2643), + [anon_sym_RBRACE] = ACTIONS(2643), + [sym_comment] = ACTIONS(81), }, - [784] = { - [sym_enumerator] = STATE(783), - [anon_sym_RBRACE] = ACTIONS(2794), - [sym_identifier] = ACTIONS(539), - [sym_comment] = ACTIONS(85), + [727] = { + [sym_enumerator] = STATE(726), + [anon_sym_RBRACE] = ACTIONS(2645), + [sym_identifier] = ACTIONS(495), + [sym_comment] = ACTIONS(81), }, - [785] = { - [aux_sym_enumerator_list_repeat1] = STATE(785), - [anon_sym_COMMA] = ACTIONS(2796), - [anon_sym_RBRACE] = ACTIONS(2792), - [sym_comment] = ACTIONS(85), + [728] = { + [aux_sym_enumerator_list_repeat1] = STATE(728), + [anon_sym_COMMA] = ACTIONS(2647), + [anon_sym_RBRACE] = ACTIONS(2643), + [sym_comment] = ACTIONS(81), }, - [786] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2799), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2801), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2801), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2801), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2801), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2801), - [anon_sym_extern] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2799), - [anon_sym_auto] = ACTIONS(2799), - [anon_sym_register] = ACTIONS(2799), - [anon_sym_inline] = ACTIONS(2799), - [anon_sym_const] = ACTIONS(2799), - [anon_sym_restrict] = ACTIONS(2799), - [anon_sym_volatile] = ACTIONS(2799), - [anon_sym__Atomic] = ACTIONS(2799), - [anon_sym_unsigned] = ACTIONS(2799), - [anon_sym_long] = ACTIONS(2799), - [anon_sym_short] = ACTIONS(2799), - [sym_primitive_type] = ACTIONS(2799), - [anon_sym_enum] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_union] = ACTIONS(2799), - [sym_identifier] = ACTIONS(2799), - [sym_comment] = ACTIONS(85), + [729] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2652), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2652), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2652), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2652), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2652), + [anon_sym_extern] = ACTIONS(2650), + [anon_sym_RBRACE] = ACTIONS(2652), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_auto] = ACTIONS(2650), + [anon_sym_register] = ACTIONS(2650), + [anon_sym_inline] = ACTIONS(2650), + [anon_sym_const] = ACTIONS(2650), + [anon_sym_restrict] = ACTIONS(2650), + [anon_sym_volatile] = ACTIONS(2650), + [anon_sym__Atomic] = ACTIONS(2650), + [anon_sym_unsigned] = ACTIONS(2650), + [anon_sym_long] = ACTIONS(2650), + [anon_sym_short] = ACTIONS(2650), + [sym_primitive_type] = ACTIONS(2650), + [anon_sym_enum] = ACTIONS(2650), + [anon_sym_struct] = ACTIONS(2650), + [anon_sym_union] = ACTIONS(2650), + [sym_identifier] = ACTIONS(2650), + [sym_comment] = ACTIONS(81), }, - [787] = { - [sym_preproc_if_in_field_declaration_list] = STATE(990), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(990), - [sym__declaration_specifiers] = STATE(268), - [sym_storage_class_specifier] = STATE(271), - [sym_type_qualifier] = STATE(271), - [sym__type_specifier] = STATE(269), - [sym_sized_type_specifier] = STATE(269), - [sym_enum_specifier] = STATE(269), - [sym_struct_specifier] = STATE(269), - [sym_union_specifier] = STATE(269), - [sym__field_declaration_list_item] = STATE(990), - [sym_field_declaration] = STATE(990), - [sym_macro_type_specifier] = STATE(269), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(990), - [aux_sym__declaration_specifiers_repeat1] = STATE(271), - [aux_sym_sized_type_specifier_repeat1] = STATE(272), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2803), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(551), + [730] = { + [sym_preproc_if_in_field_declaration_list] = STATE(937), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(937), + [sym__declaration_specifiers] = STATE(247), + [sym_storage_class_specifier] = STATE(250), + [sym_type_qualifier] = STATE(250), + [sym__type_specifier] = STATE(248), + [sym_sized_type_specifier] = STATE(248), + [sym_enum_specifier] = STATE(248), + [sym_struct_specifier] = STATE(248), + [sym_union_specifier] = STATE(248), + [sym__field_declaration_list_item] = STATE(937), + [sym_field_declaration] = STATE(937), + [sym_macro_type_specifier] = STATE(248), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(937), + [aux_sym__declaration_specifiers_repeat1] = STATE(250), + [aux_sym_sized_type_specifier_repeat1] = STATE(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2654), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(507), [anon_sym_extern] = ACTIONS(29), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), @@ -34661,49 +31648,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(557), + [anon_sym_unsigned] = ACTIONS(511), + [anon_sym_long] = ACTIONS(511), + [anon_sym_short] = ACTIONS(511), + [sym_primitive_type] = ACTIONS(513), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [788] = { - [sym_preproc_arg] = ACTIONS(2805), - [sym_comment] = ACTIONS(95), + [731] = { + [sym_preproc_arg] = ACTIONS(2656), + [sym_comment] = ACTIONS(91), }, - [789] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2807), - [sym_comment] = ACTIONS(85), + [732] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2658), + [sym_comment] = ACTIONS(81), }, - [790] = { - [sym_preproc_if_in_field_declaration_list] = STATE(994), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(994), - [sym_preproc_else_in_field_declaration_list] = STATE(993), - [sym_preproc_elif_in_field_declaration_list] = STATE(993), - [sym__declaration_specifiers] = STATE(268), - [sym_storage_class_specifier] = STATE(271), - [sym_type_qualifier] = STATE(271), - [sym__type_specifier] = STATE(269), - [sym_sized_type_specifier] = STATE(269), - [sym_enum_specifier] = STATE(269), - [sym_struct_specifier] = STATE(269), - [sym_union_specifier] = STATE(269), - [sym__field_declaration_list_item] = STATE(994), - [sym_field_declaration] = STATE(994), - [sym_macro_type_specifier] = STATE(269), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(994), - [aux_sym__declaration_specifiers_repeat1] = STATE(271), - [aux_sym_sized_type_specifier_repeat1] = STATE(272), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2807), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2118), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2120), + [733] = { + [sym_preproc_if_in_field_declaration_list] = STATE(941), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(941), + [sym_preproc_else_in_field_declaration_list] = STATE(940), + [sym_preproc_elif_in_field_declaration_list] = STATE(940), + [sym__declaration_specifiers] = STATE(247), + [sym_storage_class_specifier] = STATE(250), + [sym_type_qualifier] = STATE(250), + [sym__type_specifier] = STATE(248), + [sym_sized_type_specifier] = STATE(248), + [sym_enum_specifier] = STATE(248), + [sym_struct_specifier] = STATE(248), + [sym_union_specifier] = STATE(248), + [sym__field_declaration_list_item] = STATE(941), + [sym_field_declaration] = STATE(941), + [sym_macro_type_specifier] = STATE(248), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(941), + [aux_sym__declaration_specifiers_repeat1] = STATE(250), + [aux_sym_sized_type_specifier_repeat1] = STATE(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2658), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1964), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1966), [anon_sym_extern] = ACTIONS(29), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), @@ -34713,72 +31700,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(557), + [anon_sym_unsigned] = ACTIONS(511), + [anon_sym_long] = ACTIONS(511), + [anon_sym_short] = ACTIONS(511), + [sym_primitive_type] = ACTIONS(513), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [791] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2809), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2811), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2811), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2811), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2811), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2811), - [anon_sym_extern] = ACTIONS(2809), - [anon_sym_RBRACE] = ACTIONS(2811), - [anon_sym_static] = ACTIONS(2809), - [anon_sym_auto] = ACTIONS(2809), - [anon_sym_register] = ACTIONS(2809), - [anon_sym_inline] = ACTIONS(2809), - [anon_sym_const] = ACTIONS(2809), - [anon_sym_restrict] = ACTIONS(2809), - [anon_sym_volatile] = ACTIONS(2809), - [anon_sym__Atomic] = ACTIONS(2809), - [anon_sym_unsigned] = ACTIONS(2809), - [anon_sym_long] = ACTIONS(2809), - [anon_sym_short] = ACTIONS(2809), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(2809), - [anon_sym_struct] = ACTIONS(2809), - [anon_sym_union] = ACTIONS(2809), - [sym_identifier] = ACTIONS(2809), - [sym_comment] = ACTIONS(85), + [734] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2660), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2662), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2662), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2662), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2662), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2662), + [anon_sym_extern] = ACTIONS(2660), + [anon_sym_RBRACE] = ACTIONS(2662), + [anon_sym_static] = ACTIONS(2660), + [anon_sym_auto] = ACTIONS(2660), + [anon_sym_register] = ACTIONS(2660), + [anon_sym_inline] = ACTIONS(2660), + [anon_sym_const] = ACTIONS(2660), + [anon_sym_restrict] = ACTIONS(2660), + [anon_sym_volatile] = ACTIONS(2660), + [anon_sym__Atomic] = ACTIONS(2660), + [anon_sym_unsigned] = ACTIONS(2660), + [anon_sym_long] = ACTIONS(2660), + [anon_sym_short] = ACTIONS(2660), + [sym_primitive_type] = ACTIONS(2660), + [anon_sym_enum] = ACTIONS(2660), + [anon_sym_struct] = ACTIONS(2660), + [anon_sym_union] = ACTIONS(2660), + [sym_identifier] = ACTIONS(2660), + [sym_comment] = ACTIONS(81), }, - [792] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2813), - [sym_comment] = ACTIONS(85), + [735] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2664), + [sym_comment] = ACTIONS(81), }, - [793] = { - [sym_preproc_if_in_field_declaration_list] = STATE(994), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(994), - [sym_preproc_else_in_field_declaration_list] = STATE(996), - [sym_preproc_elif_in_field_declaration_list] = STATE(996), - [sym__declaration_specifiers] = STATE(268), - [sym_storage_class_specifier] = STATE(271), - [sym_type_qualifier] = STATE(271), - [sym__type_specifier] = STATE(269), - [sym_sized_type_specifier] = STATE(269), - [sym_enum_specifier] = STATE(269), - [sym_struct_specifier] = STATE(269), - [sym_union_specifier] = STATE(269), - [sym__field_declaration_list_item] = STATE(994), - [sym_field_declaration] = STATE(994), - [sym_macro_type_specifier] = STATE(269), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(994), - [aux_sym__declaration_specifiers_repeat1] = STATE(271), - [aux_sym_sized_type_specifier_repeat1] = STATE(272), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2813), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2118), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2120), + [736] = { + [sym_preproc_if_in_field_declaration_list] = STATE(941), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(941), + [sym_preproc_else_in_field_declaration_list] = STATE(943), + [sym_preproc_elif_in_field_declaration_list] = STATE(943), + [sym__declaration_specifiers] = STATE(247), + [sym_storage_class_specifier] = STATE(250), + [sym_type_qualifier] = STATE(250), + [sym__type_specifier] = STATE(248), + [sym_sized_type_specifier] = STATE(248), + [sym_enum_specifier] = STATE(248), + [sym_struct_specifier] = STATE(248), + [sym_union_specifier] = STATE(248), + [sym__field_declaration_list_item] = STATE(941), + [sym_field_declaration] = STATE(941), + [sym_macro_type_specifier] = STATE(248), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(941), + [aux_sym__declaration_specifiers_repeat1] = STATE(250), + [aux_sym_sized_type_specifier_repeat1] = STATE(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2664), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1964), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1966), [anon_sym_extern] = ACTIONS(29), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), @@ -34788,274 +31775,274 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(557), + [anon_sym_unsigned] = ACTIONS(511), + [anon_sym_long] = ACTIONS(511), + [anon_sym_short] = ACTIONS(511), + [sym_primitive_type] = ACTIONS(513), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [794] = { - [sym__field_declarator] = STATE(796), - [sym_pointer_field_declarator] = STATE(796), - [sym_function_field_declarator] = STATE(796), - [sym_array_field_declarator] = STATE(796), - [sym_type_qualifier] = STATE(997), - [aux_sym_type_definition_repeat1] = STATE(997), - [anon_sym_LPAREN2] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2128), + [737] = { + [sym__field_declarator] = STATE(739), + [sym_pointer_field_declarator] = STATE(739), + [sym_function_field_declarator] = STATE(739), + [sym_array_field_declarator] = STATE(739), + [sym_type_qualifier] = STATE(944), + [aux_sym_type_definition_repeat1] = STATE(944), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1974), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(2130), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(1976), + [sym_comment] = ACTIONS(81), }, - [795] = { - [sym_parameter_list] = STATE(803), - [anon_sym_RPAREN] = ACTIONS(2815), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(2142), - [sym_comment] = ACTIONS(85), + [738] = { + [sym_parameter_list] = STATE(746), + [anon_sym_RPAREN] = ACTIONS(2666), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1988), + [sym_comment] = ACTIONS(81), }, - [796] = { - [sym_parameter_list] = STATE(803), - [anon_sym_COMMA] = ACTIONS(2817), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_SEMI] = ACTIONS(2817), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_COLON] = ACTIONS(2817), - [sym_comment] = ACTIONS(85), + [739] = { + [sym_parameter_list] = STATE(746), + [anon_sym_COMMA] = ACTIONS(2668), + [anon_sym_RPAREN] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2668), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_COLON] = ACTIONS(2668), + [sym_comment] = ACTIONS(81), }, - [797] = { - [sym__field_declarator] = STATE(999), - [sym_pointer_field_declarator] = STATE(999), - [sym_function_field_declarator] = STATE(999), - [sym_array_field_declarator] = STATE(999), - [sym_type_qualifier] = STATE(599), - [aux_sym_type_definition_repeat1] = STATE(599), - [anon_sym_LPAREN2] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), + [740] = { + [sym__field_declarator] = STATE(946), + [sym_pointer_field_declarator] = STATE(946), + [sym_function_field_declarator] = STATE(946), + [sym_array_field_declarator] = STATE(946), + [sym_type_qualifier] = STATE(537), + [aux_sym_type_definition_repeat1] = STATE(537), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(2130), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(1976), + [sym_comment] = ACTIONS(81), }, - [798] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [741] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [799] = { - [sym__field_declarator] = STATE(1001), - [sym_pointer_field_declarator] = STATE(1001), - [sym_function_field_declarator] = STATE(1001), - [sym_array_field_declarator] = STATE(1001), - [anon_sym_LPAREN2] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1424), - [sym_comment] = ACTIONS(85), + [742] = { + [sym__field_declarator] = STATE(948), + [sym_pointer_field_declarator] = STATE(948), + [sym_function_field_declarator] = STATE(948), + [sym_array_field_declarator] = STATE(948), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1314), + [sym_comment] = ACTIONS(81), }, - [800] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2823), - [anon_sym_extern] = ACTIONS(2821), - [anon_sym_RBRACE] = ACTIONS(2823), - [anon_sym_static] = ACTIONS(2821), - [anon_sym_auto] = ACTIONS(2821), - [anon_sym_register] = ACTIONS(2821), - [anon_sym_inline] = ACTIONS(2821), - [anon_sym_const] = ACTIONS(2821), - [anon_sym_restrict] = ACTIONS(2821), - [anon_sym_volatile] = ACTIONS(2821), - [anon_sym__Atomic] = ACTIONS(2821), - [anon_sym_unsigned] = ACTIONS(2821), - [anon_sym_long] = ACTIONS(2821), - [anon_sym_short] = ACTIONS(2821), - [sym_primitive_type] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2821), - [anon_sym_struct] = ACTIONS(2821), - [anon_sym_union] = ACTIONS(2821), - [sym_identifier] = ACTIONS(2821), - [sym_comment] = ACTIONS(85), + [743] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2674), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2674), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2674), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2674), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2674), + [anon_sym_extern] = ACTIONS(2672), + [anon_sym_RBRACE] = ACTIONS(2674), + [anon_sym_static] = ACTIONS(2672), + [anon_sym_auto] = ACTIONS(2672), + [anon_sym_register] = ACTIONS(2672), + [anon_sym_inline] = ACTIONS(2672), + [anon_sym_const] = ACTIONS(2672), + [anon_sym_restrict] = ACTIONS(2672), + [anon_sym_volatile] = ACTIONS(2672), + [anon_sym__Atomic] = ACTIONS(2672), + [anon_sym_unsigned] = ACTIONS(2672), + [anon_sym_long] = ACTIONS(2672), + [anon_sym_short] = ACTIONS(2672), + [sym_primitive_type] = ACTIONS(2672), + [anon_sym_enum] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_union] = ACTIONS(2672), + [sym_identifier] = ACTIONS(2672), + [sym_comment] = ACTIONS(81), }, - [801] = { - [sym_type_qualifier] = STATE(1005), - [sym__expression] = STATE(1004), - [sym_conditional_expression] = STATE(1004), - [sym_assignment_expression] = STATE(1004), - [sym_pointer_expression] = STATE(1004), - [sym_logical_expression] = STATE(1004), - [sym_bitwise_expression] = STATE(1004), - [sym_equality_expression] = STATE(1004), - [sym_relational_expression] = STATE(1004), - [sym_shift_expression] = STATE(1004), - [sym_math_expression] = STATE(1004), - [sym_cast_expression] = STATE(1004), - [sym_sizeof_expression] = STATE(1004), - [sym_subscript_expression] = STATE(1004), - [sym_call_expression] = STATE(1004), - [sym_field_expression] = STATE(1004), - [sym_compound_literal_expression] = STATE(1004), - [sym_parenthesized_expression] = STATE(1004), - [sym_char_literal] = STATE(1004), - [sym_concatenated_string] = STATE(1004), - [sym_string_literal] = STATE(369), - [aux_sym_type_definition_repeat1] = STATE(1005), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(2825), - [anon_sym_RBRACK] = ACTIONS(2827), + [744] = { + [sym_type_qualifier] = STATE(952), + [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(324), + [aux_sym_type_definition_repeat1] = STATE(952), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(2676), + [anon_sym_RBRACK] = ACTIONS(2678), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(2829), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2831), - [sym_false] = ACTIONS(2831), - [sym_null] = ACTIONS(2831), - [sym_identifier] = ACTIONS(2831), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(2680), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2682), + [sym_false] = ACTIONS(2682), + [sym_null] = ACTIONS(2682), + [sym_identifier] = ACTIONS(2682), + [sym_comment] = ACTIONS(81), }, - [802] = { - [sym__expression] = STATE(1006), - [sym_conditional_expression] = STATE(1006), - [sym_assignment_expression] = STATE(1006), - [sym_pointer_expression] = STATE(1006), - [sym_logical_expression] = STATE(1006), - [sym_bitwise_expression] = STATE(1006), - [sym_equality_expression] = STATE(1006), - [sym_relational_expression] = STATE(1006), - [sym_shift_expression] = STATE(1006), - [sym_math_expression] = STATE(1006), - [sym_cast_expression] = STATE(1006), - [sym_sizeof_expression] = STATE(1006), - [sym_subscript_expression] = STATE(1006), - [sym_call_expression] = STATE(1006), - [sym_field_expression] = STATE(1006), - [sym_compound_literal_expression] = STATE(1006), - [sym_parenthesized_expression] = STATE(1006), - [sym_char_literal] = STATE(1006), - [sym_concatenated_string] = STATE(1006), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2833), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2835), - [sym_false] = ACTIONS(2835), - [sym_null] = ACTIONS(2835), - [sym_identifier] = ACTIONS(2835), - [sym_comment] = ACTIONS(85), + [745] = { + [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(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2684), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2686), + [sym_false] = ACTIONS(2686), + [sym_null] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2686), + [sym_comment] = ACTIONS(81), }, - [803] = { - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_RPAREN] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_LPAREN2] = ACTIONS(2837), - [anon_sym_LBRACK] = ACTIONS(2837), - [anon_sym_COLON] = ACTIONS(2837), - [sym_comment] = ACTIONS(85), + [746] = { + [anon_sym_COMMA] = ACTIONS(2688), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_LPAREN2] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_COLON] = ACTIONS(2688), + [sym_comment] = ACTIONS(81), }, - [804] = { - [aux_sym_field_declaration_repeat1] = STATE(1008), - [anon_sym_COMMA] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_COLON] = ACTIONS(2839), - [sym_comment] = ACTIONS(85), + [747] = { + [aux_sym_field_declaration_repeat1] = STATE(955), + [anon_sym_COMMA] = ACTIONS(1984), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_COLON] = ACTIONS(2690), + [sym_comment] = ACTIONS(81), }, - [805] = { - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_LPAREN2] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(965), - [anon_sym_restrict] = ACTIONS(965), - [anon_sym_volatile] = ACTIONS(965), - [anon_sym__Atomic] = ACTIONS(965), - [anon_sym_COLON] = ACTIONS(1657), - [sym_identifier] = ACTIONS(968), - [sym_comment] = ACTIONS(85), + [748] = { + [sym_storage_class_specifier] = STATE(748), + [sym_type_qualifier] = STATE(748), + [aux_sym__declaration_specifiers_repeat1] = STATE(748), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LPAREN2] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_static] = ACTIONS(878), + [anon_sym_auto] = ACTIONS(878), + [anon_sym_register] = ACTIONS(878), + [anon_sym_inline] = ACTIONS(878), + [anon_sym_const] = ACTIONS(881), + [anon_sym_restrict] = ACTIONS(881), + [anon_sym_volatile] = ACTIONS(881), + [anon_sym__Atomic] = ACTIONS(881), + [anon_sym_COLON] = ACTIONS(1495), + [sym_identifier] = ACTIONS(884), + [sym_comment] = ACTIONS(81), }, - [806] = { - [sym_storage_class_specifier] = STATE(805), - [sym_type_qualifier] = STATE(805), - [aux_sym__declaration_specifiers_repeat1] = STATE(805), - [anon_sym_SEMI] = ACTIONS(1744), + [749] = { + [sym_storage_class_specifier] = STATE(748), + [sym_type_qualifier] = STATE(748), + [aux_sym__declaration_specifiers_repeat1] = STATE(748), + [anon_sym_SEMI] = ACTIONS(1616), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -35064,120 +32051,365 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_COLON] = ACTIONS(1744), - [sym_identifier] = ACTIONS(1746), - [sym_comment] = ACTIONS(85), + [anon_sym_COLON] = ACTIONS(1616), + [sym_identifier] = ACTIONS(1618), + [sym_comment] = ACTIONS(81), }, - [807] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_else] = ACTIONS(2841), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [sym_null] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1454), - [sym_comment] = ACTIONS(85), + [750] = { + [ts_builtin_sym_end] = ACTIONS(1336), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(2692), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_null] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1338), + [sym_comment] = ACTIONS(81), }, - [808] = { - [sym_declaration] = STATE(551), - [sym_type_definition] = STATE(551), - [sym__declaration_specifiers] = STATE(306), - [sym_compound_statement] = STATE(551), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [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(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), + [751] = { + [sym__expression] = STATE(958), + [sym_conditional_expression] = STATE(958), + [sym_assignment_expression] = STATE(958), + [sym_pointer_expression] = STATE(958), + [sym_logical_expression] = STATE(958), + [sym_bitwise_expression] = STATE(958), + [sym_equality_expression] = STATE(958), + [sym_relational_expression] = STATE(958), + [sym_shift_expression] = STATE(958), + [sym_math_expression] = STATE(958), + [sym_cast_expression] = STATE(958), + [sym_sizeof_expression] = STATE(958), + [sym_subscript_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_field_expression] = STATE(958), + [sym_compound_literal_expression] = STATE(958), + [sym_parenthesized_expression] = STATE(958), + [sym_char_literal] = STATE(958), + [sym_concatenated_string] = STATE(958), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2696), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2698), + [sym_false] = ACTIONS(2698), + [sym_null] = ACTIONS(2698), + [sym_identifier] = ACTIONS(2698), + [sym_comment] = ACTIONS(81), + }, + [752] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [753] = { + [ts_builtin_sym_end] = ACTIONS(2702), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2704), + [sym_preproc_directive] = ACTIONS(2704), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_typedef] = ACTIONS(2704), + [anon_sym_extern] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_LPAREN2] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_auto] = ACTIONS(2704), + [anon_sym_register] = ACTIONS(2704), + [anon_sym_inline] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_restrict] = ACTIONS(2704), + [anon_sym_volatile] = ACTIONS(2704), + [anon_sym__Atomic] = ACTIONS(2704), + [anon_sym_unsigned] = ACTIONS(2704), + [anon_sym_long] = ACTIONS(2704), + [anon_sym_short] = ACTIONS(2704), + [sym_primitive_type] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_switch] = ACTIONS(2704), + [anon_sym_case] = ACTIONS(2704), + [anon_sym_default] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_do] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_goto] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_sizeof] = ACTIONS(2704), + [sym_number_literal] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_null] = ACTIONS(2704), + [sym_identifier] = ACTIONS(2704), + [sym_comment] = ACTIONS(81), + }, + [754] = { + [sym_compound_statement] = STATE(964), + [sym_labeled_statement] = STATE(964), + [sym_expression_statement] = STATE(964), + [sym_if_statement] = STATE(964), + [sym_switch_statement] = STATE(964), + [sym_while_statement] = STATE(964), + [sym_do_statement] = STATE(964), + [sym_for_statement] = STATE(964), + [sym_return_statement] = STATE(964), + [sym_break_statement] = STATE(964), + [sym_continue_statement] = STATE(964), + [sym_goto_statement] = STATE(964), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(2712), + [sym_comment] = ACTIONS(81), + }, + [755] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_COLON] = ACTIONS(2714), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_LT_LT_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_AMP_EQ] = ACTIONS(1563), + [anon_sym_CARET_EQ] = ACTIONS(1563), + [anon_sym_PIPE_EQ] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [756] = { + [sym_declaration] = STATE(970), + [sym_type_definition] = STATE(970), + [sym__declaration_specifiers] = STATE(273), + [sym_compound_statement] = STATE(970), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym_labeled_statement] = STATE(970), + [sym_expression_statement] = STATE(970), + [sym_if_statement] = STATE(970), + [sym_switch_statement] = STATE(970), + [sym_while_statement] = STATE(970), + [sym_do_statement] = STATE(970), + [sym_for_statement] = STATE(970), + [sym_return_statement] = STATE(970), + [sym_break_statement] = STATE(970), + [sym_continue_statement] = STATE(970), + [sym_goto_statement] = STATE(970), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [aux_sym_case_statement_repeat1] = STATE(970), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2716), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -35188,575 +32420,142 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(589), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(2187), - [sym_comment] = ACTIONS(85), - }, - [809] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(1450), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), - }, - [810] = { - [sym__expression] = STATE(1011), - [sym_conditional_expression] = STATE(1011), - [sym_assignment_expression] = STATE(1011), - [sym_pointer_expression] = STATE(1011), - [sym_logical_expression] = STATE(1011), - [sym_bitwise_expression] = STATE(1011), - [sym_equality_expression] = STATE(1011), - [sym_relational_expression] = STATE(1011), - [sym_shift_expression] = STATE(1011), - [sym_math_expression] = STATE(1011), - [sym_cast_expression] = STATE(1011), - [sym_sizeof_expression] = STATE(1011), - [sym_subscript_expression] = STATE(1011), - [sym_call_expression] = STATE(1011), - [sym_field_expression] = STATE(1011), - [sym_compound_literal_expression] = STATE(1011), - [sym_parenthesized_expression] = STATE(1011), - [sym_char_literal] = STATE(1011), - [sym_concatenated_string] = STATE(1011), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(2843), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2845), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2847), - [sym_false] = ACTIONS(2847), - [sym_null] = ACTIONS(2847), - [sym_identifier] = ACTIONS(2847), - [sym_comment] = ACTIONS(85), - }, - [811] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(2849), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [812] = { - [ts_builtin_sym_end] = ACTIONS(2851), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2853), - [sym_preproc_directive] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_typedef] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_auto] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(2853), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_goto] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_sizeof] = ACTIONS(2853), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2851), - [anon_sym_DQUOTE] = ACTIONS(2851), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [sym_null] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2853), - [sym_comment] = ACTIONS(85), - }, - [813] = { - [sym__expression] = STATE(518), - [sym_conditional_expression] = STATE(518), - [sym_assignment_expression] = STATE(518), - [sym_pointer_expression] = STATE(518), - [sym_logical_expression] = STATE(518), - [sym_bitwise_expression] = STATE(518), - [sym_equality_expression] = STATE(518), - [sym_relational_expression] = STATE(518), - [sym_shift_expression] = STATE(518), - [sym_math_expression] = STATE(518), - [sym_cast_expression] = STATE(518), - [sym_sizeof_expression] = STATE(518), - [sym_subscript_expression] = STATE(518), - [sym_call_expression] = STATE(518), - [sym_field_expression] = STATE(518), - [sym_compound_literal_expression] = STATE(518), - [sym_parenthesized_expression] = STATE(518), - [sym_initializer_list] = STATE(519), - [sym_char_literal] = STATE(518), - [sym_concatenated_string] = STATE(518), - [sym_string_literal] = STATE(102), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_EQ] = ACTIONS(2249), - [anon_sym_COLON] = ACTIONS(2245), - [anon_sym_QMARK] = ACTIONS(2245), - [anon_sym_STAR_EQ] = ACTIONS(2245), - [anon_sym_SLASH_EQ] = ACTIONS(2245), - [anon_sym_PERCENT_EQ] = ACTIONS(2245), - [anon_sym_PLUS_EQ] = ACTIONS(2245), - [anon_sym_DASH_EQ] = ACTIONS(2245), - [anon_sym_LT_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_GT_EQ] = ACTIONS(2245), - [anon_sym_AMP_EQ] = ACTIONS(2245), - [anon_sym_CARET_EQ] = ACTIONS(2245), - [anon_sym_PIPE_EQ] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2245), - [anon_sym_AMP_AMP] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_EQ_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_GT] = ACTIONS(2249), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_GT_GT] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DASH_GT] = ACTIONS(2245), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1387), - [sym_comment] = ACTIONS(85), - }, - [814] = { - [sym__expression] = STATE(1013), - [sym_conditional_expression] = STATE(1013), - [sym_assignment_expression] = STATE(1013), - [sym_pointer_expression] = STATE(1013), - [sym_logical_expression] = STATE(1013), - [sym_bitwise_expression] = STATE(1013), - [sym_equality_expression] = STATE(1013), - [sym_relational_expression] = STATE(1013), - [sym_shift_expression] = STATE(1013), - [sym_math_expression] = STATE(1013), - [sym_cast_expression] = STATE(1013), - [sym_sizeof_expression] = STATE(1013), - [sym_subscript_expression] = STATE(1013), - [sym_call_expression] = STATE(1013), - [sym_field_expression] = STATE(1013), - [sym_compound_literal_expression] = STATE(1013), - [sym_parenthesized_expression] = STATE(1013), - [sym_char_literal] = STATE(1013), - [sym_concatenated_string] = STATE(1013), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(2859), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2861), - [sym_false] = ACTIONS(2861), - [sym_null] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2861), - [sym_comment] = ACTIONS(85), - }, - [815] = { - [sym_compound_statement] = STATE(1014), - [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(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_case] = ACTIONS(2720), + [anon_sym_default] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1528), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(2726), + [sym_comment] = ACTIONS(81), }, - [816] = { - [sym_compound_statement] = STATE(286), - [sym_labeled_statement] = STATE(286), - [sym_expression_statement] = STATE(286), - [sym_if_statement] = STATE(286), - [sym_switch_statement] = STATE(286), - [sym_case_statement] = STATE(286), - [sym_while_statement] = STATE(286), - [sym_do_statement] = STATE(286), - [sym_for_statement] = STATE(286), - [sym_return_statement] = STATE(286), - [sym_break_statement] = STATE(286), - [sym_continue_statement] = STATE(286), - [sym_goto_statement] = STATE(286), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [757] = { + [sym_compound_statement] = STATE(264), + [sym_labeled_statement] = STATE(264), + [sym_expression_statement] = STATE(264), + [sym_if_statement] = STATE(264), + [sym_switch_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_do_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_return_statement] = STATE(264), + [sym_break_statement] = STATE(264), + [sym_continue_statement] = STATE(264), + [sym_goto_statement] = STATE(264), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1528), - [sym_comment] = ACTIONS(85), - }, - [817] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(2863), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(81), }, - [818] = { - [sym_declaration] = STATE(305), - [sym_type_definition] = STATE(305), - [sym__declaration_specifiers] = STATE(306), - [sym_compound_statement] = STATE(305), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_labeled_statement] = STATE(305), - [sym_expression_statement] = STATE(305), - [sym_if_statement] = STATE(305), - [sym_switch_statement] = STATE(305), - [sym_case_statement] = STATE(305), - [sym_while_statement] = STATE(305), - [sym_do_statement] = STATE(305), - [sym_for_statement] = STATE(305), - [sym_return_statement] = STATE(305), - [sym_break_statement] = STATE(305), - [sym_continue_statement] = STATE(305), - [sym_goto_statement] = STATE(305), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), + [758] = { + [sym_declaration] = STATE(971), + [sym__declaration_specifiers] = STATE(273), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym__expression] = STATE(972), + [sym_conditional_expression] = STATE(972), + [sym_assignment_expression] = STATE(972), + [sym_pointer_expression] = STATE(972), + [sym_logical_expression] = STATE(972), + [sym_bitwise_expression] = STATE(972), + [sym_equality_expression] = STATE(972), + [sym_relational_expression] = STATE(972), + [sym_shift_expression] = STATE(972), + [sym_math_expression] = STATE(972), + [sym_cast_expression] = STATE(972), + [sym_sizeof_expression] = STATE(972), + [sym_subscript_expression] = STATE(972), + [sym_call_expression] = STATE(972), + [sym_field_expression] = STATE(972), + [sym_compound_literal_expression] = STATE(972), + [sym_parenthesized_expression] = STATE(972), + [sym_char_literal] = STATE(972), + [sym_concatenated_string] = STATE(972), + [sym_string_literal] = STATE(107), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(2728), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -35765,145 +32564,387 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2730), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2732), + [sym_false] = ACTIONS(2732), + [sym_null] = ACTIONS(2732), + [sym_identifier] = ACTIONS(559), + [sym_comment] = ACTIONS(81), + }, + [759] = { + [sym_compound_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(2865), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(81), }, - [819] = { - [sym_compound_statement] = STATE(307), - [sym_labeled_statement] = STATE(307), - [sym_expression_statement] = STATE(307), - [sym_if_statement] = STATE(307), - [sym_switch_statement] = STATE(307), - [sym_case_statement] = STATE(307), - [sym_while_statement] = STATE(307), - [sym_do_statement] = STATE(307), - [sym_for_statement] = STATE(307), - [sym_return_statement] = STATE(307), - [sym_break_statement] = STATE(307), - [sym_continue_statement] = STATE(307), - [sym_goto_statement] = STATE(307), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [760] = { + [ts_builtin_sym_end] = ACTIONS(2734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2736), + [sym_preproc_directive] = ACTIONS(2736), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_typedef] = ACTIONS(2736), + [anon_sym_extern] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_auto] = ACTIONS(2736), + [anon_sym_register] = ACTIONS(2736), + [anon_sym_inline] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_restrict] = ACTIONS(2736), + [anon_sym_volatile] = ACTIONS(2736), + [anon_sym__Atomic] = ACTIONS(2736), + [anon_sym_unsigned] = ACTIONS(2736), + [anon_sym_long] = ACTIONS(2736), + [anon_sym_short] = ACTIONS(2736), + [sym_primitive_type] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_else] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2736), + [anon_sym_case] = ACTIONS(2736), + [anon_sym_default] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_do] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_goto] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2734), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_sizeof] = ACTIONS(2736), + [sym_number_literal] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE] = ACTIONS(2734), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_null] = ACTIONS(2736), + [sym_identifier] = ACTIONS(2736), + [sym_comment] = ACTIONS(81), + }, + [761] = { + [sym_compound_statement] = STATE(761), + [sym_labeled_statement] = STATE(761), + [sym_expression_statement] = STATE(761), + [sym_if_statement] = STATE(761), + [sym_switch_statement] = STATE(761), + [sym_case_statement] = STATE(761), + [sym_while_statement] = STATE(761), + [sym_do_statement] = STATE(761), + [sym_for_statement] = STATE(761), + [sym_return_statement] = STATE(761), + [sym_break_statement] = STATE(761), + [sym_continue_statement] = STATE(761), + [sym_goto_statement] = STATE(761), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(761), + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_RBRACE] = ACTIONS(2744), + [anon_sym_LPAREN2] = ACTIONS(2746), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2752), + [anon_sym_switch] = ACTIONS(2755), + [anon_sym_case] = ACTIONS(2758), + [anon_sym_default] = ACTIONS(2761), + [anon_sym_while] = ACTIONS(2764), + [anon_sym_do] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2770), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2776), + [anon_sym_continue] = ACTIONS(2779), + [anon_sym_goto] = ACTIONS(2782), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2788), + [anon_sym_PLUS] = ACTIONS(2791), + [anon_sym_DASH] = ACTIONS(2791), + [anon_sym_DASH_DASH] = ACTIONS(2794), + [anon_sym_PLUS_PLUS] = ACTIONS(2794), + [anon_sym_sizeof] = ACTIONS(2797), + [sym_number_literal] = ACTIONS(2800), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2806), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_null] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2812), + [sym_comment] = ACTIONS(81), + }, + [762] = { + [sym_compound_statement] = STATE(973), + [sym_labeled_statement] = STATE(973), + [sym_expression_statement] = STATE(973), + [sym_if_statement] = STATE(973), + [sym_switch_statement] = STATE(973), + [sym_while_statement] = STATE(973), + [sym_do_statement] = STATE(973), + [sym_for_statement] = STATE(973), + [sym_return_statement] = STATE(973), + [sym_break_statement] = STATE(973), + [sym_continue_statement] = STATE(973), + [sym_goto_statement] = STATE(973), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1528), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1370), + [sym_comment] = ACTIONS(81), }, - [820] = { - [sym_declaration] = STATE(1017), - [sym__declaration_specifiers] = STATE(306), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym__expression] = STATE(1018), - [sym_conditional_expression] = STATE(1018), - [sym_assignment_expression] = STATE(1018), - [sym_pointer_expression] = STATE(1018), - [sym_logical_expression] = STATE(1018), - [sym_bitwise_expression] = STATE(1018), - [sym_equality_expression] = STATE(1018), - [sym_relational_expression] = STATE(1018), - [sym_shift_expression] = STATE(1018), - [sym_math_expression] = STATE(1018), - [sym_cast_expression] = STATE(1018), - [sym_sizeof_expression] = STATE(1018), - [sym_subscript_expression] = STATE(1018), - [sym_call_expression] = STATE(1018), - [sym_field_expression] = STATE(1018), - [sym_compound_literal_expression] = STATE(1018), - [sym_parenthesized_expression] = STATE(1018), - [sym_char_literal] = STATE(1018), - [sym_concatenated_string] = STATE(1018), - [sym_string_literal] = STATE(123), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(2867), + [763] = { + [sym_compound_statement] = STATE(264), + [sym_labeled_statement] = STATE(264), + [sym_expression_statement] = STATE(264), + [sym_if_statement] = STATE(264), + [sym_switch_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_do_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_return_statement] = STATE(264), + [sym_break_statement] = STATE(264), + [sym_continue_statement] = STATE(264), + [sym_goto_statement] = STATE(264), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1370), + [sym_comment] = ACTIONS(81), + }, + [764] = { + [sym_declaration] = STATE(974), + [sym__declaration_specifiers] = STATE(273), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym__expression] = STATE(975), + [sym_conditional_expression] = STATE(975), + [sym_assignment_expression] = STATE(975), + [sym_pointer_expression] = STATE(975), + [sym_logical_expression] = STATE(975), + [sym_bitwise_expression] = STATE(975), + [sym_equality_expression] = STATE(975), + [sym_relational_expression] = STATE(975), + [sym_shift_expression] = STATE(975), + [sym_math_expression] = STATE(975), + [sym_cast_expression] = STATE(975), + [sym_sizeof_expression] = STATE(975), + [sym_subscript_expression] = STATE(975), + [sym_call_expression] = STATE(975), + [sym_field_expression] = STATE(975), + [sym_compound_literal_expression] = STATE(975), + [sym_parenthesized_expression] = STATE(975), + [sym_char_literal] = STATE(975), + [sym_concatenated_string] = STATE(975), + [sym_string_literal] = STATE(107), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(2815), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -35912,1986 +32953,2459 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2869), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2871), - [sym_false] = ACTIONS(2871), - [sym_null] = ACTIONS(2871), - [sym_identifier] = ACTIONS(651), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2819), + [sym_false] = ACTIONS(2819), + [sym_null] = ACTIONS(2819), + [sym_identifier] = ACTIONS(559), + [sym_comment] = ACTIONS(81), }, - [821] = { - [sym_compound_statement] = STATE(343), - [sym_labeled_statement] = STATE(343), - [sym_expression_statement] = STATE(343), - [sym_if_statement] = STATE(343), - [sym_switch_statement] = STATE(343), - [sym_case_statement] = STATE(343), - [sym_while_statement] = STATE(343), - [sym_do_statement] = STATE(343), - [sym_for_statement] = STATE(343), - [sym_return_statement] = STATE(343), - [sym_break_statement] = STATE(343), - [sym_continue_statement] = STATE(343), - [sym_goto_statement] = STATE(343), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [765] = { + [sym_compound_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1528), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1370), + [sym_comment] = ACTIONS(81), }, - [822] = { - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_case_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [sym_do_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [766] = { + [sym_compound_statement] = STATE(753), + [sym_labeled_statement] = STATE(753), + [sym_expression_statement] = STATE(753), + [sym_if_statement] = STATE(753), + [sym_switch_statement] = STATE(753), + [sym_while_statement] = STATE(753), + [sym_do_statement] = STATE(753), + [sym_for_statement] = STATE(753), + [sym_return_statement] = STATE(753), + [sym_break_statement] = STATE(753), + [sym_continue_statement] = STATE(753), + [sym_goto_statement] = STATE(753), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(201), - [anon_sym_switch] = ACTIONS(203), - [anon_sym_case] = ACTIONS(205), - [anon_sym_default] = ACTIONS(207), - [anon_sym_while] = ACTIONS(209), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(213), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(173), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(215), - [sym_comment] = ACTIONS(85), - }, - [823] = { - [sym__expression] = STATE(77), - [sym_comma_expression] = STATE(78), - [sym_conditional_expression] = STATE(77), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_sizeof_expression] = STATE(77), - [sym_subscript_expression] = STATE(77), - [sym_call_expression] = STATE(77), - [sym_field_expression] = STATE(77), - [sym_compound_literal_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(155), - [sym_false] = ACTIONS(155), - [sym_null] = ACTIONS(155), - [sym_identifier] = ACTIONS(155), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(181), + [sym_comment] = ACTIONS(81), }, - [824] = { - [sym__expression] = STATE(1020), - [sym_conditional_expression] = STATE(1020), - [sym_assignment_expression] = STATE(1020), - [sym_pointer_expression] = STATE(1020), - [sym_logical_expression] = STATE(1020), - [sym_bitwise_expression] = STATE(1020), - [sym_equality_expression] = STATE(1020), - [sym_relational_expression] = STATE(1020), - [sym_shift_expression] = STATE(1020), - [sym_math_expression] = STATE(1020), - [sym_cast_expression] = STATE(1020), - [sym_sizeof_expression] = STATE(1020), - [sym_subscript_expression] = STATE(1020), - [sym_call_expression] = STATE(1020), - [sym_field_expression] = STATE(1020), - [sym_compound_literal_expression] = STATE(1020), - [sym_parenthesized_expression] = STATE(1020), - [sym_char_literal] = STATE(1020), - [sym_concatenated_string] = STATE(1020), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(2873), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2877), - [sym_false] = ACTIONS(2877), - [sym_null] = ACTIONS(2877), - [sym_identifier] = ACTIONS(2877), - [sym_comment] = ACTIONS(85), + [767] = { + [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_char_literal] = STATE(977), + [sym_concatenated_string] = STATE(977), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(2821), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(2823), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2825), + [sym_false] = ACTIONS(2825), + [sym_null] = ACTIONS(2825), + [sym_identifier] = ACTIONS(2825), + [sym_comment] = ACTIONS(81), }, - [825] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [768] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [826] = { - [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(123), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2881), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2883), - [sym_false] = ACTIONS(2883), - [sym_null] = ACTIONS(2883), - [sym_identifier] = ACTIONS(2883), - [sym_comment] = ACTIONS(85), + [769] = { + [sym__expression] = STATE(979), + [sym_conditional_expression] = STATE(979), + [sym_assignment_expression] = STATE(979), + [sym_pointer_expression] = STATE(979), + [sym_logical_expression] = STATE(979), + [sym_bitwise_expression] = STATE(979), + [sym_equality_expression] = STATE(979), + [sym_relational_expression] = STATE(979), + [sym_shift_expression] = STATE(979), + [sym_math_expression] = STATE(979), + [sym_cast_expression] = STATE(979), + [sym_sizeof_expression] = STATE(979), + [sym_subscript_expression] = STATE(979), + [sym_call_expression] = STATE(979), + [sym_field_expression] = STATE(979), + [sym_compound_literal_expression] = STATE(979), + [sym_parenthesized_expression] = STATE(979), + [sym_char_literal] = STATE(979), + [sym_concatenated_string] = STATE(979), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2829), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2831), + [sym_false] = ACTIONS(2831), + [sym_null] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2831), + [sym_comment] = ACTIONS(81), }, - [827] = { - [sym_compound_statement] = STATE(1023), - [sym_labeled_statement] = STATE(1023), - [sym_expression_statement] = STATE(1023), - [sym_if_statement] = STATE(1023), - [sym_switch_statement] = STATE(1023), - [sym_case_statement] = STATE(1023), - [sym_while_statement] = STATE(1023), - [sym_do_statement] = STATE(1023), - [sym_for_statement] = STATE(1023), - [sym_return_statement] = STATE(1023), - [sym_break_statement] = STATE(1023), - [sym_continue_statement] = STATE(1023), - [sym_goto_statement] = STATE(1023), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [770] = { + [sym_compound_statement] = STATE(980), + [sym_labeled_statement] = STATE(980), + [sym_expression_statement] = STATE(980), + [sym_if_statement] = STATE(980), + [sym_switch_statement] = STATE(980), + [sym_while_statement] = STATE(980), + [sym_do_statement] = STATE(980), + [sym_for_statement] = STATE(980), + [sym_return_statement] = STATE(980), + [sym_break_statement] = STATE(980), + [sym_continue_statement] = STATE(980), + [sym_goto_statement] = STATE(980), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_if] = ACTIONS(43), [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_while] = ACTIONS(51), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(81), }, - [828] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1025), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [771] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(982), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [829] = { - [sym__expression] = STATE(1026), - [sym_conditional_expression] = STATE(1026), - [sym_assignment_expression] = STATE(1026), - [sym_pointer_expression] = STATE(1026), - [sym_logical_expression] = STATE(1026), - [sym_bitwise_expression] = STATE(1026), - [sym_equality_expression] = STATE(1026), - [sym_relational_expression] = STATE(1026), - [sym_shift_expression] = STATE(1026), - [sym_math_expression] = STATE(1026), - [sym_cast_expression] = STATE(1026), - [sym_sizeof_expression] = STATE(1026), - [sym_subscript_expression] = STATE(1026), - [sym_call_expression] = STATE(1026), - [sym_field_expression] = STATE(1026), - [sym_compound_literal_expression] = STATE(1026), - [sym_parenthesized_expression] = STATE(1026), - [sym_char_literal] = STATE(1026), - [sym_concatenated_string] = STATE(1026), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(2885), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(2887), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2889), - [sym_false] = ACTIONS(2889), - [sym_null] = ACTIONS(2889), - [sym_identifier] = ACTIONS(2889), - [sym_comment] = ACTIONS(85), + [772] = { + [sym__expression] = STATE(983), + [sym_conditional_expression] = STATE(983), + [sym_assignment_expression] = STATE(983), + [sym_pointer_expression] = STATE(983), + [sym_logical_expression] = STATE(983), + [sym_bitwise_expression] = STATE(983), + [sym_equality_expression] = STATE(983), + [sym_relational_expression] = STATE(983), + [sym_shift_expression] = STATE(983), + [sym_math_expression] = STATE(983), + [sym_cast_expression] = STATE(983), + [sym_sizeof_expression] = STATE(983), + [sym_subscript_expression] = STATE(983), + [sym_call_expression] = STATE(983), + [sym_field_expression] = STATE(983), + [sym_compound_literal_expression] = STATE(983), + [sym_parenthesized_expression] = STATE(983), + [sym_char_literal] = STATE(983), + [sym_concatenated_string] = STATE(983), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_null] = ACTIONS(2837), + [sym_identifier] = ACTIONS(2837), + [sym_comment] = ACTIONS(81), }, - [830] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [773] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [831] = { - [sym__expression] = STATE(518), - [sym_conditional_expression] = STATE(518), - [sym_assignment_expression] = STATE(518), - [sym_pointer_expression] = STATE(518), - [sym_logical_expression] = STATE(518), - [sym_bitwise_expression] = STATE(518), - [sym_equality_expression] = STATE(518), - [sym_relational_expression] = STATE(518), - [sym_shift_expression] = STATE(518), - [sym_math_expression] = STATE(518), - [sym_cast_expression] = STATE(518), - [sym_sizeof_expression] = STATE(518), - [sym_subscript_expression] = STATE(518), - [sym_call_expression] = STATE(518), - [sym_field_expression] = STATE(518), - [sym_compound_literal_expression] = STATE(518), - [sym_parenthesized_expression] = STATE(518), - [sym_initializer_list] = STATE(519), - [sym_char_literal] = STATE(518), - [sym_concatenated_string] = STATE(518), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_EQ] = ACTIONS(2249), - [anon_sym_QMARK] = ACTIONS(2245), - [anon_sym_STAR_EQ] = ACTIONS(2245), - [anon_sym_SLASH_EQ] = ACTIONS(2245), - [anon_sym_PERCENT_EQ] = ACTIONS(2245), - [anon_sym_PLUS_EQ] = ACTIONS(2245), - [anon_sym_DASH_EQ] = ACTIONS(2245), - [anon_sym_LT_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_GT_EQ] = ACTIONS(2245), - [anon_sym_AMP_EQ] = ACTIONS(2245), - [anon_sym_CARET_EQ] = ACTIONS(2245), - [anon_sym_PIPE_EQ] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2893), - [anon_sym_PIPE_PIPE] = ACTIONS(2245), - [anon_sym_AMP_AMP] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_EQ_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_GT] = ACTIONS(2249), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_GT_GT] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DASH_GT] = ACTIONS(2245), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1387), - [sym_comment] = ACTIONS(85), + [774] = { + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_pointer_expression] = STATE(471), + [sym_logical_expression] = STATE(471), + [sym_bitwise_expression] = STATE(471), + [sym_equality_expression] = STATE(471), + [sym_relational_expression] = STATE(471), + [sym_shift_expression] = STATE(471), + [sym_math_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(471), + [sym_call_expression] = STATE(471), + [sym_field_expression] = STATE(471), + [sym_compound_literal_expression] = STATE(471), + [sym_parenthesized_expression] = STATE(471), + [sym_initializer_list] = STATE(472), + [sym_char_literal] = STATE(471), + [sym_concatenated_string] = STATE(471), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_EQ] = ACTIONS(2091), + [anon_sym_QMARK] = ACTIONS(2087), + [anon_sym_STAR_EQ] = ACTIONS(2087), + [anon_sym_SLASH_EQ] = ACTIONS(2087), + [anon_sym_PERCENT_EQ] = ACTIONS(2087), + [anon_sym_PLUS_EQ] = ACTIONS(2087), + [anon_sym_DASH_EQ] = ACTIONS(2087), + [anon_sym_LT_LT_EQ] = ACTIONS(2087), + [anon_sym_GT_GT_EQ] = ACTIONS(2087), + [anon_sym_AMP_EQ] = ACTIONS(2087), + [anon_sym_CARET_EQ] = ACTIONS(2087), + [anon_sym_PIPE_EQ] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_PIPE_PIPE] = ACTIONS(2087), + [anon_sym_AMP_AMP] = ACTIONS(2087), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_PIPE] = ACTIONS(2091), + [anon_sym_CARET] = ACTIONS(2091), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_EQ_EQ] = ACTIONS(2087), + [anon_sym_BANG_EQ] = ACTIONS(2087), + [anon_sym_LT] = ACTIONS(2091), + [anon_sym_GT] = ACTIONS(2091), + [anon_sym_LT_EQ] = ACTIONS(2087), + [anon_sym_GT_EQ] = ACTIONS(2087), + [anon_sym_LT_LT] = ACTIONS(2091), + [anon_sym_GT_GT] = ACTIONS(2091), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_SLASH] = ACTIONS(2091), + [anon_sym_PERCENT] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [anon_sym_DOT] = ACTIONS(2087), + [anon_sym_DASH_GT] = ACTIONS(2087), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [sym_null] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1277), + [sym_comment] = ACTIONS(81), }, - [832] = { - [sym__expression] = STATE(1028), - [sym_conditional_expression] = STATE(1028), - [sym_assignment_expression] = STATE(1028), - [sym_pointer_expression] = STATE(1028), - [sym_logical_expression] = STATE(1028), - [sym_bitwise_expression] = STATE(1028), - [sym_equality_expression] = STATE(1028), - [sym_relational_expression] = STATE(1028), - [sym_shift_expression] = STATE(1028), - [sym_math_expression] = STATE(1028), - [sym_cast_expression] = STATE(1028), - [sym_sizeof_expression] = STATE(1028), - [sym_subscript_expression] = STATE(1028), - [sym_call_expression] = STATE(1028), - [sym_field_expression] = STATE(1028), - [sym_compound_literal_expression] = STATE(1028), - [sym_parenthesized_expression] = STATE(1028), - [sym_char_literal] = STATE(1028), - [sym_concatenated_string] = STATE(1028), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2897), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [sym_null] = ACTIONS(2899), - [sym_identifier] = ACTIONS(2899), - [sym_comment] = ACTIONS(85), + [775] = { + [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_char_literal] = STATE(985), + [sym_concatenated_string] = STATE(985), + [sym_string_literal] = STATE(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2845), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2847), + [sym_false] = ACTIONS(2847), + [sym_null] = ACTIONS(2847), + [sym_identifier] = ACTIONS(2847), + [sym_comment] = ACTIONS(81), }, - [833] = { - [anon_sym_COMMA] = ACTIONS(2901), - [anon_sym_RPAREN] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN2] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_EQ] = ACTIONS(2901), - [sym_comment] = ACTIONS(85), + [776] = { + [anon_sym_COMMA] = ACTIONS(2849), + [anon_sym_RPAREN] = ACTIONS(2849), + [anon_sym_SEMI] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [anon_sym_LPAREN2] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_EQ] = ACTIONS(2849), + [sym_comment] = ACTIONS(81), }, - [834] = { - [sym__expression] = STATE(83), - [sym_conditional_expression] = STATE(83), - [sym_assignment_expression] = STATE(83), - [sym_pointer_expression] = STATE(83), - [sym_logical_expression] = STATE(83), - [sym_bitwise_expression] = STATE(83), - [sym_equality_expression] = STATE(83), - [sym_relational_expression] = STATE(83), - [sym_shift_expression] = STATE(83), - [sym_math_expression] = STATE(83), - [sym_cast_expression] = STATE(83), - [sym_sizeof_expression] = STATE(83), - [sym_subscript_expression] = STATE(83), - [sym_call_expression] = STATE(83), - [sym_field_expression] = STATE(83), - [sym_compound_literal_expression] = STATE(83), - [sym_parenthesized_expression] = STATE(83), - [sym_char_literal] = STATE(83), - [sym_concatenated_string] = STATE(83), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(85), + [777] = { + [sym__expression] = STATE(78), + [sym_conditional_expression] = STATE(78), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(78), + [sym_call_expression] = STATE(78), + [sym_field_expression] = STATE(78), + [sym_compound_literal_expression] = STATE(78), + [sym_parenthesized_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_concatenated_string] = STATE(78), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(151), + [sym_false] = ACTIONS(151), + [sym_null] = ACTIONS(151), + [sym_identifier] = ACTIONS(151), + [sym_comment] = ACTIONS(81), }, - [835] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(2903), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1685), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PERCENT_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_CARET_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [778] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(2851), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [836] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2905), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [779] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(2853), + [anon_sym_RPAREN] = ACTIONS(2853), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [837] = { - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_RPAREN] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_LPAREN2] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2907), - [anon_sym_EQ] = ACTIONS(2909), - [anon_sym_COLON] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_STAR_EQ] = ACTIONS(2907), - [anon_sym_SLASH_EQ] = ACTIONS(2907), - [anon_sym_PERCENT_EQ] = ACTIONS(2907), - [anon_sym_PLUS_EQ] = ACTIONS(2907), - [anon_sym_DASH_EQ] = ACTIONS(2907), - [anon_sym_LT_LT_EQ] = ACTIONS(2907), - [anon_sym_GT_GT_EQ] = ACTIONS(2907), - [anon_sym_AMP_EQ] = ACTIONS(2907), - [anon_sym_CARET_EQ] = ACTIONS(2907), - [anon_sym_PIPE_EQ] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LT_LT] = ACTIONS(2909), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(2907), - [anon_sym_DASH_GT] = ACTIONS(2907), - [sym_comment] = ACTIONS(85), + [780] = { + [anon_sym_COMMA] = ACTIONS(2855), + [anon_sym_RPAREN] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2855), + [anon_sym_RBRACE] = ACTIONS(2855), + [anon_sym_LPAREN2] = ACTIONS(2855), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_RBRACK] = ACTIONS(2855), + [anon_sym_EQ] = ACTIONS(2857), + [anon_sym_COLON] = ACTIONS(2855), + [anon_sym_QMARK] = ACTIONS(2855), + [anon_sym_STAR_EQ] = ACTIONS(2855), + [anon_sym_SLASH_EQ] = ACTIONS(2855), + [anon_sym_PERCENT_EQ] = ACTIONS(2855), + [anon_sym_PLUS_EQ] = ACTIONS(2855), + [anon_sym_DASH_EQ] = ACTIONS(2855), + [anon_sym_LT_LT_EQ] = ACTIONS(2855), + [anon_sym_GT_GT_EQ] = ACTIONS(2855), + [anon_sym_AMP_EQ] = ACTIONS(2855), + [anon_sym_CARET_EQ] = ACTIONS(2855), + [anon_sym_PIPE_EQ] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_CARET] = ACTIONS(2857), + [anon_sym_EQ_EQ] = ACTIONS(2855), + [anon_sym_BANG_EQ] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_LT_EQ] = ACTIONS(2855), + [anon_sym_GT_EQ] = ACTIONS(2855), + [anon_sym_LT_LT] = ACTIONS(2857), + [anon_sym_GT_GT] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_SLASH] = ACTIONS(2857), + [anon_sym_PERCENT] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2855), + [anon_sym_DOT] = ACTIONS(2855), + [anon_sym_DASH_GT] = ACTIONS(2855), + [sym_comment] = ACTIONS(81), }, - [838] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_RPAREN] = ACTIONS(2905), - [sym_comment] = ACTIONS(85), + [781] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(2859), + [anon_sym_RPAREN] = ACTIONS(2853), + [sym_comment] = ACTIONS(81), }, - [839] = { - [sym__expression] = STATE(518), - [sym_conditional_expression] = STATE(518), - [sym_assignment_expression] = STATE(518), - [sym_pointer_expression] = STATE(518), - [sym_logical_expression] = STATE(518), - [sym_bitwise_expression] = STATE(518), - [sym_equality_expression] = STATE(518), - [sym_relational_expression] = STATE(518), - [sym_shift_expression] = STATE(518), - [sym_math_expression] = STATE(518), - [sym_cast_expression] = STATE(518), - [sym_sizeof_expression] = STATE(518), - [sym_subscript_expression] = STATE(518), - [sym_call_expression] = STATE(518), - [sym_field_expression] = STATE(518), - [sym_compound_literal_expression] = STATE(518), - [sym_parenthesized_expression] = STATE(518), - [sym_initializer_list] = STATE(519), - [sym_char_literal] = STATE(518), - [sym_concatenated_string] = STATE(518), - [sym_string_literal] = STATE(369), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1387), - [sym_comment] = ACTIONS(85), + [782] = { + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_pointer_expression] = STATE(471), + [sym_logical_expression] = STATE(471), + [sym_bitwise_expression] = STATE(471), + [sym_equality_expression] = STATE(471), + [sym_relational_expression] = STATE(471), + [sym_shift_expression] = STATE(471), + [sym_math_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(471), + [sym_call_expression] = STATE(471), + [sym_field_expression] = STATE(471), + [sym_compound_literal_expression] = STATE(471), + [sym_parenthesized_expression] = STATE(471), + [sym_initializer_list] = STATE(472), + [sym_char_literal] = STATE(471), + [sym_concatenated_string] = STATE(471), + [sym_string_literal] = STATE(324), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [sym_null] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1277), + [sym_comment] = ACTIONS(81), }, - [840] = { - [anon_sym_RPAREN] = ACTIONS(2914), - [sym_comment] = ACTIONS(85), + [783] = { + [anon_sym_RPAREN] = ACTIONS(2862), + [sym_comment] = ACTIONS(81), }, - [841] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(1709), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PERCENT_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_CARET_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [784] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(1547), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [842] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(2916), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [785] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_COLON] = ACTIONS(2864), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_LT_LT_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_AMP_EQ] = ACTIONS(1563), + [anon_sym_CARET_EQ] = ACTIONS(1563), + [anon_sym_PIPE_EQ] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [843] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(1713), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [786] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(1585), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [844] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1717), - [anon_sym_STAR_EQ] = ACTIONS(1717), - [anon_sym_SLASH_EQ] = ACTIONS(1717), - [anon_sym_PERCENT_EQ] = ACTIONS(1717), - [anon_sym_PLUS_EQ] = ACTIONS(1717), - [anon_sym_DASH_EQ] = ACTIONS(1717), - [anon_sym_LT_LT_EQ] = ACTIONS(1717), - [anon_sym_GT_GT_EQ] = ACTIONS(1717), - [anon_sym_AMP_EQ] = ACTIONS(1717), - [anon_sym_CARET_EQ] = ACTIONS(1717), - [anon_sym_PIPE_EQ] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [787] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(1589), + [anon_sym_EQ] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(1589), + [anon_sym_STAR_EQ] = ACTIONS(1589), + [anon_sym_SLASH_EQ] = ACTIONS(1589), + [anon_sym_PERCENT_EQ] = ACTIONS(1589), + [anon_sym_PLUS_EQ] = ACTIONS(1589), + [anon_sym_DASH_EQ] = ACTIONS(1589), + [anon_sym_LT_LT_EQ] = ACTIONS(1589), + [anon_sym_GT_GT_EQ] = ACTIONS(1589), + [anon_sym_AMP_EQ] = ACTIONS(1589), + [anon_sym_CARET_EQ] = ACTIONS(1589), + [anon_sym_PIPE_EQ] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [845] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1717), - [anon_sym_STAR_EQ] = ACTIONS(1717), - [anon_sym_SLASH_EQ] = ACTIONS(1717), - [anon_sym_PERCENT_EQ] = ACTIONS(1717), - [anon_sym_PLUS_EQ] = ACTIONS(1717), - [anon_sym_DASH_EQ] = ACTIONS(1717), - [anon_sym_LT_LT_EQ] = ACTIONS(1717), - [anon_sym_GT_GT_EQ] = ACTIONS(1717), - [anon_sym_AMP_EQ] = ACTIONS(1717), - [anon_sym_CARET_EQ] = ACTIONS(1717), - [anon_sym_PIPE_EQ] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [788] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(1589), + [anon_sym_EQ] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(1589), + [anon_sym_STAR_EQ] = ACTIONS(1589), + [anon_sym_SLASH_EQ] = ACTIONS(1589), + [anon_sym_PERCENT_EQ] = ACTIONS(1589), + [anon_sym_PLUS_EQ] = ACTIONS(1589), + [anon_sym_DASH_EQ] = ACTIONS(1589), + [anon_sym_LT_LT_EQ] = ACTIONS(1589), + [anon_sym_GT_GT_EQ] = ACTIONS(1589), + [anon_sym_AMP_EQ] = ACTIONS(1589), + [anon_sym_CARET_EQ] = ACTIONS(1589), + [anon_sym_PIPE_EQ] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [846] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(1713), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [789] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(1585), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [847] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(1713), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [790] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(1585), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [848] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1723), - [anon_sym_QMARK] = ACTIONS(1721), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_PIPE_PIPE] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1721), - [anon_sym_BANG_EQ] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [791] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(1593), + [anon_sym_EQ] = ACTIONS(1595), + [anon_sym_QMARK] = ACTIONS(1593), + [anon_sym_STAR_EQ] = ACTIONS(1593), + [anon_sym_SLASH_EQ] = ACTIONS(1593), + [anon_sym_PERCENT_EQ] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(1593), + [anon_sym_DASH_EQ] = ACTIONS(1593), + [anon_sym_LT_LT_EQ] = ACTIONS(1593), + [anon_sym_GT_GT_EQ] = ACTIONS(1593), + [anon_sym_AMP_EQ] = ACTIONS(1593), + [anon_sym_CARET_EQ] = ACTIONS(1593), + [anon_sym_PIPE_EQ] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_PIPE_PIPE] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1593), + [anon_sym_PIPE] = ACTIONS(1595), + [anon_sym_CARET] = ACTIONS(1595), + [anon_sym_EQ_EQ] = ACTIONS(1593), + [anon_sym_BANG_EQ] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [849] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(1725), - [anon_sym_EQ] = ACTIONS(1727), - [anon_sym_QMARK] = ACTIONS(1725), - [anon_sym_STAR_EQ] = ACTIONS(1725), - [anon_sym_SLASH_EQ] = ACTIONS(1725), - [anon_sym_PERCENT_EQ] = ACTIONS(1725), - [anon_sym_PLUS_EQ] = ACTIONS(1725), - [anon_sym_DASH_EQ] = ACTIONS(1725), - [anon_sym_LT_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_GT_EQ] = ACTIONS(1725), - [anon_sym_AMP_EQ] = ACTIONS(1725), - [anon_sym_CARET_EQ] = ACTIONS(1725), - [anon_sym_PIPE_EQ] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_PIPE_PIPE] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [792] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(1597), + [anon_sym_EQ] = ACTIONS(1599), + [anon_sym_QMARK] = ACTIONS(1597), + [anon_sym_STAR_EQ] = ACTIONS(1597), + [anon_sym_SLASH_EQ] = ACTIONS(1597), + [anon_sym_PERCENT_EQ] = ACTIONS(1597), + [anon_sym_PLUS_EQ] = ACTIONS(1597), + [anon_sym_DASH_EQ] = ACTIONS(1597), + [anon_sym_LT_LT_EQ] = ACTIONS(1597), + [anon_sym_GT_GT_EQ] = ACTIONS(1597), + [anon_sym_AMP_EQ] = ACTIONS(1597), + [anon_sym_CARET_EQ] = ACTIONS(1597), + [anon_sym_PIPE_EQ] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_PIPE_PIPE] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [850] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_STAR_EQ] = ACTIONS(1729), - [anon_sym_SLASH_EQ] = ACTIONS(1729), - [anon_sym_PERCENT_EQ] = ACTIONS(1729), - [anon_sym_PLUS_EQ] = ACTIONS(1729), - [anon_sym_DASH_EQ] = ACTIONS(1729), - [anon_sym_LT_LT_EQ] = ACTIONS(1729), - [anon_sym_GT_GT_EQ] = ACTIONS(1729), - [anon_sym_AMP_EQ] = ACTIONS(1729), - [anon_sym_CARET_EQ] = ACTIONS(1729), - [anon_sym_PIPE_EQ] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_CARET] = ACTIONS(1731), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1731), - [anon_sym_LT_EQ] = ACTIONS(1729), - [anon_sym_GT_EQ] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1731), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [793] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(1601), + [anon_sym_EQ] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1601), + [anon_sym_STAR_EQ] = ACTIONS(1601), + [anon_sym_SLASH_EQ] = ACTIONS(1601), + [anon_sym_PERCENT_EQ] = ACTIONS(1601), + [anon_sym_PLUS_EQ] = ACTIONS(1601), + [anon_sym_DASH_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_GT_EQ] = ACTIONS(1601), + [anon_sym_AMP_EQ] = ACTIONS(1601), + [anon_sym_CARET_EQ] = ACTIONS(1601), + [anon_sym_PIPE_EQ] = ACTIONS(1601), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_PIPE_PIPE] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1603), + [anon_sym_GT] = ACTIONS(1603), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_EQ] = ACTIONS(1601), + [anon_sym_LT_LT] = ACTIONS(1603), + [anon_sym_GT_GT] = ACTIONS(1603), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [851] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(1669), - [anon_sym_EQ] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1669), - [anon_sym_STAR_EQ] = ACTIONS(1669), - [anon_sym_SLASH_EQ] = ACTIONS(1669), - [anon_sym_PERCENT_EQ] = ACTIONS(1669), - [anon_sym_PLUS_EQ] = ACTIONS(1669), - [anon_sym_DASH_EQ] = ACTIONS(1669), - [anon_sym_LT_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_GT_EQ] = ACTIONS(1669), - [anon_sym_AMP_EQ] = ACTIONS(1669), - [anon_sym_CARET_EQ] = ACTIONS(1669), - [anon_sym_PIPE_EQ] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_CARET] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [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(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [794] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(1507), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1509), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [852] = { - [sym_string_literal] = STATE(852), - [aux_sym_concatenated_string_repeat1] = STATE(852), - [anon_sym_LPAREN2] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_RBRACK] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1739), - [anon_sym_QMARK] = ACTIONS(1737), - [anon_sym_STAR_EQ] = ACTIONS(1737), - [anon_sym_SLASH_EQ] = ACTIONS(1737), - [anon_sym_PERCENT_EQ] = ACTIONS(1737), - [anon_sym_PLUS_EQ] = ACTIONS(1737), - [anon_sym_DASH_EQ] = ACTIONS(1737), - [anon_sym_LT_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_GT_EQ] = ACTIONS(1737), - [anon_sym_AMP_EQ] = ACTIONS(1737), - [anon_sym_CARET_EQ] = ACTIONS(1737), - [anon_sym_PIPE_EQ] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_CARET] = ACTIONS(1739), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_PERCENT] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DOT] = ACTIONS(1737), - [anon_sym_DASH_GT] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym_comment] = ACTIONS(85), + [795] = { + [sym_string_literal] = STATE(795), + [aux_sym_concatenated_string_repeat1] = STATE(795), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_RBRACK] = ACTIONS(1609), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_QMARK] = ACTIONS(1609), + [anon_sym_STAR_EQ] = ACTIONS(1609), + [anon_sym_SLASH_EQ] = ACTIONS(1609), + [anon_sym_PERCENT_EQ] = ACTIONS(1609), + [anon_sym_PLUS_EQ] = ACTIONS(1609), + [anon_sym_DASH_EQ] = ACTIONS(1609), + [anon_sym_LT_LT_EQ] = ACTIONS(1609), + [anon_sym_GT_GT_EQ] = ACTIONS(1609), + [anon_sym_AMP_EQ] = ACTIONS(1609), + [anon_sym_CARET_EQ] = ACTIONS(1609), + [anon_sym_PIPE_EQ] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PIPE_PIPE] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1611), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1611), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT_EQ] = ACTIONS(1609), + [anon_sym_LT_LT] = ACTIONS(1611), + [anon_sym_GT_GT] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_SLASH] = ACTIONS(1611), + [anon_sym_PERCENT] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_DOT] = ACTIONS(1609), + [anon_sym_DASH_GT] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1613), + [sym_comment] = ACTIONS(81), }, - [853] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(2918), - [anon_sym_SEMI] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(313), - [anon_sym_QMARK] = ACTIONS(315), - [anon_sym_STAR_EQ] = ACTIONS(317), - [anon_sym_SLASH_EQ] = ACTIONS(317), - [anon_sym_PERCENT_EQ] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(317), - [anon_sym_DASH_EQ] = ACTIONS(317), - [anon_sym_LT_LT_EQ] = ACTIONS(317), - [anon_sym_GT_GT_EQ] = ACTIONS(317), - [anon_sym_AMP_EQ] = ACTIONS(317), - [anon_sym_CARET_EQ] = ACTIONS(317), - [anon_sym_PIPE_EQ] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(319), - [anon_sym_PIPE_PIPE] = ACTIONS(321), - [anon_sym_AMP_AMP] = ACTIONS(323), - [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(327), - [anon_sym_EQ_EQ] = ACTIONS(329), - [anon_sym_BANG_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(333), - [anon_sym_GT_EQ] = ACTIONS(333), - [anon_sym_LT_LT] = ACTIONS(335), - [anon_sym_GT_GT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_SLASH] = ACTIONS(309), - [anon_sym_PERCENT] = ACTIONS(309), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [796] = { + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_pointer_expression] = STATE(471), + [sym_logical_expression] = STATE(471), + [sym_bitwise_expression] = STATE(471), + [sym_equality_expression] = STATE(471), + [sym_relational_expression] = STATE(471), + [sym_shift_expression] = STATE(471), + [sym_math_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(471), + [sym_call_expression] = STATE(471), + [sym_field_expression] = STATE(471), + [sym_compound_literal_expression] = STATE(471), + [sym_parenthesized_expression] = STATE(471), + [sym_initializer_list] = STATE(472), + [sym_char_literal] = STATE(471), + [sym_concatenated_string] = STATE(471), + [sym_string_literal] = STATE(333), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [sym_null] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1277), + [sym_comment] = ACTIONS(81), }, - [854] = { - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_RPAREN] = ACTIONS(2920), - [sym_comment] = ACTIONS(85), + [797] = { + [anon_sym_RPAREN] = ACTIONS(2866), + [sym_comment] = ACTIONS(81), }, - [855] = { - [anon_sym_LF] = ACTIONS(2922), - [sym_preproc_arg] = ACTIONS(2922), - [sym_comment] = ACTIONS(95), + [798] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_COLON] = ACTIONS(1547), + [anon_sym_QMARK] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_LT_LT_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_AMP_EQ] = ACTIONS(1563), + [anon_sym_CARET_EQ] = ACTIONS(1563), + [anon_sym_PIPE_EQ] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [856] = { - [aux_sym_preproc_params_repeat1] = STATE(856), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_RPAREN] = ACTIONS(2920), - [sym_comment] = ACTIONS(85), + [799] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(2868), + [anon_sym_SEMI] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(281), + [anon_sym_STAR_EQ] = ACTIONS(283), + [anon_sym_SLASH_EQ] = ACTIONS(283), + [anon_sym_PERCENT_EQ] = ACTIONS(283), + [anon_sym_PLUS_EQ] = ACTIONS(283), + [anon_sym_DASH_EQ] = ACTIONS(283), + [anon_sym_LT_LT_EQ] = ACTIONS(283), + [anon_sym_GT_GT_EQ] = ACTIONS(283), + [anon_sym_AMP_EQ] = ACTIONS(283), + [anon_sym_CARET_EQ] = ACTIONS(283), + [anon_sym_PIPE_EQ] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_CARET] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_GT] = ACTIONS(297), + [anon_sym_LT_EQ] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(299), + [anon_sym_LT_LT] = ACTIONS(301), + [anon_sym_GT_GT] = ACTIONS(301), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PERCENT] = ACTIONS(275), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [857] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1612), - [sym_preproc_directive] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_typedef] = ACTIONS(1612), - [anon_sym_extern] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_LPAREN2] = ACTIONS(1610), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_auto] = ACTIONS(1612), - [anon_sym_register] = ACTIONS(1612), - [anon_sym_inline] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_restrict] = ACTIONS(1612), - [anon_sym_volatile] = ACTIONS(1612), - [anon_sym__Atomic] = ACTIONS(1612), - [anon_sym_unsigned] = ACTIONS(1612), - [anon_sym_long] = ACTIONS(1612), - [anon_sym_short] = ACTIONS(1612), - [sym_primitive_type] = ACTIONS(1612), - [anon_sym_enum] = ACTIONS(1612), - [anon_sym_struct] = ACTIONS(1612), - [anon_sym_union] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_switch] = ACTIONS(1612), - [anon_sym_case] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_goto] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1610), - [anon_sym_sizeof] = ACTIONS(1612), - [sym_number_literal] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_identifier] = ACTIONS(1612), - [sym_comment] = ACTIONS(85), + [800] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_COLON] = ACTIONS(2870), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_LT_LT_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_AMP_EQ] = ACTIONS(1563), + [anon_sym_CARET_EQ] = ACTIONS(1563), + [anon_sym_PIPE_EQ] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [858] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1756), - [sym_preproc_directive] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_typedef] = ACTIONS(1756), - [anon_sym_extern] = ACTIONS(1756), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_LPAREN2] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1756), - [anon_sym_auto] = ACTIONS(1756), - [anon_sym_register] = ACTIONS(1756), - [anon_sym_inline] = ACTIONS(1756), - [anon_sym_const] = ACTIONS(1756), - [anon_sym_restrict] = ACTIONS(1756), - [anon_sym_volatile] = ACTIONS(1756), - [anon_sym__Atomic] = ACTIONS(1756), - [anon_sym_unsigned] = ACTIONS(1756), - [anon_sym_long] = ACTIONS(1756), - [anon_sym_short] = ACTIONS(1756), - [sym_primitive_type] = ACTIONS(1756), - [anon_sym_enum] = ACTIONS(1756), - [anon_sym_struct] = ACTIONS(1756), - [anon_sym_union] = ACTIONS(1756), - [anon_sym_if] = ACTIONS(1756), - [anon_sym_switch] = ACTIONS(1756), - [anon_sym_case] = ACTIONS(1756), - [anon_sym_default] = ACTIONS(1756), - [anon_sym_while] = ACTIONS(1756), - [anon_sym_do] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1756), - [anon_sym_return] = ACTIONS(1756), - [anon_sym_break] = ACTIONS(1756), - [anon_sym_continue] = ACTIONS(1756), - [anon_sym_goto] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [sym_true] = ACTIONS(1756), - [sym_false] = ACTIONS(1756), - [sym_null] = ACTIONS(1756), - [sym_identifier] = ACTIONS(1756), - [sym_comment] = ACTIONS(85), + [801] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_COLON] = ACTIONS(1585), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [859] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1760), - [sym_preproc_directive] = ACTIONS(1760), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_typedef] = ACTIONS(1760), - [anon_sym_extern] = ACTIONS(1760), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_LPAREN2] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_static] = ACTIONS(1760), - [anon_sym_auto] = ACTIONS(1760), - [anon_sym_register] = ACTIONS(1760), - [anon_sym_inline] = ACTIONS(1760), - [anon_sym_const] = ACTIONS(1760), - [anon_sym_restrict] = ACTIONS(1760), - [anon_sym_volatile] = ACTIONS(1760), - [anon_sym__Atomic] = ACTIONS(1760), - [anon_sym_unsigned] = ACTIONS(1760), - [anon_sym_long] = ACTIONS(1760), - [anon_sym_short] = ACTIONS(1760), - [sym_primitive_type] = ACTIONS(1760), - [anon_sym_enum] = ACTIONS(1760), - [anon_sym_struct] = ACTIONS(1760), - [anon_sym_union] = ACTIONS(1760), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_switch] = ACTIONS(1760), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1760), - [anon_sym_while] = ACTIONS(1760), - [anon_sym_do] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1760), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_goto] = ACTIONS(1760), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_TILDE] = ACTIONS(1758), - [anon_sym_PLUS] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_DASH_DASH] = ACTIONS(1758), - [anon_sym_PLUS_PLUS] = ACTIONS(1758), - [anon_sym_sizeof] = ACTIONS(1760), - [sym_number_literal] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1758), - [anon_sym_DQUOTE] = ACTIONS(1758), - [sym_true] = ACTIONS(1760), - [sym_false] = ACTIONS(1760), - [sym_null] = ACTIONS(1760), - [sym_identifier] = ACTIONS(1760), - [sym_comment] = ACTIONS(85), + [802] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1591), + [anon_sym_COLON] = ACTIONS(1589), + [anon_sym_QMARK] = ACTIONS(1589), + [anon_sym_STAR_EQ] = ACTIONS(1589), + [anon_sym_SLASH_EQ] = ACTIONS(1589), + [anon_sym_PERCENT_EQ] = ACTIONS(1589), + [anon_sym_PLUS_EQ] = ACTIONS(1589), + [anon_sym_DASH_EQ] = ACTIONS(1589), + [anon_sym_LT_LT_EQ] = ACTIONS(1589), + [anon_sym_GT_GT_EQ] = ACTIONS(1589), + [anon_sym_AMP_EQ] = ACTIONS(1589), + [anon_sym_CARET_EQ] = ACTIONS(1589), + [anon_sym_PIPE_EQ] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [860] = { - [anon_sym_LF] = ACTIONS(2927), - [sym_comment] = ACTIONS(95), + [803] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1591), + [anon_sym_COLON] = ACTIONS(1589), + [anon_sym_QMARK] = ACTIONS(1589), + [anon_sym_STAR_EQ] = ACTIONS(1589), + [anon_sym_SLASH_EQ] = ACTIONS(1589), + [anon_sym_PERCENT_EQ] = ACTIONS(1589), + [anon_sym_PLUS_EQ] = ACTIONS(1589), + [anon_sym_DASH_EQ] = ACTIONS(1589), + [anon_sym_LT_LT_EQ] = ACTIONS(1589), + [anon_sym_GT_GT_EQ] = ACTIONS(1589), + [anon_sym_AMP_EQ] = ACTIONS(1589), + [anon_sym_CARET_EQ] = ACTIONS(1589), + [anon_sym_PIPE_EQ] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [861] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1868), - [sym_preproc_directive] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_typedef] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_auto] = ACTIONS(1868), - [anon_sym_register] = ACTIONS(1868), - [anon_sym_inline] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_restrict] = ACTIONS(1868), - [anon_sym_volatile] = ACTIONS(1868), - [anon_sym__Atomic] = ACTIONS(1868), - [anon_sym_unsigned] = ACTIONS(1868), - [anon_sym_long] = ACTIONS(1868), - [anon_sym_short] = ACTIONS(1868), - [sym_primitive_type] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_switch] = ACTIONS(1868), - [anon_sym_case] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_do] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_goto] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1866), - [anon_sym_PLUS_PLUS] = ACTIONS(1866), - [anon_sym_sizeof] = ACTIONS(1868), - [sym_number_literal] = ACTIONS(1866), - [anon_sym_SQUOTE] = ACTIONS(1866), - [anon_sym_DQUOTE] = ACTIONS(1866), - [sym_true] = ACTIONS(1868), - [sym_false] = ACTIONS(1868), - [sym_null] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1868), - [sym_comment] = ACTIONS(85), + [804] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_COLON] = ACTIONS(1585), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [862] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2929), - [sym_comment] = ACTIONS(85), + [805] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_COLON] = ACTIONS(1585), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [863] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1947), - [sym_preproc_directive] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1945), - [anon_sym_typedef] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_LPAREN2] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_static] = ACTIONS(1947), - [anon_sym_auto] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1947), - [anon_sym_inline] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [anon_sym_restrict] = ACTIONS(1947), - [anon_sym_volatile] = ACTIONS(1947), - [anon_sym__Atomic] = ACTIONS(1947), - [anon_sym_unsigned] = ACTIONS(1947), - [anon_sym_long] = ACTIONS(1947), - [anon_sym_short] = ACTIONS(1947), - [sym_primitive_type] = ACTIONS(1947), - [anon_sym_enum] = ACTIONS(1947), - [anon_sym_struct] = ACTIONS(1947), - [anon_sym_union] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_switch] = ACTIONS(1947), - [anon_sym_case] = ACTIONS(1947), - [anon_sym_default] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_do] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_goto] = ACTIONS(1947), - [anon_sym_AMP] = ACTIONS(1945), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_DASH_DASH] = ACTIONS(1945), - [anon_sym_PLUS_PLUS] = ACTIONS(1945), - [anon_sym_sizeof] = ACTIONS(1947), - [sym_number_literal] = ACTIONS(1945), - [anon_sym_SQUOTE] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym_true] = ACTIONS(1947), - [sym_false] = ACTIONS(1947), - [sym_null] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1947), - [sym_comment] = ACTIONS(85), + [806] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1595), + [anon_sym_COLON] = ACTIONS(1593), + [anon_sym_QMARK] = ACTIONS(1593), + [anon_sym_STAR_EQ] = ACTIONS(1593), + [anon_sym_SLASH_EQ] = ACTIONS(1593), + [anon_sym_PERCENT_EQ] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(1593), + [anon_sym_DASH_EQ] = ACTIONS(1593), + [anon_sym_LT_LT_EQ] = ACTIONS(1593), + [anon_sym_GT_GT_EQ] = ACTIONS(1593), + [anon_sym_AMP_EQ] = ACTIONS(1593), + [anon_sym_CARET_EQ] = ACTIONS(1593), + [anon_sym_PIPE_EQ] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_PIPE_PIPE] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1593), + [anon_sym_PIPE] = ACTIONS(1595), + [anon_sym_CARET] = ACTIONS(1595), + [anon_sym_EQ_EQ] = ACTIONS(1593), + [anon_sym_BANG_EQ] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [864] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2931), - [sym_comment] = ACTIONS(85), + [807] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1599), + [anon_sym_COLON] = ACTIONS(1597), + [anon_sym_QMARK] = ACTIONS(1597), + [anon_sym_STAR_EQ] = ACTIONS(1597), + [anon_sym_SLASH_EQ] = ACTIONS(1597), + [anon_sym_PERCENT_EQ] = ACTIONS(1597), + [anon_sym_PLUS_EQ] = ACTIONS(1597), + [anon_sym_DASH_EQ] = ACTIONS(1597), + [anon_sym_LT_LT_EQ] = ACTIONS(1597), + [anon_sym_GT_GT_EQ] = ACTIONS(1597), + [anon_sym_AMP_EQ] = ACTIONS(1597), + [anon_sym_CARET_EQ] = ACTIONS(1597), + [anon_sym_PIPE_EQ] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_PIPE_PIPE] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [865] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(723), - [sym_preproc_directive] = ACTIONS(723), - [anon_sym_SEMI] = ACTIONS(721), - [anon_sym_typedef] = ACTIONS(723), - [anon_sym_extern] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(721), - [anon_sym_LPAREN2] = ACTIONS(721), - [anon_sym_STAR] = ACTIONS(721), - [anon_sym_static] = ACTIONS(723), - [anon_sym_auto] = ACTIONS(723), - [anon_sym_register] = ACTIONS(723), - [anon_sym_inline] = ACTIONS(723), - [anon_sym_const] = ACTIONS(723), - [anon_sym_restrict] = ACTIONS(723), - [anon_sym_volatile] = ACTIONS(723), - [anon_sym__Atomic] = ACTIONS(723), - [anon_sym_unsigned] = ACTIONS(723), - [anon_sym_long] = ACTIONS(723), - [anon_sym_short] = ACTIONS(723), - [sym_primitive_type] = ACTIONS(723), - [anon_sym_enum] = ACTIONS(723), - [anon_sym_struct] = ACTIONS(723), - [anon_sym_union] = ACTIONS(723), - [anon_sym_if] = ACTIONS(723), - [anon_sym_switch] = ACTIONS(723), - [anon_sym_case] = ACTIONS(723), - [anon_sym_default] = ACTIONS(723), - [anon_sym_while] = ACTIONS(723), - [anon_sym_do] = ACTIONS(723), - [anon_sym_for] = ACTIONS(723), - [anon_sym_return] = ACTIONS(723), - [anon_sym_break] = ACTIONS(723), - [anon_sym_continue] = ACTIONS(723), - [anon_sym_goto] = ACTIONS(723), - [anon_sym_AMP] = ACTIONS(721), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_TILDE] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_DASH_DASH] = ACTIONS(721), - [anon_sym_PLUS_PLUS] = ACTIONS(721), - [anon_sym_sizeof] = ACTIONS(723), - [sym_number_literal] = ACTIONS(721), - [anon_sym_SQUOTE] = ACTIONS(721), - [anon_sym_DQUOTE] = ACTIONS(721), - [sym_true] = ACTIONS(723), - [sym_false] = ACTIONS(723), - [sym_null] = ACTIONS(723), - [sym_identifier] = ACTIONS(723), - [sym_comment] = ACTIONS(85), + [808] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1603), + [anon_sym_COLON] = ACTIONS(1601), + [anon_sym_QMARK] = ACTIONS(1601), + [anon_sym_STAR_EQ] = ACTIONS(1601), + [anon_sym_SLASH_EQ] = ACTIONS(1601), + [anon_sym_PERCENT_EQ] = ACTIONS(1601), + [anon_sym_PLUS_EQ] = ACTIONS(1601), + [anon_sym_DASH_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_GT_EQ] = ACTIONS(1601), + [anon_sym_AMP_EQ] = ACTIONS(1601), + [anon_sym_CARET_EQ] = ACTIONS(1601), + [anon_sym_PIPE_EQ] = ACTIONS(1601), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_PIPE_PIPE] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1603), + [anon_sym_GT] = ACTIONS(1603), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_EQ] = ACTIONS(1601), + [anon_sym_LT_LT] = ACTIONS(1603), + [anon_sym_GT_GT] = ACTIONS(1603), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [866] = { - [aux_sym_string_literal_repeat1] = STATE(341), - [anon_sym_DQUOTE] = ACTIONS(2933), - [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(727), - [sym_escape_sequence] = ACTIONS(727), - [sym_comment] = ACTIONS(95), + [809] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_COLON] = ACTIONS(1507), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1509), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [867] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(989), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(989), - [sym_preproc_directive] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_typedef] = ACTIONS(989), - [anon_sym_extern] = ACTIONS(989), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_LPAREN2] = ACTIONS(987), - [anon_sym_STAR] = ACTIONS(987), - [anon_sym_static] = ACTIONS(989), - [anon_sym_auto] = ACTIONS(989), - [anon_sym_register] = ACTIONS(989), - [anon_sym_inline] = ACTIONS(989), - [anon_sym_const] = ACTIONS(989), - [anon_sym_restrict] = ACTIONS(989), - [anon_sym_volatile] = ACTIONS(989), - [anon_sym__Atomic] = ACTIONS(989), - [anon_sym_unsigned] = ACTIONS(989), - [anon_sym_long] = ACTIONS(989), - [anon_sym_short] = ACTIONS(989), - [sym_primitive_type] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(989), - [anon_sym_union] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_switch] = ACTIONS(989), - [anon_sym_case] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [anon_sym_do] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_goto] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(987), - [anon_sym_BANG] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(987), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_DASH_DASH] = ACTIONS(987), - [anon_sym_PLUS_PLUS] = ACTIONS(987), - [anon_sym_sizeof] = ACTIONS(989), - [sym_number_literal] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(987), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym_true] = ACTIONS(989), - [sym_false] = ACTIONS(989), - [sym_null] = ACTIONS(989), - [sym_identifier] = ACTIONS(989), - [sym_comment] = ACTIONS(85), + [810] = { + [sym_string_literal] = STATE(810), + [aux_sym_concatenated_string_repeat1] = STATE(810), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_COLON] = ACTIONS(1609), + [anon_sym_QMARK] = ACTIONS(1609), + [anon_sym_STAR_EQ] = ACTIONS(1609), + [anon_sym_SLASH_EQ] = ACTIONS(1609), + [anon_sym_PERCENT_EQ] = ACTIONS(1609), + [anon_sym_PLUS_EQ] = ACTIONS(1609), + [anon_sym_DASH_EQ] = ACTIONS(1609), + [anon_sym_LT_LT_EQ] = ACTIONS(1609), + [anon_sym_GT_GT_EQ] = ACTIONS(1609), + [anon_sym_AMP_EQ] = ACTIONS(1609), + [anon_sym_CARET_EQ] = ACTIONS(1609), + [anon_sym_PIPE_EQ] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PIPE_PIPE] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1611), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1611), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT_EQ] = ACTIONS(1609), + [anon_sym_LT_LT] = ACTIONS(1611), + [anon_sym_GT_GT] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_SLASH] = ACTIONS(1611), + [anon_sym_PERCENT] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_DOT] = ACTIONS(1609), + [anon_sym_DASH_GT] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1613), + [sym_comment] = ACTIONS(81), }, - [868] = { - [anon_sym_LF] = ACTIONS(2935), - [sym_comment] = ACTIONS(95), + [811] = { + [anon_sym_COMMA] = ACTIONS(2872), + [anon_sym_RPAREN] = ACTIONS(2872), + [sym_comment] = ACTIONS(81), }, - [869] = { - [anon_sym_LF] = ACTIONS(2937), - [sym_preproc_arg] = ACTIONS(2939), - [sym_comment] = ACTIONS(95), + [812] = { + [anon_sym_LF] = ACTIONS(2874), + [sym_preproc_arg] = ACTIONS(2874), + [sym_comment] = ACTIONS(91), }, - [870] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1011), - [sym_preproc_directive] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_typedef] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_LPAREN2] = ACTIONS(1009), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_static] = ACTIONS(1011), - [anon_sym_auto] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_inline] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [anon_sym_restrict] = ACTIONS(1011), - [anon_sym_volatile] = ACTIONS(1011), - [anon_sym__Atomic] = ACTIONS(1011), - [anon_sym_unsigned] = ACTIONS(1011), - [anon_sym_long] = ACTIONS(1011), - [anon_sym_short] = ACTIONS(1011), - [sym_primitive_type] = ACTIONS(1011), - [anon_sym_enum] = ACTIONS(1011), - [anon_sym_struct] = ACTIONS(1011), - [anon_sym_union] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_switch] = ACTIONS(1011), - [anon_sym_case] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_goto] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_TILDE] = ACTIONS(1009), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1009), - [anon_sym_PLUS_PLUS] = ACTIONS(1009), - [anon_sym_sizeof] = ACTIONS(1011), - [sym_number_literal] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1009), - [sym_true] = ACTIONS(1011), - [sym_false] = ACTIONS(1011), - [sym_null] = ACTIONS(1011), - [sym_identifier] = ACTIONS(1011), - [sym_comment] = ACTIONS(85), + [813] = { + [aux_sym_preproc_params_repeat1] = STATE(813), + [anon_sym_COMMA] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2872), + [sym_comment] = ACTIONS(81), }, - [871] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2941), - [sym_comment] = ACTIONS(85), + [814] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [sym_null] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1450), + [sym_comment] = ACTIONS(81), }, - [872] = { - [sym_preproc_include] = STATE(447), - [sym_preproc_def] = STATE(447), - [sym_preproc_function_def] = STATE(447), - [sym_preproc_call] = STATE(447), - [sym_preproc_if] = STATE(447), - [sym_preproc_ifdef] = STATE(447), - [sym_preproc_else] = STATE(1040), - [sym_preproc_elif] = STATE(1040), - [sym_function_definition] = STATE(447), - [sym_declaration] = STATE(447), - [sym_type_definition] = STATE(447), - [sym__declaration_specifiers] = STATE(200), - [sym_linkage_specification] = STATE(447), - [sym_compound_statement] = STATE(447), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(447), - [sym_expression_statement] = STATE(447), - [sym_if_statement] = STATE(447), - [sym_switch_statement] = STATE(447), - [sym_case_statement] = STATE(447), - [sym_while_statement] = STATE(447), - [sym_do_statement] = STATE(447), - [sym_for_statement] = STATE(447), - [sym_return_statement] = STATE(447), - [sym_break_statement] = STATE(447), - [sym_continue_statement] = STATE(447), - [sym_goto_statement] = STATE(447), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(447), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(447), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2943), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(384), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [815] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1628), + [sym_preproc_directive] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1626), + [anon_sym_typedef] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_LPAREN2] = ACTIONS(1626), + [anon_sym_STAR] = ACTIONS(1626), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_auto] = ACTIONS(1628), + [anon_sym_register] = ACTIONS(1628), + [anon_sym_inline] = ACTIONS(1628), + [anon_sym_const] = ACTIONS(1628), + [anon_sym_restrict] = ACTIONS(1628), + [anon_sym_volatile] = ACTIONS(1628), + [anon_sym__Atomic] = ACTIONS(1628), + [anon_sym_unsigned] = ACTIONS(1628), + [anon_sym_long] = ACTIONS(1628), + [anon_sym_short] = ACTIONS(1628), + [sym_primitive_type] = ACTIONS(1628), + [anon_sym_enum] = ACTIONS(1628), + [anon_sym_struct] = ACTIONS(1628), + [anon_sym_union] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1628), + [anon_sym_switch] = ACTIONS(1628), + [anon_sym_while] = ACTIONS(1628), + [anon_sym_do] = ACTIONS(1628), + [anon_sym_for] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1628), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_goto] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1626), + [anon_sym_PLUS_PLUS] = ACTIONS(1626), + [anon_sym_sizeof] = ACTIONS(1628), + [sym_number_literal] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1626), + [anon_sym_DQUOTE] = ACTIONS(1626), + [sym_true] = ACTIONS(1628), + [sym_false] = ACTIONS(1628), + [sym_null] = ACTIONS(1628), + [sym_identifier] = ACTIONS(1628), + [sym_comment] = ACTIONS(81), + }, + [816] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1632), + [sym_preproc_directive] = ACTIONS(1632), + [anon_sym_SEMI] = ACTIONS(1630), + [anon_sym_typedef] = ACTIONS(1632), + [anon_sym_extern] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1630), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(1630), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_auto] = ACTIONS(1632), + [anon_sym_register] = ACTIONS(1632), + [anon_sym_inline] = ACTIONS(1632), + [anon_sym_const] = ACTIONS(1632), + [anon_sym_restrict] = ACTIONS(1632), + [anon_sym_volatile] = ACTIONS(1632), + [anon_sym__Atomic] = ACTIONS(1632), + [anon_sym_unsigned] = ACTIONS(1632), + [anon_sym_long] = ACTIONS(1632), + [anon_sym_short] = ACTIONS(1632), + [sym_primitive_type] = ACTIONS(1632), + [anon_sym_enum] = ACTIONS(1632), + [anon_sym_struct] = ACTIONS(1632), + [anon_sym_union] = ACTIONS(1632), + [anon_sym_if] = ACTIONS(1632), + [anon_sym_switch] = ACTIONS(1632), + [anon_sym_while] = ACTIONS(1632), + [anon_sym_do] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1632), + [anon_sym_return] = ACTIONS(1632), + [anon_sym_break] = ACTIONS(1632), + [anon_sym_continue] = ACTIONS(1632), + [anon_sym_goto] = ACTIONS(1632), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1632), + [anon_sym_DASH_DASH] = ACTIONS(1630), + [anon_sym_PLUS_PLUS] = ACTIONS(1630), + [anon_sym_sizeof] = ACTIONS(1632), + [sym_number_literal] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_true] = ACTIONS(1632), + [sym_false] = ACTIONS(1632), + [sym_null] = ACTIONS(1632), + [sym_identifier] = ACTIONS(1632), + [sym_comment] = ACTIONS(81), + }, + [817] = { + [anon_sym_LF] = ACTIONS(2879), + [sym_comment] = ACTIONS(91), + }, + [818] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1726), + [sym_preproc_directive] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1724), + [anon_sym_typedef] = ACTIONS(1726), + [anon_sym_extern] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1726), + [anon_sym_auto] = ACTIONS(1726), + [anon_sym_register] = ACTIONS(1726), + [anon_sym_inline] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1726), + [anon_sym_restrict] = ACTIONS(1726), + [anon_sym_volatile] = ACTIONS(1726), + [anon_sym__Atomic] = ACTIONS(1726), + [anon_sym_unsigned] = ACTIONS(1726), + [anon_sym_long] = ACTIONS(1726), + [anon_sym_short] = ACTIONS(1726), + [sym_primitive_type] = ACTIONS(1726), + [anon_sym_enum] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(1726), + [anon_sym_union] = ACTIONS(1726), + [anon_sym_if] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1726), + [anon_sym_do] = ACTIONS(1726), + [anon_sym_for] = ACTIONS(1726), + [anon_sym_return] = ACTIONS(1726), + [anon_sym_break] = ACTIONS(1726), + [anon_sym_continue] = ACTIONS(1726), + [anon_sym_goto] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_BANG] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1724), + [anon_sym_PLUS_PLUS] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_number_literal] = ACTIONS(1724), + [anon_sym_SQUOTE] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [sym_true] = ACTIONS(1726), + [sym_false] = ACTIONS(1726), + [sym_null] = ACTIONS(1726), + [sym_identifier] = ACTIONS(1726), + [sym_comment] = ACTIONS(81), + }, + [819] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2881), + [sym_comment] = ACTIONS(81), + }, + [820] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1799), + [sym_preproc_directive] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_typedef] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_auto] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_inline] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_restrict] = ACTIONS(1799), + [anon_sym_volatile] = ACTIONS(1799), + [anon_sym__Atomic] = ACTIONS(1799), + [anon_sym_unsigned] = ACTIONS(1799), + [anon_sym_long] = ACTIONS(1799), + [anon_sym_short] = ACTIONS(1799), + [sym_primitive_type] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(1799), + [anon_sym_union] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_switch] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_goto] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1797), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1797), + [anon_sym_PLUS_PLUS] = ACTIONS(1797), + [anon_sym_sizeof] = ACTIONS(1799), + [sym_number_literal] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(1797), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_null] = ACTIONS(1799), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(81), + }, + [821] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2883), + [sym_comment] = ACTIONS(81), + }, + [822] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(631), + [sym_preproc_directive] = ACTIONS(631), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_typedef] = ACTIONS(631), + [anon_sym_extern] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN2] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(629), + [anon_sym_static] = ACTIONS(631), + [anon_sym_auto] = ACTIONS(631), + [anon_sym_register] = ACTIONS(631), + [anon_sym_inline] = ACTIONS(631), + [anon_sym_const] = ACTIONS(631), + [anon_sym_restrict] = ACTIONS(631), + [anon_sym_volatile] = ACTIONS(631), + [anon_sym__Atomic] = ACTIONS(631), + [anon_sym_unsigned] = ACTIONS(631), + [anon_sym_long] = ACTIONS(631), + [anon_sym_short] = ACTIONS(631), + [sym_primitive_type] = ACTIONS(631), + [anon_sym_enum] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(631), + [anon_sym_union] = ACTIONS(631), + [anon_sym_if] = ACTIONS(631), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_while] = ACTIONS(631), + [anon_sym_do] = ACTIONS(631), + [anon_sym_for] = ACTIONS(631), + [anon_sym_return] = ACTIONS(631), + [anon_sym_break] = ACTIONS(631), + [anon_sym_continue] = ACTIONS(631), + [anon_sym_goto] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_BANG] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DASH_DASH] = ACTIONS(629), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_sizeof] = ACTIONS(631), + [sym_number_literal] = ACTIONS(629), + [anon_sym_SQUOTE] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(629), + [sym_true] = ACTIONS(631), + [sym_false] = ACTIONS(631), + [sym_null] = ACTIONS(631), + [sym_identifier] = ACTIONS(631), + [sym_comment] = ACTIONS(81), + }, + [823] = { + [aux_sym_string_literal_repeat1] = STATE(296), + [anon_sym_DQUOTE] = ACTIONS(2885), + [aux_sym_SLASH_LBRACK_CARET_BSLASH_BSLASH_DQUOTE_BSLASHn_RBRACK_SLASH] = ACTIONS(635), + [sym_escape_sequence] = ACTIONS(635), + [sym_comment] = ACTIONS(91), + }, + [824] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(905), + [sym_preproc_directive] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_typedef] = ACTIONS(905), + [anon_sym_extern] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_static] = ACTIONS(905), + [anon_sym_auto] = ACTIONS(905), + [anon_sym_register] = ACTIONS(905), + [anon_sym_inline] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_restrict] = ACTIONS(905), + [anon_sym_volatile] = ACTIONS(905), + [anon_sym__Atomic] = ACTIONS(905), + [anon_sym_unsigned] = ACTIONS(905), + [anon_sym_long] = ACTIONS(905), + [anon_sym_short] = ACTIONS(905), + [sym_primitive_type] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [anon_sym_struct] = ACTIONS(905), + [anon_sym_union] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_switch] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_goto] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_TILDE] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_sizeof] = ACTIONS(905), + [sym_number_literal] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [sym_true] = ACTIONS(905), + [sym_false] = ACTIONS(905), + [sym_null] = ACTIONS(905), + [sym_identifier] = ACTIONS(905), + [sym_comment] = ACTIONS(81), + }, + [825] = { + [anon_sym_LF] = ACTIONS(2887), + [sym_comment] = ACTIONS(91), + }, + [826] = { + [anon_sym_LF] = ACTIONS(2889), + [sym_preproc_arg] = ACTIONS(2891), + [sym_comment] = ACTIONS(91), + }, + [827] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(927), + [sym_preproc_directive] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_typedef] = ACTIONS(927), + [anon_sym_extern] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_static] = ACTIONS(927), + [anon_sym_auto] = ACTIONS(927), + [anon_sym_register] = ACTIONS(927), + [anon_sym_inline] = ACTIONS(927), + [anon_sym_const] = ACTIONS(927), + [anon_sym_restrict] = ACTIONS(927), + [anon_sym_volatile] = ACTIONS(927), + [anon_sym__Atomic] = ACTIONS(927), + [anon_sym_unsigned] = ACTIONS(927), + [anon_sym_long] = ACTIONS(927), + [anon_sym_short] = ACTIONS(927), + [sym_primitive_type] = ACTIONS(927), + [anon_sym_enum] = ACTIONS(927), + [anon_sym_struct] = ACTIONS(927), + [anon_sym_union] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_switch] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_break] = ACTIONS(927), + [anon_sym_continue] = ACTIONS(927), + [anon_sym_goto] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_DASH_DASH] = ACTIONS(925), + [anon_sym_PLUS_PLUS] = ACTIONS(925), + [anon_sym_sizeof] = ACTIONS(927), + [sym_number_literal] = ACTIONS(925), + [anon_sym_SQUOTE] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym_true] = ACTIONS(927), + [sym_false] = ACTIONS(927), + [sym_null] = ACTIONS(927), + [sym_identifier] = ACTIONS(927), + [sym_comment] = ACTIONS(81), + }, + [828] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2893), + [sym_comment] = ACTIONS(81), + }, + [829] = { + [sym_preproc_include] = STATE(405), + [sym_preproc_def] = STATE(405), + [sym_preproc_function_def] = STATE(405), + [sym_preproc_call] = STATE(405), + [sym_preproc_if] = STATE(405), + [sym_preproc_ifdef] = STATE(405), + [sym_preproc_else] = STATE(999), + [sym_preproc_elif] = STATE(999), + [sym_function_definition] = STATE(405), + [sym_declaration] = STATE(405), + [sym_type_definition] = STATE(405), + [sym__declaration_specifiers] = STATE(182), + [sym_linkage_specification] = STATE(405), + [sym_compound_statement] = STATE(405), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(405), + [sym_expression_statement] = STATE(405), + [sym_if_statement] = STATE(405), + [sym_switch_statement] = STATE(405), + [sym_while_statement] = STATE(405), + [sym_do_statement] = STATE(405), + [sym_for_statement] = STATE(405), + [sym_return_statement] = STATE(405), + [sym_break_statement] = STATE(405), + [sym_continue_statement] = STATE(405), + [sym_goto_statement] = STATE(405), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(405), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(405), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2895), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(348), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(350), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -37909,168 +35423,163 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [873] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1107), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1107), - [sym_preproc_directive] = ACTIONS(1107), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_typedef] = ACTIONS(1107), - [anon_sym_extern] = ACTIONS(1107), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_LPAREN2] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_static] = ACTIONS(1107), - [anon_sym_auto] = ACTIONS(1107), - [anon_sym_register] = ACTIONS(1107), - [anon_sym_inline] = ACTIONS(1107), - [anon_sym_const] = ACTIONS(1107), - [anon_sym_restrict] = ACTIONS(1107), - [anon_sym_volatile] = ACTIONS(1107), - [anon_sym__Atomic] = ACTIONS(1107), - [anon_sym_unsigned] = ACTIONS(1107), - [anon_sym_long] = ACTIONS(1107), - [anon_sym_short] = ACTIONS(1107), - [sym_primitive_type] = ACTIONS(1107), - [anon_sym_enum] = ACTIONS(1107), - [anon_sym_struct] = ACTIONS(1107), - [anon_sym_union] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_switch] = ACTIONS(1107), - [anon_sym_case] = ACTIONS(1107), - [anon_sym_default] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_do] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_return] = ACTIONS(1107), - [anon_sym_break] = ACTIONS(1107), - [anon_sym_continue] = ACTIONS(1107), - [anon_sym_goto] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1105), - [anon_sym_TILDE] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_DASH_DASH] = ACTIONS(1105), - [anon_sym_PLUS_PLUS] = ACTIONS(1105), - [anon_sym_sizeof] = ACTIONS(1107), - [sym_number_literal] = ACTIONS(1105), - [anon_sym_SQUOTE] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(1105), - [sym_true] = ACTIONS(1107), - [sym_false] = ACTIONS(1107), - [sym_null] = ACTIONS(1107), - [sym_identifier] = ACTIONS(1107), - [sym_comment] = ACTIONS(85), + [830] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1013), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1013), + [sym_preproc_directive] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_typedef] = ACTIONS(1013), + [anon_sym_extern] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_LPAREN2] = ACTIONS(1011), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_auto] = ACTIONS(1013), + [anon_sym_register] = ACTIONS(1013), + [anon_sym_inline] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_restrict] = ACTIONS(1013), + [anon_sym_volatile] = ACTIONS(1013), + [anon_sym__Atomic] = ACTIONS(1013), + [anon_sym_unsigned] = ACTIONS(1013), + [anon_sym_long] = ACTIONS(1013), + [anon_sym_short] = ACTIONS(1013), + [sym_primitive_type] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1013), + [anon_sym_struct] = ACTIONS(1013), + [anon_sym_union] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [anon_sym_do] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_goto] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_TILDE] = ACTIONS(1011), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1011), + [anon_sym_sizeof] = ACTIONS(1013), + [sym_number_literal] = ACTIONS(1011), + [anon_sym_SQUOTE] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1011), + [sym_true] = ACTIONS(1013), + [sym_false] = ACTIONS(1013), + [sym_null] = ACTIONS(1013), + [sym_identifier] = ACTIONS(1013), + [sym_comment] = ACTIONS(81), }, - [874] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2945), - [sym_comment] = ACTIONS(85), + [831] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2897), + [sym_comment] = ACTIONS(81), }, - [875] = { - [sym_preproc_include] = STATE(447), - [sym_preproc_def] = STATE(447), - [sym_preproc_function_def] = STATE(447), - [sym_preproc_call] = STATE(447), - [sym_preproc_if] = STATE(447), - [sym_preproc_ifdef] = STATE(447), - [sym_preproc_else] = STATE(1042), - [sym_preproc_elif] = STATE(1042), - [sym_function_definition] = STATE(447), - [sym_declaration] = STATE(447), - [sym_type_definition] = STATE(447), - [sym__declaration_specifiers] = STATE(200), - [sym_linkage_specification] = STATE(447), - [sym_compound_statement] = STATE(447), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(447), - [sym_expression_statement] = STATE(447), - [sym_if_statement] = STATE(447), - [sym_switch_statement] = STATE(447), - [sym_case_statement] = STATE(447), - [sym_while_statement] = STATE(447), - [sym_do_statement] = STATE(447), - [sym_for_statement] = STATE(447), - [sym_return_statement] = STATE(447), - [sym_break_statement] = STATE(447), - [sym_continue_statement] = STATE(447), - [sym_goto_statement] = STATE(447), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(447), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(447), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(384), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(394), + [832] = { + [sym_preproc_include] = STATE(405), + [sym_preproc_def] = STATE(405), + [sym_preproc_function_def] = STATE(405), + [sym_preproc_call] = STATE(405), + [sym_preproc_if] = STATE(405), + [sym_preproc_ifdef] = STATE(405), + [sym_preproc_else] = STATE(1001), + [sym_preproc_elif] = STATE(1001), + [sym_function_definition] = STATE(405), + [sym_declaration] = STATE(405), + [sym_type_definition] = STATE(405), + [sym__declaration_specifiers] = STATE(182), + [sym_linkage_specification] = STATE(405), + [sym_compound_statement] = STATE(405), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(405), + [sym_expression_statement] = STATE(405), + [sym_if_statement] = STATE(405), + [sym_switch_statement] = STATE(405), + [sym_while_statement] = STATE(405), + [sym_do_statement] = STATE(405), + [sym_for_statement] = STATE(405), + [sym_return_statement] = STATE(405), + [sym_break_statement] = STATE(405), + [sym_continue_statement] = STATE(405), + [sym_goto_statement] = STATE(405), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(405), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(405), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(346), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(348), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(350), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(358), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -38088,166 +35597,161 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [876] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1115), - [sym_preproc_directive] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_typedef] = ACTIONS(1115), - [anon_sym_extern] = ACTIONS(1115), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_LPAREN2] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1113), - [anon_sym_static] = ACTIONS(1115), - [anon_sym_auto] = ACTIONS(1115), - [anon_sym_register] = ACTIONS(1115), - [anon_sym_inline] = ACTIONS(1115), - [anon_sym_const] = ACTIONS(1115), - [anon_sym_restrict] = ACTIONS(1115), - [anon_sym_volatile] = ACTIONS(1115), - [anon_sym__Atomic] = ACTIONS(1115), - [anon_sym_unsigned] = ACTIONS(1115), - [anon_sym_long] = ACTIONS(1115), - [anon_sym_short] = ACTIONS(1115), - [sym_primitive_type] = ACTIONS(1115), - [anon_sym_enum] = ACTIONS(1115), - [anon_sym_struct] = ACTIONS(1115), - [anon_sym_union] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1115), - [anon_sym_switch] = ACTIONS(1115), - [anon_sym_case] = ACTIONS(1115), - [anon_sym_default] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1115), - [anon_sym_do] = ACTIONS(1115), - [anon_sym_for] = ACTIONS(1115), - [anon_sym_return] = ACTIONS(1115), - [anon_sym_break] = ACTIONS(1115), - [anon_sym_continue] = ACTIONS(1115), - [anon_sym_goto] = ACTIONS(1115), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_TILDE] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_DASH_DASH] = ACTIONS(1113), - [anon_sym_PLUS_PLUS] = ACTIONS(1113), - [anon_sym_sizeof] = ACTIONS(1115), - [sym_number_literal] = ACTIONS(1113), - [anon_sym_SQUOTE] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym_true] = ACTIONS(1115), - [sym_false] = ACTIONS(1115), - [sym_null] = ACTIONS(1115), - [sym_identifier] = ACTIONS(1115), - [sym_comment] = ACTIONS(85), + [833] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1021), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1021), + [sym_preproc_directive] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1019), + [anon_sym_typedef] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1019), + [anon_sym_LPAREN2] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_static] = ACTIONS(1021), + [anon_sym_auto] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_inline] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [anon_sym_restrict] = ACTIONS(1021), + [anon_sym_volatile] = ACTIONS(1021), + [anon_sym__Atomic] = ACTIONS(1021), + [anon_sym_unsigned] = ACTIONS(1021), + [anon_sym_long] = ACTIONS(1021), + [anon_sym_short] = ACTIONS(1021), + [sym_primitive_type] = ACTIONS(1021), + [anon_sym_enum] = ACTIONS(1021), + [anon_sym_struct] = ACTIONS(1021), + [anon_sym_union] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_switch] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_goto] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_TILDE] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1019), + [anon_sym_PLUS_PLUS] = ACTIONS(1019), + [anon_sym_sizeof] = ACTIONS(1021), + [sym_number_literal] = ACTIONS(1019), + [anon_sym_SQUOTE] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1019), + [sym_true] = ACTIONS(1021), + [sym_false] = ACTIONS(1021), + [sym_null] = ACTIONS(1021), + [sym_identifier] = ACTIONS(1021), + [sym_comment] = ACTIONS(81), }, - [877] = { - [sym_parameter_list] = STATE(456), - [anon_sym_SEMI] = ACTIONS(2949), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1125), - [sym_comment] = ACTIONS(85), + [834] = { + [sym_parameter_list] = STATE(414), + [anon_sym_SEMI] = ACTIONS(2901), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1031), + [sym_comment] = ACTIONS(81), }, - [878] = { - [sym__type_declarator] = STATE(1044), - [sym_pointer_type_declarator] = STATE(1044), - [sym_function_type_declarator] = STATE(1044), - [sym_array_type_declarator] = STATE(1044), - [anon_sym_LPAREN2] = ACTIONS(437), - [anon_sym_STAR] = ACTIONS(439), - [sym_identifier] = ACTIONS(441), - [sym_comment] = ACTIONS(85), + [835] = { + [sym__type_declarator] = STATE(1003), + [sym_pointer_type_declarator] = STATE(1003), + [sym_function_type_declarator] = STATE(1003), + [sym_array_type_declarator] = STATE(1003), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(401), + [sym_identifier] = ACTIONS(403), + [sym_comment] = ACTIONS(81), }, - [879] = { - [sym_preproc_include] = STATE(1046), - [sym_preproc_def] = STATE(1046), - [sym_preproc_function_def] = STATE(1046), - [sym_preproc_call] = STATE(1046), - [sym_preproc_if] = STATE(1046), - [sym_preproc_ifdef] = STATE(1046), - [sym_function_definition] = STATE(1046), - [sym_declaration] = STATE(1046), - [sym_type_definition] = STATE(1046), - [sym__declaration_specifiers] = STATE(37), - [sym_linkage_specification] = STATE(1046), - [sym_compound_statement] = STATE(1046), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(1046), - [sym_expression_statement] = STATE(1046), - [sym_if_statement] = STATE(1046), - [sym_switch_statement] = STATE(1046), - [sym_case_statement] = STATE(1046), - [sym_while_statement] = STATE(1046), - [sym_do_statement] = STATE(1046), - [sym_for_statement] = STATE(1046), - [sym_return_statement] = STATE(1046), - [sym_break_statement] = STATE(1046), - [sym_continue_statement] = STATE(1046), - [sym_goto_statement] = STATE(1046), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(1046), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(1046), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), + [836] = { + [sym_preproc_include] = STATE(1005), + [sym_preproc_def] = STATE(1005), + [sym_preproc_function_def] = STATE(1005), + [sym_preproc_call] = STATE(1005), + [sym_preproc_if] = STATE(1005), + [sym_preproc_ifdef] = STATE(1005), + [sym_function_definition] = STATE(1005), + [sym_declaration] = STATE(1005), + [sym_type_definition] = STATE(1005), + [sym__declaration_specifiers] = STATE(35), + [sym_linkage_specification] = STATE(1005), + [sym_compound_statement] = STATE(1005), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(1005), + [sym_expression_statement] = STATE(1005), + [sym_if_statement] = STATE(1005), + [sym_switch_statement] = STATE(1005), + [sym_while_statement] = STATE(1005), + [sym_do_statement] = STATE(1005), + [sym_for_statement] = STATE(1005), + [sym_return_statement] = STATE(1005), + [sym_break_statement] = STATE(1005), + [sym_continue_statement] = STATE(1005), + [sym_goto_statement] = STATE(1005), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(1005), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(1005), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), @@ -38258,7 +35762,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2951), + [anon_sym_RBRACE] = ACTIONS(2903), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -38276,1269 +35780,1042 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(133), - [sym_comment] = ACTIONS(85), - }, - [880] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1139), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_SEMI] = ACTIONS(1137), - [anon_sym_typedef] = ACTIONS(1139), - [anon_sym_extern] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1137), - [anon_sym_LPAREN2] = ACTIONS(1137), - [anon_sym_STAR] = ACTIONS(1137), - [anon_sym_static] = ACTIONS(1139), - [anon_sym_auto] = ACTIONS(1139), - [anon_sym_register] = ACTIONS(1139), - [anon_sym_inline] = ACTIONS(1139), - [anon_sym_const] = ACTIONS(1139), - [anon_sym_restrict] = ACTIONS(1139), - [anon_sym_volatile] = ACTIONS(1139), - [anon_sym__Atomic] = ACTIONS(1139), - [anon_sym_unsigned] = ACTIONS(1139), - [anon_sym_long] = ACTIONS(1139), - [anon_sym_short] = ACTIONS(1139), - [sym_primitive_type] = ACTIONS(1139), - [anon_sym_enum] = ACTIONS(1139), - [anon_sym_struct] = ACTIONS(1139), - [anon_sym_union] = ACTIONS(1139), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(1139), - [anon_sym_do] = ACTIONS(1139), - [anon_sym_for] = ACTIONS(1139), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_break] = ACTIONS(1139), - [anon_sym_continue] = ACTIONS(1139), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym_AMP] = ACTIONS(1137), - [anon_sym_BANG] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1137), - [anon_sym_PLUS] = ACTIONS(1139), - [anon_sym_DASH] = ACTIONS(1139), - [anon_sym_DASH_DASH] = ACTIONS(1137), - [anon_sym_PLUS_PLUS] = ACTIONS(1137), - [anon_sym_sizeof] = ACTIONS(1139), - [sym_number_literal] = ACTIONS(1137), - [anon_sym_SQUOTE] = ACTIONS(1137), - [anon_sym_DQUOTE] = ACTIONS(1137), - [sym_true] = ACTIONS(1139), - [sym_false] = ACTIONS(1139), - [sym_null] = ACTIONS(1139), - [sym_identifier] = ACTIONS(1139), - [sym_comment] = ACTIONS(85), - }, - [881] = { - [sym__declarator] = STATE(672), - [sym_pointer_declarator] = STATE(672), - [sym_function_declarator] = STATE(672), - [sym_array_declarator] = STATE(672), - [sym_init_declarator] = STATE(673), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(295), - [sym_identifier] = ACTIONS(1818), - [sym_comment] = ACTIONS(85), - }, - [882] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1185), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_LPAREN2] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_auto] = ACTIONS(1185), - [anon_sym_register] = ACTIONS(1185), - [anon_sym_inline] = ACTIONS(1185), - [anon_sym_const] = ACTIONS(1185), - [anon_sym_restrict] = ACTIONS(1185), - [anon_sym_volatile] = ACTIONS(1185), - [anon_sym__Atomic] = ACTIONS(1185), - [anon_sym_unsigned] = ACTIONS(1185), - [anon_sym_long] = ACTIONS(1185), - [anon_sym_short] = ACTIONS(1185), - [sym_primitive_type] = ACTIONS(1185), - [anon_sym_enum] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_union] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_switch] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1185), - [sym_number_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [sym_null] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1185), - [sym_comment] = ACTIONS(85), - }, - [883] = { - [sym_parenthesized_expression] = STATE(1047), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(123), + [sym_comment] = ACTIONS(81), }, - [884] = { - [sym_parenthesized_expression] = STATE(1048), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), - }, - [885] = { - [sym__expression] = STATE(1049), - [sym_conditional_expression] = STATE(1049), - [sym_assignment_expression] = STATE(1049), - [sym_pointer_expression] = STATE(1049), - [sym_logical_expression] = STATE(1049), - [sym_bitwise_expression] = STATE(1049), - [sym_equality_expression] = STATE(1049), - [sym_relational_expression] = STATE(1049), - [sym_shift_expression] = STATE(1049), - [sym_math_expression] = STATE(1049), - [sym_cast_expression] = STATE(1049), - [sym_sizeof_expression] = STATE(1049), - [sym_subscript_expression] = STATE(1049), - [sym_call_expression] = STATE(1049), - [sym_field_expression] = STATE(1049), - [sym_compound_literal_expression] = STATE(1049), - [sym_parenthesized_expression] = STATE(1049), - [sym_char_literal] = STATE(1049), - [sym_concatenated_string] = STATE(1049), - [sym_string_literal] = STATE(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2955), - [sym_false] = ACTIONS(2955), - [sym_null] = ACTIONS(2955), - [sym_identifier] = ACTIONS(2955), - [sym_comment] = ACTIONS(85), + [837] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1045), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1045), + [sym_preproc_directive] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_typedef] = ACTIONS(1045), + [anon_sym_extern] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_LPAREN2] = ACTIONS(1043), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_auto] = ACTIONS(1045), + [anon_sym_register] = ACTIONS(1045), + [anon_sym_inline] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_restrict] = ACTIONS(1045), + [anon_sym_volatile] = ACTIONS(1045), + [anon_sym__Atomic] = ACTIONS(1045), + [anon_sym_unsigned] = ACTIONS(1045), + [anon_sym_long] = ACTIONS(1045), + [anon_sym_short] = ACTIONS(1045), + [sym_primitive_type] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_union] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_switch] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [anon_sym_do] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_goto] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_TILDE] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_DASH_DASH] = ACTIONS(1043), + [anon_sym_PLUS_PLUS] = ACTIONS(1043), + [anon_sym_sizeof] = ACTIONS(1045), + [sym_number_literal] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1043), + [anon_sym_DQUOTE] = ACTIONS(1043), + [sym_true] = ACTIONS(1045), + [sym_false] = ACTIONS(1045), + [sym_null] = ACTIONS(1045), + [sym_identifier] = ACTIONS(1045), + [sym_comment] = ACTIONS(81), }, - [886] = { - [anon_sym_COLON] = ACTIONS(2957), - [sym_comment] = ACTIONS(85), + [838] = { + [sym__declarator] = STATE(624), + [sym_pointer_declarator] = STATE(624), + [sym_function_declarator] = STATE(624), + [sym_array_declarator] = STATE(624), + [sym_init_declarator] = STATE(625), + [anon_sym_LPAREN2] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(261), + [sym_identifier] = ACTIONS(1684), + [sym_comment] = ACTIONS(81), }, - [887] = { - [sym_parenthesized_expression] = STATE(1051), - [anon_sym_LPAREN2] = ACTIONS(179), - [sym_comment] = ACTIONS(85), + [839] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1081), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1081), + [sym_preproc_directive] = ACTIONS(1081), + [anon_sym_SEMI] = ACTIONS(1079), + [anon_sym_typedef] = ACTIONS(1081), + [anon_sym_extern] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN2] = ACTIONS(1079), + [anon_sym_STAR] = ACTIONS(1079), + [anon_sym_static] = ACTIONS(1081), + [anon_sym_auto] = ACTIONS(1081), + [anon_sym_register] = ACTIONS(1081), + [anon_sym_inline] = ACTIONS(1081), + [anon_sym_const] = ACTIONS(1081), + [anon_sym_restrict] = ACTIONS(1081), + [anon_sym_volatile] = ACTIONS(1081), + [anon_sym__Atomic] = ACTIONS(1081), + [anon_sym_unsigned] = ACTIONS(1081), + [anon_sym_long] = ACTIONS(1081), + [anon_sym_short] = ACTIONS(1081), + [sym_primitive_type] = ACTIONS(1081), + [anon_sym_enum] = ACTIONS(1081), + [anon_sym_struct] = ACTIONS(1081), + [anon_sym_union] = ACTIONS(1081), + [anon_sym_if] = ACTIONS(1081), + [anon_sym_else] = ACTIONS(1081), + [anon_sym_switch] = ACTIONS(1081), + [anon_sym_while] = ACTIONS(1081), + [anon_sym_do] = ACTIONS(1081), + [anon_sym_for] = ACTIONS(1081), + [anon_sym_return] = ACTIONS(1081), + [anon_sym_break] = ACTIONS(1081), + [anon_sym_continue] = ACTIONS(1081), + [anon_sym_goto] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1079), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_DASH_DASH] = ACTIONS(1079), + [anon_sym_PLUS_PLUS] = ACTIONS(1079), + [anon_sym_sizeof] = ACTIONS(1081), + [sym_number_literal] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1079), + [anon_sym_DQUOTE] = ACTIONS(1079), + [sym_true] = ACTIONS(1081), + [sym_false] = ACTIONS(1081), + [sym_null] = ACTIONS(1081), + [sym_identifier] = ACTIONS(1081), + [sym_comment] = ACTIONS(81), }, - [888] = { - [anon_sym_LPAREN2] = ACTIONS(2959), - [sym_comment] = ACTIONS(85), + [840] = { + [sym_parenthesized_expression] = STATE(1006), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [889] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(2961), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_comment] = ACTIONS(85), + [841] = { + [sym_parenthesized_expression] = STATE(1007), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, - [890] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_else] = ACTIONS(2963), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [sym_null] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1454), - [sym_comment] = ACTIONS(85), + [842] = { + [anon_sym_LPAREN2] = ACTIONS(2905), + [sym_comment] = ACTIONS(81), }, - [891] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_LPAREN2] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(285), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_COLON] = ACTIONS(1814), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_comment] = ACTIONS(85), + [843] = { + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(2907), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_comment] = ACTIONS(81), }, - [892] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_else] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_null] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1460), - [sym_comment] = ACTIONS(85), + [844] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(2909), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_null] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1338), + [sym_comment] = ACTIONS(81), }, - [893] = { - [sym_declaration] = STATE(1055), - [sym_type_definition] = STATE(1055), - [sym__declaration_specifiers] = STATE(896), - [sym_compound_statement] = STATE(1055), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_labeled_statement] = STATE(1055), - [sym_expression_statement] = STATE(1055), - [sym_if_statement] = STATE(1055), - [sym_switch_statement] = STATE(1055), - [sym_case_statement] = STATE(1055), - [sym_while_statement] = STATE(1055), - [sym_do_statement] = STATE(1055), - [sym_for_statement] = STATE(1055), - [sym_return_statement] = STATE(1055), - [sym_break_statement] = STATE(1055), - [sym_continue_statement] = STATE(1055), - [sym_goto_statement] = STATE(1055), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_typedef] = ACTIONS(1029), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(1033), + [845] = { + [sym_compound_statement] = STATE(1012), + [sym_labeled_statement] = STATE(1012), + [sym_expression_statement] = STATE(1012), + [sym_if_statement] = STATE(1012), + [sym_switch_statement] = STATE(1012), + [sym_case_statement] = STATE(1012), + [sym_while_statement] = STATE(1012), + [sym_do_statement] = STATE(1012), + [sym_for_statement] = STATE(1012), + [sym_return_statement] = STATE(1012), + [sym_break_statement] = STATE(1012), + [sym_continue_statement] = STATE(1012), + [sym_goto_statement] = STATE(1012), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(1012), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2911), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2412), - [sym_comment] = ACTIONS(85), - }, - [894] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(1814), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(81), }, - [895] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1510), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1510), - [sym_preproc_directive] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_LPAREN2] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_auto] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_inline] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_restrict] = ACTIONS(1510), - [anon_sym_volatile] = ACTIONS(1510), - [anon_sym__Atomic] = ACTIONS(1510), - [anon_sym_unsigned] = ACTIONS(1510), - [anon_sym_long] = ACTIONS(1510), - [anon_sym_short] = ACTIONS(1510), - [sym_primitive_type] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1510), - [anon_sym_case] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_goto] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1508), - [anon_sym_sizeof] = ACTIONS(1510), - [sym_number_literal] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1508), - [sym_true] = ACTIONS(1510), - [sym_false] = ACTIONS(1510), - [sym_null] = ACTIONS(1510), - [sym_identifier] = ACTIONS(1510), - [sym_comment] = ACTIONS(85), + [846] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1358), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [sym_null] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1358), + [sym_comment] = ACTIONS(81), }, - [896] = { - [sym__declarator] = STATE(938), - [sym_pointer_declarator] = STATE(938), - [sym_function_declarator] = STATE(938), - [sym_array_declarator] = STATE(938), - [sym_init_declarator] = STATE(673), - [anon_sym_LPAREN2] = ACTIONS(293), - [anon_sym_STAR] = ACTIONS(471), - [sym_identifier] = ACTIONS(2588), - [sym_comment] = ACTIONS(85), + [847] = { + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(1680), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_comment] = ACTIONS(81), }, - [897] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1514), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1514), - [sym_preproc_directive] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_typedef] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_auto] = ACTIONS(1514), - [anon_sym_register] = ACTIONS(1514), - [anon_sym_inline] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_restrict] = ACTIONS(1514), - [anon_sym_volatile] = ACTIONS(1514), - [anon_sym__Atomic] = ACTIONS(1514), - [anon_sym_unsigned] = ACTIONS(1514), - [anon_sym_long] = ACTIONS(1514), - [anon_sym_short] = ACTIONS(1514), - [sym_primitive_type] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_else] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_do] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_goto] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(1514), - [sym_number_literal] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1512), - [anon_sym_DQUOTE] = ACTIONS(1512), - [sym_true] = ACTIONS(1514), - [sym_false] = ACTIONS(1514), - [sym_null] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1514), - [sym_comment] = ACTIONS(85), + [848] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1362), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [sym_null] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1362), + [sym_comment] = ACTIONS(81), }, - [898] = { - [sym_parenthesized_expression] = STATE(1057), - [anon_sym_LPAREN2] = ACTIONS(2965), - [sym_comment] = ACTIONS(85), + [849] = { + [sym_parenthesized_expression] = STATE(1014), + [anon_sym_LPAREN2] = ACTIONS(2913), + [sym_comment] = ACTIONS(81), }, - [899] = { - [sym__expression] = STATE(1059), - [sym_conditional_expression] = STATE(1059), - [sym_assignment_expression] = STATE(1059), - [sym_pointer_expression] = STATE(1059), - [sym_logical_expression] = STATE(1059), - [sym_bitwise_expression] = STATE(1059), - [sym_equality_expression] = STATE(1059), - [sym_relational_expression] = STATE(1059), - [sym_shift_expression] = STATE(1059), - [sym_math_expression] = STATE(1059), - [sym_cast_expression] = STATE(1059), - [sym_sizeof_expression] = STATE(1059), - [sym_subscript_expression] = STATE(1059), - [sym_call_expression] = STATE(1059), - [sym_field_expression] = STATE(1059), - [sym_compound_literal_expression] = STATE(1059), - [sym_parenthesized_expression] = STATE(1059), - [sym_char_literal] = STATE(1059), - [sym_concatenated_string] = STATE(1059), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2969), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2971), - [sym_false] = ACTIONS(2971), - [sym_null] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2971), - [sym_comment] = ACTIONS(85), + [850] = { + [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(107), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2917), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2919), + [sym_false] = ACTIONS(2919), + [sym_null] = ACTIONS(2919), + [sym_identifier] = ACTIONS(2919), + [sym_comment] = ACTIONS(81), }, - [900] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(2973), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [851] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [901] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1554), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1554), - [sym_preproc_directive] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1552), - [anon_sym_typedef] = ACTIONS(1554), - [anon_sym_extern] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_LPAREN2] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_static] = ACTIONS(1554), - [anon_sym_auto] = ACTIONS(1554), - [anon_sym_register] = ACTIONS(1554), - [anon_sym_inline] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1554), - [anon_sym_restrict] = ACTIONS(1554), - [anon_sym_volatile] = ACTIONS(1554), - [anon_sym__Atomic] = ACTIONS(1554), - [anon_sym_unsigned] = ACTIONS(1554), - [anon_sym_long] = ACTIONS(1554), - [anon_sym_short] = ACTIONS(1554), - [sym_primitive_type] = ACTIONS(1554), - [anon_sym_enum] = ACTIONS(1554), - [anon_sym_struct] = ACTIONS(1554), - [anon_sym_union] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_else] = ACTIONS(1554), - [anon_sym_switch] = ACTIONS(1554), - [anon_sym_case] = ACTIONS(1554), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_do] = ACTIONS(1554), - [anon_sym_for] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_goto] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1552), - [anon_sym_TILDE] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_sizeof] = ACTIONS(1554), - [sym_number_literal] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1552), - [anon_sym_DQUOTE] = ACTIONS(1552), - [sym_true] = ACTIONS(1554), - [sym_false] = ACTIONS(1554), - [sym_null] = ACTIONS(1554), - [sym_identifier] = ACTIONS(1554), - [sym_comment] = ACTIONS(85), + [852] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1392), + [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), + [sym_preproc_directive] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_auto] = ACTIONS(1392), + [anon_sym_register] = ACTIONS(1392), + [anon_sym_inline] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_restrict] = ACTIONS(1392), + [anon_sym_volatile] = ACTIONS(1392), + [anon_sym__Atomic] = ACTIONS(1392), + [anon_sym_unsigned] = ACTIONS(1392), + [anon_sym_long] = ACTIONS(1392), + [anon_sym_short] = ACTIONS(1392), + [sym_primitive_type] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_do] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_goto] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1392), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_null] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1392), + [sym_comment] = ACTIONS(81), }, - [902] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1602), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1602), - [sym_preproc_directive] = ACTIONS(1602), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_typedef] = ACTIONS(1602), - [anon_sym_extern] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_LPAREN2] = ACTIONS(1600), - [anon_sym_STAR] = ACTIONS(1600), - [anon_sym_static] = ACTIONS(1602), - [anon_sym_auto] = ACTIONS(1602), - [anon_sym_register] = ACTIONS(1602), - [anon_sym_inline] = ACTIONS(1602), - [anon_sym_const] = ACTIONS(1602), - [anon_sym_restrict] = ACTIONS(1602), - [anon_sym_volatile] = ACTIONS(1602), - [anon_sym__Atomic] = ACTIONS(1602), - [anon_sym_unsigned] = ACTIONS(1602), - [anon_sym_long] = ACTIONS(1602), - [anon_sym_short] = ACTIONS(1602), - [sym_primitive_type] = ACTIONS(1602), - [anon_sym_enum] = ACTIONS(1602), - [anon_sym_struct] = ACTIONS(1602), - [anon_sym_union] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1602), - [anon_sym_else] = ACTIONS(1602), - [anon_sym_switch] = ACTIONS(1602), - [anon_sym_case] = ACTIONS(1602), - [anon_sym_default] = ACTIONS(1602), - [anon_sym_while] = ACTIONS(1602), - [anon_sym_do] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1602), - [anon_sym_return] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1602), - [anon_sym_continue] = ACTIONS(1602), - [anon_sym_goto] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1600), - [anon_sym_BANG] = ACTIONS(1600), - [anon_sym_TILDE] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1602), - [anon_sym_DASH] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1600), - [anon_sym_sizeof] = ACTIONS(1602), - [sym_number_literal] = ACTIONS(1600), - [anon_sym_SQUOTE] = ACTIONS(1600), - [anon_sym_DQUOTE] = ACTIONS(1600), - [sym_true] = ACTIONS(1602), - [sym_false] = ACTIONS(1602), - [sym_null] = ACTIONS(1602), - [sym_identifier] = ACTIONS(1602), - [sym_comment] = ACTIONS(85), + [853] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1440), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1440), + [sym_preproc_directive] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_auto] = ACTIONS(1440), + [anon_sym_register] = ACTIONS(1440), + [anon_sym_inline] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_restrict] = ACTIONS(1440), + [anon_sym_volatile] = ACTIONS(1440), + [anon_sym__Atomic] = ACTIONS(1440), + [anon_sym_unsigned] = ACTIONS(1440), + [anon_sym_long] = ACTIONS(1440), + [anon_sym_short] = ACTIONS(1440), + [sym_primitive_type] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [anon_sym_switch] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_do] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_goto] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_DASH_DASH] = ACTIONS(1438), + [anon_sym_PLUS_PLUS] = ACTIONS(1438), + [anon_sym_sizeof] = ACTIONS(1440), + [sym_number_literal] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [sym_true] = ACTIONS(1440), + [sym_false] = ACTIONS(1440), + [sym_null] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1440), + [sym_comment] = ACTIONS(81), }, - [903] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1623), - [sym_preproc_directive] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_typedef] = ACTIONS(1623), - [anon_sym_extern] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(1621), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1623), - [anon_sym_auto] = ACTIONS(1623), - [anon_sym_register] = ACTIONS(1623), - [anon_sym_inline] = ACTIONS(1623), - [anon_sym_const] = ACTIONS(1623), - [anon_sym_restrict] = ACTIONS(1623), - [anon_sym_volatile] = ACTIONS(1623), - [anon_sym__Atomic] = ACTIONS(1623), - [anon_sym_unsigned] = ACTIONS(1623), - [anon_sym_long] = ACTIONS(1623), - [anon_sym_short] = ACTIONS(1623), - [sym_primitive_type] = ACTIONS(1623), - [anon_sym_enum] = ACTIONS(1623), - [anon_sym_struct] = ACTIONS(1623), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(1623), - [anon_sym_else] = ACTIONS(1623), - [anon_sym_switch] = ACTIONS(1623), - [anon_sym_case] = ACTIONS(1623), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_while] = ACTIONS(1623), - [anon_sym_do] = ACTIONS(1623), - [anon_sym_for] = ACTIONS(1623), - [anon_sym_return] = ACTIONS(1623), - [anon_sym_break] = ACTIONS(1623), - [anon_sym_continue] = ACTIONS(1623), - [anon_sym_goto] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym_true] = ACTIONS(1623), - [sym_false] = ACTIONS(1623), - [sym_null] = ACTIONS(1623), - [sym_identifier] = ACTIONS(1623), - [sym_comment] = ACTIONS(85), + [854] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1461), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1461), + [sym_preproc_directive] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_typedef] = ACTIONS(1461), + [anon_sym_extern] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_LPAREN2] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_auto] = ACTIONS(1461), + [anon_sym_register] = ACTIONS(1461), + [anon_sym_inline] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_restrict] = ACTIONS(1461), + [anon_sym_volatile] = ACTIONS(1461), + [anon_sym__Atomic] = ACTIONS(1461), + [anon_sym_unsigned] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [sym_primitive_type] = ACTIONS(1461), + [anon_sym_enum] = ACTIONS(1461), + [anon_sym_struct] = ACTIONS(1461), + [anon_sym_union] = ACTIONS(1461), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_goto] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_sizeof] = ACTIONS(1461), + [sym_number_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [sym_true] = ACTIONS(1461), + [sym_false] = ACTIONS(1461), + [sym_null] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1461), + [sym_comment] = ACTIONS(81), }, - [904] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1635), - [sym_preproc_directive] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_typedef] = ACTIONS(1635), - [anon_sym_extern] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1635), - [anon_sym_auto] = ACTIONS(1635), - [anon_sym_register] = ACTIONS(1635), - [anon_sym_inline] = ACTIONS(1635), - [anon_sym_const] = ACTIONS(1635), - [anon_sym_restrict] = ACTIONS(1635), - [anon_sym_volatile] = ACTIONS(1635), - [anon_sym__Atomic] = ACTIONS(1635), - [anon_sym_unsigned] = ACTIONS(1635), - [anon_sym_long] = ACTIONS(1635), - [anon_sym_short] = ACTIONS(1635), - [sym_primitive_type] = ACTIONS(1635), - [anon_sym_enum] = ACTIONS(1635), - [anon_sym_struct] = ACTIONS(1635), - [anon_sym_union] = ACTIONS(1635), - [anon_sym_if] = ACTIONS(1635), - [anon_sym_else] = ACTIONS(1635), - [anon_sym_switch] = ACTIONS(1635), - [anon_sym_case] = ACTIONS(1635), - [anon_sym_default] = ACTIONS(1635), - [anon_sym_while] = ACTIONS(1635), - [anon_sym_do] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1635), - [anon_sym_return] = ACTIONS(1635), - [anon_sym_break] = ACTIONS(1635), - [anon_sym_continue] = ACTIONS(1635), - [anon_sym_goto] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_BANG] = ACTIONS(1633), - [anon_sym_TILDE] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_PLUS_PLUS] = ACTIONS(1633), - [anon_sym_sizeof] = ACTIONS(1635), - [sym_number_literal] = ACTIONS(1633), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym_true] = ACTIONS(1635), - [sym_false] = ACTIONS(1635), - [sym_null] = ACTIONS(1635), - [sym_identifier] = ACTIONS(1635), - [sym_comment] = ACTIONS(85), + [855] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1473), + [sym_preproc_directive] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_typedef] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_LPAREN2] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_auto] = ACTIONS(1473), + [anon_sym_register] = ACTIONS(1473), + [anon_sym_inline] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_restrict] = ACTIONS(1473), + [anon_sym_volatile] = ACTIONS(1473), + [anon_sym__Atomic] = ACTIONS(1473), + [anon_sym_unsigned] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [sym_primitive_type] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_goto] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_sizeof] = ACTIONS(1473), + [sym_number_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [sym_true] = ACTIONS(1473), + [sym_false] = ACTIONS(1473), + [sym_null] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1473), + [sym_comment] = ACTIONS(81), }, - [905] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1651), - [sym_preproc_directive] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_typedef] = ACTIONS(1651), - [anon_sym_extern] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_LPAREN2] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1651), - [anon_sym_auto] = ACTIONS(1651), - [anon_sym_register] = ACTIONS(1651), - [anon_sym_inline] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [anon_sym_restrict] = ACTIONS(1651), - [anon_sym_volatile] = ACTIONS(1651), - [anon_sym__Atomic] = ACTIONS(1651), - [anon_sym_unsigned] = ACTIONS(1651), - [anon_sym_long] = ACTIONS(1651), - [anon_sym_short] = ACTIONS(1651), - [sym_primitive_type] = ACTIONS(1651), - [anon_sym_enum] = ACTIONS(1651), - [anon_sym_struct] = ACTIONS(1651), - [anon_sym_union] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_switch] = ACTIONS(1651), - [anon_sym_case] = ACTIONS(1651), - [anon_sym_default] = ACTIONS(1651), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_do] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_goto] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1649), - [anon_sym_TILDE] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_DASH_DASH] = ACTIONS(1649), - [anon_sym_PLUS_PLUS] = ACTIONS(1649), - [anon_sym_sizeof] = ACTIONS(1651), - [sym_number_literal] = ACTIONS(1649), - [anon_sym_SQUOTE] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_true] = ACTIONS(1651), - [sym_false] = ACTIONS(1651), - [sym_null] = ACTIONS(1651), - [sym_identifier] = ACTIONS(1651), - [sym_comment] = ACTIONS(85), + [856] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1489), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1489), + [sym_preproc_directive] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_typedef] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_LPAREN2] = ACTIONS(1487), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_auto] = ACTIONS(1489), + [anon_sym_register] = ACTIONS(1489), + [anon_sym_inline] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_restrict] = ACTIONS(1489), + [anon_sym_volatile] = ACTIONS(1489), + [anon_sym__Atomic] = ACTIONS(1489), + [anon_sym_unsigned] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [sym_primitive_type] = ACTIONS(1489), + [anon_sym_enum] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1489), + [anon_sym_union] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_goto] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_sizeof] = ACTIONS(1489), + [sym_number_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [sym_true] = ACTIONS(1489), + [sym_false] = ACTIONS(1489), + [sym_null] = ACTIONS(1489), + [sym_identifier] = ACTIONS(1489), + [sym_comment] = ACTIONS(81), }, - [906] = { - [aux_sym_declaration_repeat1] = STATE(609), - [anon_sym_COMMA] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(2975), - [sym_comment] = ACTIONS(85), + [857] = { + [aux_sym_declaration_repeat1] = STATE(547), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(2923), + [sym_comment] = ACTIONS(81), }, - [907] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2977), - [sym_comment] = ACTIONS(85), + [858] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2925), + [sym_comment] = ACTIONS(81), }, - [908] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1957), - [sym_preproc_directive] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_typedef] = ACTIONS(1957), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_static] = ACTIONS(1957), - [anon_sym_auto] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), - [anon_sym_inline] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [anon_sym_restrict] = ACTIONS(1957), - [anon_sym_volatile] = ACTIONS(1957), - [anon_sym__Atomic] = ACTIONS(1957), - [anon_sym_unsigned] = ACTIONS(1957), - [anon_sym_long] = ACTIONS(1957), - [anon_sym_short] = ACTIONS(1957), - [sym_primitive_type] = ACTIONS(1957), - [anon_sym_enum] = ACTIONS(1957), - [anon_sym_struct] = ACTIONS(1957), - [anon_sym_union] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_switch] = ACTIONS(1957), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_goto] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1957), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_sizeof] = ACTIONS(1957), - [sym_number_literal] = ACTIONS(1955), - [anon_sym_SQUOTE] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym_true] = ACTIONS(1957), - [sym_false] = ACTIONS(1957), - [sym_null] = ACTIONS(1957), - [sym_identifier] = ACTIONS(1957), - [sym_comment] = ACTIONS(85), + [859] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1809), + [sym_preproc_directive] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_typedef] = ACTIONS(1809), + [anon_sym_extern] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_static] = ACTIONS(1809), + [anon_sym_auto] = ACTIONS(1809), + [anon_sym_register] = ACTIONS(1809), + [anon_sym_inline] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_restrict] = ACTIONS(1809), + [anon_sym_volatile] = ACTIONS(1809), + [anon_sym__Atomic] = ACTIONS(1809), + [anon_sym_unsigned] = ACTIONS(1809), + [anon_sym_long] = ACTIONS(1809), + [anon_sym_short] = ACTIONS(1809), + [sym_primitive_type] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_switch] = ACTIONS(1809), + [anon_sym_while] = ACTIONS(1809), + [anon_sym_do] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_TILDE] = ACTIONS(1807), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_sizeof] = ACTIONS(1809), + [sym_number_literal] = ACTIONS(1807), + [anon_sym_SQUOTE] = ACTIONS(1807), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_null] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1809), + [sym_comment] = ACTIONS(81), }, - [909] = { - [sym_parameter_list] = STATE(456), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1125), - [sym_comment] = ACTIONS(85), + [860] = { + [sym_parameter_list] = STATE(414), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1031), + [sym_comment] = ACTIONS(81), }, - [910] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1973), - [sym_preproc_directive] = ACTIONS(1973), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_typedef] = ACTIONS(1973), - [anon_sym_extern] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1973), - [anon_sym_auto] = ACTIONS(1973), - [anon_sym_register] = ACTIONS(1973), - [anon_sym_inline] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1973), - [anon_sym_restrict] = ACTIONS(1973), - [anon_sym_volatile] = ACTIONS(1973), - [anon_sym__Atomic] = ACTIONS(1973), - [anon_sym_unsigned] = ACTIONS(1973), - [anon_sym_long] = ACTIONS(1973), - [anon_sym_short] = ACTIONS(1973), - [sym_primitive_type] = ACTIONS(1973), - [anon_sym_enum] = ACTIONS(1973), - [anon_sym_struct] = ACTIONS(1973), - [anon_sym_union] = ACTIONS(1973), - [anon_sym_if] = ACTIONS(1973), - [anon_sym_switch] = ACTIONS(1973), - [anon_sym_case] = ACTIONS(1973), - [anon_sym_default] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1973), - [anon_sym_do] = ACTIONS(1973), - [anon_sym_for] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1973), - [anon_sym_break] = ACTIONS(1973), - [anon_sym_continue] = ACTIONS(1973), - [anon_sym_goto] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_sizeof] = ACTIONS(1973), - [sym_number_literal] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_null] = ACTIONS(1973), - [sym_identifier] = ACTIONS(1973), - [sym_comment] = ACTIONS(85), + [861] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1825), + [sym_preproc_directive] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_typedef] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_LPAREN2] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_auto] = ACTIONS(1825), + [anon_sym_register] = ACTIONS(1825), + [anon_sym_inline] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_restrict] = ACTIONS(1825), + [anon_sym_volatile] = ACTIONS(1825), + [anon_sym__Atomic] = ACTIONS(1825), + [anon_sym_unsigned] = ACTIONS(1825), + [anon_sym_long] = ACTIONS(1825), + [anon_sym_short] = ACTIONS(1825), + [sym_primitive_type] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_switch] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_do] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_goto] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DASH_DASH] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1823), + [anon_sym_sizeof] = ACTIONS(1825), + [sym_number_literal] = ACTIONS(1823), + [anon_sym_SQUOTE] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [sym_true] = ACTIONS(1825), + [sym_false] = ACTIONS(1825), + [sym_null] = ACTIONS(1825), + [sym_identifier] = ACTIONS(1825), + [sym_comment] = ACTIONS(81), }, - [911] = { - [sym_preproc_include] = STATE(720), - [sym_preproc_def] = STATE(720), - [sym_preproc_function_def] = STATE(720), - [sym_preproc_call] = STATE(720), - [sym_preproc_if] = STATE(720), - [sym_preproc_ifdef] = STATE(720), - [sym_function_definition] = STATE(720), - [sym_declaration] = STATE(720), - [sym_type_definition] = STATE(720), - [sym__declaration_specifiers] = STATE(37), - [sym_linkage_specification] = STATE(720), - [sym_compound_statement] = STATE(720), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(720), - [sym_expression_statement] = STATE(720), - [sym_if_statement] = STATE(720), - [sym_switch_statement] = STATE(720), - [sym_case_statement] = STATE(720), - [sym_while_statement] = STATE(720), - [sym_do_statement] = STATE(720), - [sym_for_statement] = STATE(720), - [sym_return_statement] = STATE(720), - [sym_break_statement] = STATE(720), - [sym_continue_statement] = STATE(720), - [sym_goto_statement] = STATE(720), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(720), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(720), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), + [862] = { + [sym_preproc_include] = STATE(666), + [sym_preproc_def] = STATE(666), + [sym_preproc_function_def] = STATE(666), + [sym_preproc_call] = STATE(666), + [sym_preproc_if] = STATE(666), + [sym_preproc_ifdef] = STATE(666), + [sym_function_definition] = STATE(666), + [sym_declaration] = STATE(666), + [sym_type_definition] = STATE(666), + [sym__declaration_specifiers] = STATE(35), + [sym_linkage_specification] = STATE(666), + [sym_compound_statement] = STATE(666), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(666), + [sym_expression_statement] = STATE(666), + [sym_if_statement] = STATE(666), + [sym_switch_statement] = STATE(666), + [sym_while_statement] = STATE(666), + [sym_do_statement] = STATE(666), + [sym_for_statement] = STATE(666), + [sym_return_statement] = STATE(666), + [sym_break_statement] = STATE(666), + [sym_continue_statement] = STATE(666), + [sym_goto_statement] = STATE(666), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(666), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(666), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), @@ -39549,7 +36826,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2981), + [anon_sym_RBRACE] = ACTIONS(2929), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -39567,263 +36844,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(133), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(123), + [sym_comment] = ACTIONS(81), }, - [912] = { - [sym_compound_statement] = STATE(1064), - [sym_labeled_statement] = STATE(1064), - [sym_expression_statement] = STATE(1064), - [sym_if_statement] = STATE(1064), - [sym_switch_statement] = STATE(1064), - [sym_case_statement] = STATE(1064), - [sym_while_statement] = STATE(1064), - [sym_do_statement] = STATE(1064), - [sym_for_statement] = STATE(1064), - [sym_return_statement] = STATE(1064), - [sym_break_statement] = STATE(1064), - [sym_continue_statement] = STATE(1064), - [sym_goto_statement] = STATE(1064), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [863] = { + [sym_compound_statement] = STATE(1021), + [sym_labeled_statement] = STATE(1021), + [sym_expression_statement] = STATE(1021), + [sym_if_statement] = STATE(1021), + [sym_switch_statement] = STATE(1021), + [sym_while_statement] = STATE(1021), + [sym_do_statement] = STATE(1021), + [sym_for_statement] = STATE(1021), + [sym_return_statement] = STATE(1021), + [sym_break_statement] = STATE(1021), + [sym_continue_statement] = STATE(1021), + [sym_goto_statement] = STATE(1021), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1846), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1706), + [sym_comment] = ACTIONS(81), }, - [913] = { - [sym_compound_statement] = STATE(694), - [sym_labeled_statement] = STATE(694), - [sym_expression_statement] = STATE(694), - [sym_if_statement] = STATE(694), - [sym_switch_statement] = STATE(694), - [sym_case_statement] = STATE(694), - [sym_while_statement] = STATE(694), - [sym_do_statement] = STATE(694), - [sym_for_statement] = STATE(694), - [sym_return_statement] = STATE(694), - [sym_break_statement] = STATE(694), - [sym_continue_statement] = STATE(694), - [sym_goto_statement] = STATE(694), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [864] = { + [sym_compound_statement] = STATE(645), + [sym_labeled_statement] = STATE(645), + [sym_expression_statement] = STATE(645), + [sym_if_statement] = STATE(645), + [sym_switch_statement] = STATE(645), + [sym_while_statement] = STATE(645), + [sym_do_statement] = STATE(645), + [sym_for_statement] = STATE(645), + [sym_return_statement] = STATE(645), + [sym_break_statement] = STATE(645), + [sym_continue_statement] = STATE(645), + [sym_goto_statement] = STATE(645), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1846), - [sym_comment] = ACTIONS(85), - }, - [914] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(2983), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1706), + [sym_comment] = ACTIONS(81), }, - [915] = { - [sym_declaration] = STATE(697), - [sym_type_definition] = STATE(697), - [sym__declaration_specifiers] = STATE(698), - [sym_compound_statement] = STATE(697), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_labeled_statement] = STATE(697), - [sym_expression_statement] = STATE(697), - [sym_if_statement] = STATE(697), - [sym_switch_statement] = STATE(697), - [sym_case_statement] = STATE(697), - [sym_while_statement] = STATE(697), - [sym_do_statement] = STATE(697), - [sym_for_statement] = STATE(697), - [sym_return_statement] = STATE(697), - [sym_break_statement] = STATE(697), - [sym_continue_statement] = STATE(697), - [sym_goto_statement] = STATE(697), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), + [865] = { + [sym_declaration] = STATE(1022), + [sym__declaration_specifiers] = STATE(273), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym__expression] = STATE(1023), + [sym_conditional_expression] = STATE(1023), + [sym_assignment_expression] = STATE(1023), + [sym_pointer_expression] = STATE(1023), + [sym_logical_expression] = STATE(1023), + [sym_bitwise_expression] = STATE(1023), + [sym_equality_expression] = STATE(1023), + [sym_relational_expression] = STATE(1023), + [sym_shift_expression] = STATE(1023), + [sym_math_expression] = STATE(1023), + [sym_cast_expression] = STATE(1023), + [sym_sizeof_expression] = STATE(1023), + [sym_subscript_expression] = STATE(1023), + [sym_call_expression] = STATE(1023), + [sym_field_expression] = STATE(1023), + [sym_compound_literal_expression] = STATE(1023), + [sym_parenthesized_expression] = STATE(1023), + [sym_char_literal] = STATE(1023), + [sym_concatenated_string] = STATE(1023), + [sym_string_literal] = STATE(107), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(2931), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -39832,878 +37043,784 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(2985), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2935), + [sym_false] = ACTIONS(2935), + [sym_null] = ACTIONS(2935), + [sym_identifier] = ACTIONS(559), + [sym_comment] = ACTIONS(81), }, - [916] = { - [sym_compound_statement] = STATE(699), - [sym_labeled_statement] = STATE(699), - [sym_expression_statement] = STATE(699), - [sym_if_statement] = STATE(699), - [sym_switch_statement] = STATE(699), - [sym_case_statement] = STATE(699), - [sym_while_statement] = STATE(699), - [sym_do_statement] = STATE(699), - [sym_for_statement] = STATE(699), - [sym_return_statement] = STATE(699), - [sym_break_statement] = STATE(699), - [sym_continue_statement] = STATE(699), - [sym_goto_statement] = STATE(699), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [866] = { + [sym_compound_statement] = STATE(651), + [sym_labeled_statement] = STATE(651), + [sym_expression_statement] = STATE(651), + [sym_if_statement] = STATE(651), + [sym_switch_statement] = STATE(651), + [sym_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1846), - [sym_comment] = ACTIONS(85), - }, - [917] = { - [sym_declaration] = STATE(1067), - [sym__declaration_specifiers] = STATE(306), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym__expression] = STATE(1068), - [sym_conditional_expression] = STATE(1068), - [sym_assignment_expression] = STATE(1068), - [sym_pointer_expression] = STATE(1068), - [sym_logical_expression] = STATE(1068), - [sym_bitwise_expression] = STATE(1068), - [sym_equality_expression] = STATE(1068), - [sym_relational_expression] = STATE(1068), - [sym_shift_expression] = STATE(1068), - [sym_math_expression] = STATE(1068), - [sym_cast_expression] = STATE(1068), - [sym_sizeof_expression] = STATE(1068), - [sym_subscript_expression] = STATE(1068), - [sym_call_expression] = STATE(1068), - [sym_field_expression] = STATE(1068), - [sym_compound_literal_expression] = STATE(1068), - [sym_parenthesized_expression] = STATE(1068), - [sym_char_literal] = STATE(1068), - [sym_concatenated_string] = STATE(1068), - [sym_string_literal] = STATE(123), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(2989), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2991), - [sym_false] = ACTIONS(2991), - [sym_null] = ACTIONS(2991), - [sym_identifier] = ACTIONS(651), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1706), + [sym_comment] = ACTIONS(81), }, - [918] = { - [sym_compound_statement] = STATE(705), - [sym_labeled_statement] = STATE(705), - [sym_expression_statement] = STATE(705), - [sym_if_statement] = STATE(705), - [sym_switch_statement] = STATE(705), - [sym_case_statement] = STATE(705), - [sym_while_statement] = STATE(705), - [sym_do_statement] = STATE(705), - [sym_for_statement] = STATE(705), - [sym_return_statement] = STATE(705), - [sym_break_statement] = STATE(705), - [sym_continue_statement] = STATE(705), - [sym_goto_statement] = STATE(705), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [867] = { + [sym_compound_statement] = STATE(1024), + [sym_labeled_statement] = STATE(1024), + [sym_expression_statement] = STATE(1024), + [sym_if_statement] = STATE(1024), + [sym_switch_statement] = STATE(1024), + [sym_while_statement] = STATE(1024), + [sym_do_statement] = STATE(1024), + [sym_for_statement] = STATE(1024), + [sym_return_statement] = STATE(1024), + [sym_break_statement] = STATE(1024), + [sym_continue_statement] = STATE(1024), + [sym_goto_statement] = STATE(1024), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1846), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1710), + [sym_comment] = ACTIONS(81), }, - [919] = { - [sym_compound_statement] = STATE(1069), - [sym_labeled_statement] = STATE(1069), - [sym_expression_statement] = STATE(1069), - [sym_if_statement] = STATE(1069), - [sym_switch_statement] = STATE(1069), - [sym_case_statement] = STATE(1069), - [sym_while_statement] = STATE(1069), - [sym_do_statement] = STATE(1069), - [sym_for_statement] = STATE(1069), - [sym_return_statement] = STATE(1069), - [sym_break_statement] = STATE(1069), - [sym_continue_statement] = STATE(1069), - [sym_goto_statement] = STATE(1069), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [868] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2039), + [sym_preproc_directive] = ACTIONS(2039), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_typedef] = ACTIONS(2039), + [anon_sym_extern] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_LPAREN2] = ACTIONS(2037), + [anon_sym_STAR] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_auto] = ACTIONS(2039), + [anon_sym_register] = ACTIONS(2039), + [anon_sym_inline] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_restrict] = ACTIONS(2039), + [anon_sym_volatile] = ACTIONS(2039), + [anon_sym__Atomic] = ACTIONS(2039), + [anon_sym_unsigned] = ACTIONS(2039), + [anon_sym_long] = ACTIONS(2039), + [anon_sym_short] = ACTIONS(2039), + [sym_primitive_type] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_struct] = ACTIONS(2039), + [anon_sym_union] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_goto] = ACTIONS(2039), + [anon_sym_AMP] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2037), + [anon_sym_sizeof] = ACTIONS(2039), + [sym_number_literal] = ACTIONS(2037), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [sym_true] = ACTIONS(2039), + [sym_false] = ACTIONS(2039), + [sym_null] = ACTIONS(2039), + [sym_identifier] = ACTIONS(2039), + [sym_comment] = ACTIONS(81), + }, + [869] = { + [sym_compound_statement] = STATE(761), + [sym_labeled_statement] = STATE(761), + [sym_expression_statement] = STATE(761), + [sym_if_statement] = STATE(761), + [sym_switch_statement] = STATE(761), + [sym_case_statement] = STATE(761), + [sym_while_statement] = STATE(761), + [sym_do_statement] = STATE(761), + [sym_for_statement] = STATE(761), + [sym_return_statement] = STATE(761), + [sym_break_statement] = STATE(761), + [sym_continue_statement] = STATE(761), + [sym_goto_statement] = STATE(761), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(761), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2937), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1848), - [sym_comment] = ACTIONS(85), - }, - [920] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2199), - [sym_preproc_directive] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_typedef] = ACTIONS(2199), - [anon_sym_extern] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_LPAREN2] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_auto] = ACTIONS(2199), - [anon_sym_register] = ACTIONS(2199), - [anon_sym_inline] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_restrict] = ACTIONS(2199), - [anon_sym_volatile] = ACTIONS(2199), - [anon_sym__Atomic] = ACTIONS(2199), - [anon_sym_unsigned] = ACTIONS(2199), - [anon_sym_long] = ACTIONS(2199), - [anon_sym_short] = ACTIONS(2199), - [sym_primitive_type] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), - [anon_sym_struct] = ACTIONS(2199), - [anon_sym_union] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_else] = ACTIONS(2199), - [anon_sym_switch] = ACTIONS(2199), - [anon_sym_case] = ACTIONS(2199), - [anon_sym_default] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_goto] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_sizeof] = ACTIONS(2199), - [sym_number_literal] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_null] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2199), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(81), }, - [921] = { - [sym__expression] = STATE(1070), - [sym_comma_expression] = STATE(1071), - [sym_conditional_expression] = STATE(1070), - [sym_assignment_expression] = STATE(1070), - [sym_pointer_expression] = STATE(1070), - [sym_logical_expression] = STATE(1070), - [sym_bitwise_expression] = STATE(1070), - [sym_equality_expression] = STATE(1070), - [sym_relational_expression] = STATE(1070), - [sym_shift_expression] = STATE(1070), - [sym_math_expression] = STATE(1070), - [sym_cast_expression] = STATE(1070), - [sym_sizeof_expression] = STATE(1070), - [sym_subscript_expression] = STATE(1070), - [sym_call_expression] = STATE(1070), - [sym_field_expression] = STATE(1070), - [sym_compound_literal_expression] = STATE(1070), - [sym_parenthesized_expression] = STATE(1070), - [sym_char_literal] = STATE(1070), - [sym_concatenated_string] = STATE(1070), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(2993), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(2995), - [sym_false] = ACTIONS(2995), - [sym_null] = ACTIONS(2995), - [sym_identifier] = ACTIONS(2995), - [sym_comment] = ACTIONS(85), + [870] = { + [sym__expression] = STATE(1026), + [sym_comma_expression] = STATE(1027), + [sym_conditional_expression] = STATE(1026), + [sym_assignment_expression] = STATE(1026), + [sym_pointer_expression] = STATE(1026), + [sym_logical_expression] = STATE(1026), + [sym_bitwise_expression] = STATE(1026), + [sym_equality_expression] = STATE(1026), + [sym_relational_expression] = STATE(1026), + [sym_shift_expression] = STATE(1026), + [sym_math_expression] = STATE(1026), + [sym_cast_expression] = STATE(1026), + [sym_sizeof_expression] = STATE(1026), + [sym_subscript_expression] = STATE(1026), + [sym_call_expression] = STATE(1026), + [sym_field_expression] = STATE(1026), + [sym_compound_literal_expression] = STATE(1026), + [sym_parenthesized_expression] = STATE(1026), + [sym_char_literal] = STATE(1026), + [sym_concatenated_string] = STATE(1026), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(2939), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2941), + [sym_false] = ACTIONS(2941), + [sym_null] = ACTIONS(2941), + [sym_identifier] = ACTIONS(2941), + [sym_comment] = ACTIONS(81), }, - [922] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2227), - [sym_preproc_directive] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_typedef] = ACTIONS(2227), - [anon_sym_extern] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_auto] = ACTIONS(2227), - [anon_sym_register] = ACTIONS(2227), - [anon_sym_inline] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_restrict] = ACTIONS(2227), - [anon_sym_volatile] = ACTIONS(2227), - [anon_sym__Atomic] = ACTIONS(2227), - [anon_sym_unsigned] = ACTIONS(2227), - [anon_sym_long] = ACTIONS(2227), - [anon_sym_short] = ACTIONS(2227), - [sym_primitive_type] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2227), - [anon_sym_switch] = ACTIONS(2227), - [anon_sym_case] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [anon_sym_do] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_goto] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_sizeof] = ACTIONS(2227), - [sym_number_literal] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [sym_true] = ACTIONS(2227), - [sym_false] = ACTIONS(2227), - [sym_null] = ACTIONS(2227), - [sym_identifier] = ACTIONS(2227), - [sym_comment] = ACTIONS(85), + [871] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2069), + [sym_preproc_directive] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_typedef] = ACTIONS(2069), + [anon_sym_extern] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_auto] = ACTIONS(2069), + [anon_sym_register] = ACTIONS(2069), + [anon_sym_inline] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_restrict] = ACTIONS(2069), + [anon_sym_volatile] = ACTIONS(2069), + [anon_sym__Atomic] = ACTIONS(2069), + [anon_sym_unsigned] = ACTIONS(2069), + [anon_sym_long] = ACTIONS(2069), + [anon_sym_short] = ACTIONS(2069), + [sym_primitive_type] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_struct] = ACTIONS(2069), + [anon_sym_union] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_else] = ACTIONS(2069), + [anon_sym_switch] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_do] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_goto] = ACTIONS(2069), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_sizeof] = ACTIONS(2069), + [sym_number_literal] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [sym_true] = ACTIONS(2069), + [sym_false] = ACTIONS(2069), + [sym_null] = ACTIONS(2069), + [sym_identifier] = ACTIONS(2069), + [sym_comment] = ACTIONS(81), }, - [923] = { - [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(80), - [anon_sym_RPAREN] = ACTIONS(2997), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(2999), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3001), - [sym_false] = ACTIONS(3001), - [sym_null] = ACTIONS(3001), - [sym_identifier] = ACTIONS(3001), - [sym_comment] = ACTIONS(85), + [872] = { + [sym__expression] = STATE(1029), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_pointer_expression] = STATE(1029), + [sym_logical_expression] = STATE(1029), + [sym_bitwise_expression] = STATE(1029), + [sym_equality_expression] = STATE(1029), + [sym_relational_expression] = STATE(1029), + [sym_shift_expression] = STATE(1029), + [sym_math_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(1029), + [sym_call_expression] = STATE(1029), + [sym_field_expression] = STATE(1029), + [sym_compound_literal_expression] = STATE(1029), + [sym_parenthesized_expression] = STATE(1029), + [sym_char_literal] = STATE(1029), + [sym_concatenated_string] = STATE(1029), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(2943), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(2945), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_null] = ACTIONS(2947), + [sym_identifier] = ACTIONS(2947), + [sym_comment] = ACTIONS(81), }, - [924] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [873] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(2949), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [925] = { - [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(123), - [anon_sym_SEMI] = ACTIONS(3003), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(3005), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_null] = ACTIONS(3007), - [sym_identifier] = ACTIONS(3007), - [sym_comment] = ACTIONS(85), + [874] = { + [sym__expression] = STATE(1031), + [sym_conditional_expression] = STATE(1031), + [sym_assignment_expression] = STATE(1031), + [sym_pointer_expression] = STATE(1031), + [sym_logical_expression] = STATE(1031), + [sym_bitwise_expression] = STATE(1031), + [sym_equality_expression] = STATE(1031), + [sym_relational_expression] = STATE(1031), + [sym_shift_expression] = STATE(1031), + [sym_math_expression] = STATE(1031), + [sym_cast_expression] = STATE(1031), + [sym_sizeof_expression] = STATE(1031), + [sym_subscript_expression] = STATE(1031), + [sym_call_expression] = STATE(1031), + [sym_field_expression] = STATE(1031), + [sym_compound_literal_expression] = STATE(1031), + [sym_parenthesized_expression] = STATE(1031), + [sym_char_literal] = STATE(1031), + [sym_concatenated_string] = STATE(1031), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(2949), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(2951), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(2953), + [sym_false] = ACTIONS(2953), + [sym_null] = ACTIONS(2953), + [sym_identifier] = ACTIONS(2953), + [sym_comment] = ACTIONS(81), }, - [926] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2279), - [sym_preproc_directive] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2277), - [anon_sym_typedef] = ACTIONS(2279), - [anon_sym_extern] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2277), - [anon_sym_LPAREN2] = ACTIONS(2277), - [anon_sym_STAR] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2279), - [anon_sym_auto] = ACTIONS(2279), - [anon_sym_register] = ACTIONS(2279), - [anon_sym_inline] = ACTIONS(2279), - [anon_sym_const] = ACTIONS(2279), - [anon_sym_restrict] = ACTIONS(2279), - [anon_sym_volatile] = ACTIONS(2279), - [anon_sym__Atomic] = ACTIONS(2279), - [anon_sym_unsigned] = ACTIONS(2279), - [anon_sym_long] = ACTIONS(2279), - [anon_sym_short] = ACTIONS(2279), - [sym_primitive_type] = ACTIONS(2279), - [anon_sym_enum] = ACTIONS(2279), - [anon_sym_struct] = ACTIONS(2279), - [anon_sym_union] = ACTIONS(2279), - [anon_sym_if] = ACTIONS(2279), - [anon_sym_else] = ACTIONS(2279), - [anon_sym_switch] = ACTIONS(2279), - [anon_sym_case] = ACTIONS(2279), - [anon_sym_default] = ACTIONS(2279), - [anon_sym_while] = ACTIONS(2279), - [anon_sym_do] = ACTIONS(2279), - [anon_sym_for] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2279), - [anon_sym_break] = ACTIONS(2279), - [anon_sym_continue] = ACTIONS(2279), - [anon_sym_goto] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2277), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2277), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2277), - [anon_sym_PLUS_PLUS] = ACTIONS(2277), - [anon_sym_sizeof] = ACTIONS(2279), - [sym_number_literal] = ACTIONS(2277), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_DQUOTE] = ACTIONS(2277), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2279), - [sym_comment] = ACTIONS(85), + [875] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2121), + [sym_preproc_directive] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_typedef] = ACTIONS(2121), + [anon_sym_extern] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LPAREN2] = ACTIONS(2119), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_auto] = ACTIONS(2121), + [anon_sym_register] = ACTIONS(2121), + [anon_sym_inline] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_restrict] = ACTIONS(2121), + [anon_sym_volatile] = ACTIONS(2121), + [anon_sym__Atomic] = ACTIONS(2121), + [anon_sym_unsigned] = ACTIONS(2121), + [anon_sym_long] = ACTIONS(2121), + [anon_sym_short] = ACTIONS(2121), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2121), + [anon_sym_union] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_switch] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_goto] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_sizeof] = ACTIONS(2121), + [sym_number_literal] = ACTIONS(2119), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(2119), + [sym_true] = ACTIONS(2121), + [sym_false] = ACTIONS(2121), + [sym_null] = ACTIONS(2121), + [sym_identifier] = ACTIONS(2121), + [sym_comment] = ACTIONS(81), }, - [927] = { - [anon_sym_RPAREN] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym_LPAREN2] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3009), - [sym_comment] = ACTIONS(85), + [876] = { + [anon_sym_RPAREN] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym_LPAREN2] = ACTIONS(2955), + [anon_sym_LBRACK] = ACTIONS(2955), + [sym_comment] = ACTIONS(81), }, - [928] = { - [sym__expression] = STATE(83), - [sym_conditional_expression] = STATE(83), - [sym_assignment_expression] = STATE(83), - [sym_pointer_expression] = STATE(83), - [sym_logical_expression] = STATE(83), - [sym_bitwise_expression] = STATE(83), - [sym_equality_expression] = STATE(83), - [sym_relational_expression] = STATE(83), - [sym_shift_expression] = STATE(83), - [sym_math_expression] = STATE(83), - [sym_cast_expression] = STATE(83), - [sym_sizeof_expression] = STATE(83), - [sym_subscript_expression] = STATE(83), - [sym_call_expression] = STATE(83), - [sym_field_expression] = STATE(83), - [sym_compound_literal_expression] = STATE(83), - [sym_parenthesized_expression] = STATE(83), - [sym_char_literal] = STATE(83), - [sym_concatenated_string] = STATE(83), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(85), + [877] = { + [sym__expression] = STATE(78), + [sym_conditional_expression] = STATE(78), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(78), + [sym_call_expression] = STATE(78), + [sym_field_expression] = STATE(78), + [sym_compound_literal_expression] = STATE(78), + [sym_parenthesized_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_concatenated_string] = STATE(78), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(2957), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(151), + [sym_false] = ACTIONS(151), + [sym_null] = ACTIONS(151), + [sym_identifier] = ACTIONS(151), + [sym_comment] = ACTIONS(81), }, - [929] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1685), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PERCENT_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_CARET_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [878] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(2957), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [930] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1982), - [sym_preproc_directive] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_typedef] = ACTIONS(1982), - [anon_sym_extern] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1984), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1982), - [anon_sym_auto] = ACTIONS(1982), - [anon_sym_register] = ACTIONS(1982), - [anon_sym_inline] = ACTIONS(1982), - [anon_sym_const] = ACTIONS(1982), - [anon_sym_restrict] = ACTIONS(1982), - [anon_sym_volatile] = ACTIONS(1982), - [anon_sym__Atomic] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [sym_primitive_type] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1982), - [anon_sym_struct] = ACTIONS(1982), - [anon_sym_union] = ACTIONS(1982), - [anon_sym_if] = ACTIONS(1982), - [anon_sym_switch] = ACTIONS(1982), - [anon_sym_case] = ACTIONS(1982), - [anon_sym_default] = ACTIONS(1982), - [anon_sym_while] = ACTIONS(1982), - [anon_sym_do] = ACTIONS(1982), - [anon_sym_for] = ACTIONS(1982), - [anon_sym_return] = ACTIONS(1982), - [anon_sym_break] = ACTIONS(1982), - [anon_sym_continue] = ACTIONS(1982), - [anon_sym_goto] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_TILDE] = ACTIONS(1984), - [anon_sym_PLUS] = ACTIONS(1982), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1982), - [sym_number_literal] = ACTIONS(1984), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1984), - [sym_true] = ACTIONS(1982), - [sym_false] = ACTIONS(1982), - [sym_null] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1982), - [sym_comment] = ACTIONS(85), + [879] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1834), + [sym_preproc_directive] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_typedef] = ACTIONS(1834), + [anon_sym_extern] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN2] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_static] = ACTIONS(1834), + [anon_sym_auto] = ACTIONS(1834), + [anon_sym_register] = ACTIONS(1834), + [anon_sym_inline] = ACTIONS(1834), + [anon_sym_const] = ACTIONS(1834), + [anon_sym_restrict] = ACTIONS(1834), + [anon_sym_volatile] = ACTIONS(1834), + [anon_sym__Atomic] = ACTIONS(1834), + [anon_sym_unsigned] = ACTIONS(1834), + [anon_sym_long] = ACTIONS(1834), + [anon_sym_short] = ACTIONS(1834), + [sym_primitive_type] = ACTIONS(1834), + [anon_sym_enum] = ACTIONS(1834), + [anon_sym_struct] = ACTIONS(1834), + [anon_sym_union] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_switch] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [anon_sym_do] = ACTIONS(1834), + [anon_sym_for] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_break] = ACTIONS(1834), + [anon_sym_continue] = ACTIONS(1834), + [anon_sym_goto] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1836), + [anon_sym_TILDE] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_DASH_DASH] = ACTIONS(1836), + [anon_sym_PLUS_PLUS] = ACTIONS(1836), + [anon_sym_sizeof] = ACTIONS(1834), + [sym_number_literal] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_DQUOTE] = ACTIONS(1836), + [sym_true] = ACTIONS(1834), + [sym_false] = ACTIONS(1834), + [sym_null] = ACTIONS(1834), + [sym_identifier] = ACTIONS(1834), + [sym_comment] = ACTIONS(81), }, - [931] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3013), - [sym_comment] = ACTIONS(85), + [880] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2959), + [sym_comment] = ACTIONS(81), }, - [932] = { - [sym_preproc_include] = STATE(733), - [sym_preproc_def] = STATE(733), - [sym_preproc_function_def] = STATE(733), - [sym_preproc_call] = STATE(733), - [sym_preproc_if_in_compound_statement] = STATE(733), - [sym_preproc_ifdef_in_compound_statement] = STATE(733), - [sym_preproc_else_in_compound_statement] = STATE(1078), - [sym_preproc_elif_in_compound_statement] = STATE(1078), - [sym_declaration] = STATE(733), - [sym_type_definition] = STATE(733), - [sym__declaration_specifiers] = STATE(469), - [sym_compound_statement] = STATE(733), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(733), - [sym_expression_statement] = STATE(733), - [sym_if_statement] = STATE(733), - [sym_switch_statement] = STATE(733), - [sym_case_statement] = STATE(733), - [sym_while_statement] = STATE(733), - [sym_do_statement] = STATE(733), - [sym_for_statement] = STATE(733), - [sym_return_statement] = STATE(733), - [sym_break_statement] = STATE(733), - [sym_continue_statement] = STATE(733), - [sym_goto_statement] = STATE(733), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(733), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(733), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3015), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), + [881] = { + [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(679), + [sym_preproc_ifdef_in_compound_statement] = STATE(679), + [sym_preproc_else_in_compound_statement] = STATE(1034), + [sym_preproc_elif_in_compound_statement] = STATE(1034), + [sym_declaration] = STATE(679), + [sym_type_definition] = STATE(679), + [sym__declaration_specifiers] = STATE(427), + [sym_compound_statement] = STATE(679), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(679), + [sym_expression_statement] = STATE(679), + [sym_if_statement] = STATE(679), + [sym_switch_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(679), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(679), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1051), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2961), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1059), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -40721,168 +37838,163 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [933] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2002), - [sym_preproc_directive] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_typedef] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_LPAREN2] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2002), - [anon_sym_auto] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2002), - [anon_sym_inline] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_restrict] = ACTIONS(2002), - [anon_sym_volatile] = ACTIONS(2002), - [anon_sym__Atomic] = ACTIONS(2002), - [anon_sym_unsigned] = ACTIONS(2002), - [anon_sym_long] = ACTIONS(2002), - [anon_sym_short] = ACTIONS(2002), - [sym_primitive_type] = ACTIONS(2002), - [anon_sym_enum] = ACTIONS(2002), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_switch] = ACTIONS(2002), - [anon_sym_case] = ACTIONS(2002), - [anon_sym_default] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_do] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_goto] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2004), - [anon_sym_PLUS_PLUS] = ACTIONS(2004), - [anon_sym_sizeof] = ACTIONS(2002), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_DQUOTE] = ACTIONS(2004), - [sym_true] = ACTIONS(2002), - [sym_false] = ACTIONS(2002), - [sym_null] = ACTIONS(2002), - [sym_identifier] = ACTIONS(2002), - [sym_comment] = ACTIONS(85), + [882] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1854), + [sym_preproc_directive] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_typedef] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_LPAREN2] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_auto] = ACTIONS(1854), + [anon_sym_register] = ACTIONS(1854), + [anon_sym_inline] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_restrict] = ACTIONS(1854), + [anon_sym_volatile] = ACTIONS(1854), + [anon_sym__Atomic] = ACTIONS(1854), + [anon_sym_unsigned] = ACTIONS(1854), + [anon_sym_long] = ACTIONS(1854), + [anon_sym_short] = ACTIONS(1854), + [sym_primitive_type] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [anon_sym_struct] = ACTIONS(1854), + [anon_sym_union] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_switch] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_goto] = ACTIONS(1854), + [anon_sym_AMP] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(1856), + [anon_sym_TILDE] = ACTIONS(1856), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_DASH_DASH] = ACTIONS(1856), + [anon_sym_PLUS_PLUS] = ACTIONS(1856), + [anon_sym_sizeof] = ACTIONS(1854), + [sym_number_literal] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(1856), + [sym_true] = ACTIONS(1854), + [sym_false] = ACTIONS(1854), + [sym_null] = ACTIONS(1854), + [sym_identifier] = ACTIONS(1854), + [sym_comment] = ACTIONS(81), }, - [934] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3017), - [sym_comment] = ACTIONS(85), + [883] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2963), + [sym_comment] = ACTIONS(81), }, - [935] = { - [sym_preproc_include] = STATE(733), - [sym_preproc_def] = STATE(733), - [sym_preproc_function_def] = STATE(733), - [sym_preproc_call] = STATE(733), - [sym_preproc_if_in_compound_statement] = STATE(733), - [sym_preproc_ifdef_in_compound_statement] = STATE(733), - [sym_preproc_else_in_compound_statement] = STATE(1080), - [sym_preproc_elif_in_compound_statement] = STATE(1080), - [sym_declaration] = STATE(733), - [sym_type_definition] = STATE(733), - [sym__declaration_specifiers] = STATE(469), - [sym_compound_statement] = STATE(733), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(733), - [sym_expression_statement] = STATE(733), - [sym_if_statement] = STATE(733), - [sym_switch_statement] = STATE(733), - [sym_case_statement] = STATE(733), - [sym_while_statement] = STATE(733), - [sym_do_statement] = STATE(733), - [sym_for_statement] = STATE(733), - [sym_return_statement] = STATE(733), - [sym_break_statement] = STATE(733), - [sym_continue_statement] = STATE(733), - [sym_goto_statement] = STATE(733), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(733), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(733), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3019), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), + [884] = { + [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(679), + [sym_preproc_ifdef_in_compound_statement] = STATE(679), + [sym_preproc_else_in_compound_statement] = STATE(1036), + [sym_preproc_elif_in_compound_statement] = STATE(1036), + [sym_declaration] = STATE(679), + [sym_type_definition] = STATE(679), + [sym__declaration_specifiers] = STATE(427), + [sym_compound_statement] = STATE(679), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(679), + [sym_expression_statement] = STATE(679), + [sym_if_statement] = STATE(679), + [sym_switch_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(679), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(679), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1051), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2965), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1059), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -40900,105 +38012,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [936] = { - [sym_preproc_include] = STATE(1083), - [sym_preproc_def] = STATE(1083), - [sym_preproc_function_def] = STATE(1083), - [sym_preproc_call] = STATE(1083), - [sym_preproc_if_in_compound_statement] = STATE(1083), - [sym_preproc_ifdef_in_compound_statement] = STATE(1083), - [sym_preproc_else_in_compound_statement] = STATE(1082), - [sym_preproc_elif_in_compound_statement] = STATE(1082), - [sym_declaration] = STATE(1083), - [sym_type_definition] = STATE(1083), - [sym__declaration_specifiers] = STATE(469), - [sym_compound_statement] = STATE(1083), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [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(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(1083), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3021), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), + [885] = { + [sym_preproc_include] = STATE(1039), + [sym_preproc_def] = STATE(1039), + [sym_preproc_function_def] = STATE(1039), + [sym_preproc_call] = STATE(1039), + [sym_preproc_if_in_compound_statement] = STATE(1039), + [sym_preproc_ifdef_in_compound_statement] = STATE(1039), + [sym_preproc_else_in_compound_statement] = STATE(1038), + [sym_preproc_elif_in_compound_statement] = STATE(1038), + [sym_declaration] = STATE(1039), + [sym_type_definition] = STATE(1039), + [sym__declaration_specifiers] = STATE(427), + [sym_compound_statement] = STATE(1039), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(1039), + [sym_expression_statement] = STATE(1039), + [sym_if_statement] = STATE(1039), + [sym_switch_statement] = STATE(1039), + [sym_while_statement] = STATE(1039), + [sym_do_statement] = STATE(1039), + [sym_for_statement] = STATE(1039), + [sym_return_statement] = STATE(1039), + [sym_break_statement] = STATE(1039), + [sym_continue_statement] = STATE(1039), + [sym_goto_statement] = STATE(1039), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(1039), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1039), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1051), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2967), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1059), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -41016,105 +38125,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [937] = { - [sym_preproc_include] = STATE(1086), - [sym_preproc_def] = STATE(1086), - [sym_preproc_function_def] = STATE(1086), - [sym_preproc_call] = STATE(1086), - [sym_preproc_if_in_compound_statement] = STATE(1086), - [sym_preproc_ifdef_in_compound_statement] = STATE(1086), - [sym_preproc_else_in_compound_statement] = STATE(1085), - [sym_preproc_elif_in_compound_statement] = STATE(1085), - [sym_declaration] = STATE(1086), - [sym_type_definition] = STATE(1086), - [sym__declaration_specifiers] = STATE(469), - [sym_compound_statement] = STATE(1086), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [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(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(1086), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1086), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3023), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), + [886] = { + [sym_preproc_include] = STATE(1042), + [sym_preproc_def] = STATE(1042), + [sym_preproc_function_def] = STATE(1042), + [sym_preproc_call] = STATE(1042), + [sym_preproc_if_in_compound_statement] = STATE(1042), + [sym_preproc_ifdef_in_compound_statement] = STATE(1042), + [sym_preproc_else_in_compound_statement] = STATE(1041), + [sym_preproc_elif_in_compound_statement] = STATE(1041), + [sym_declaration] = STATE(1042), + [sym_type_definition] = STATE(1042), + [sym__declaration_specifiers] = STATE(427), + [sym_compound_statement] = STATE(1042), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(1042), + [sym_expression_statement] = STATE(1042), + [sym_if_statement] = STATE(1042), + [sym_switch_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(1042), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1042), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1051), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2969), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1059), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -41132,231 +38238,225 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [938] = { - [sym_parameter_list] = STATE(354), - [aux_sym_declaration_repeat1] = STATE(906), - [anon_sym_COMMA] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(747), - [sym_comment] = ACTIONS(85), + [887] = { + [sym_parameter_list] = STATE(309), + [aux_sym_declaration_repeat1] = STATE(857), + [anon_sym_COMMA] = ACTIONS(647), + [anon_sym_SEMI] = ACTIONS(2306), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(655), + [sym_comment] = ACTIONS(81), }, - [939] = { - [sym_preproc_include] = STATE(939), - [sym_preproc_def] = STATE(939), - [sym_preproc_function_def] = STATE(939), - [sym_preproc_call] = STATE(939), - [sym_preproc_if_in_compound_statement] = STATE(939), - [sym_preproc_ifdef_in_compound_statement] = STATE(939), - [sym_declaration] = STATE(939), - [sym_type_definition] = STATE(939), - [sym__declaration_specifiers] = STATE(727), - [sym_compound_statement] = STATE(939), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(939), - [sym_expression_statement] = STATE(939), - [sym_if_statement] = STATE(939), - [sym_switch_statement] = STATE(939), - [sym_case_statement] = STATE(939), - [sym_while_statement] = STATE(939), - [sym_do_statement] = STATE(939), - [sym_for_statement] = STATE(939), - [sym_return_statement] = STATE(939), - [sym_break_statement] = STATE(939), - [sym_continue_statement] = STATE(939), - [sym_goto_statement] = STATE(939), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(939), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(939), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3025), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3028), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3031), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3034), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3034), - [sym_preproc_directive] = ACTIONS(3037), - [anon_sym_SEMI] = ACTIONS(3040), - [anon_sym_typedef] = ACTIONS(3043), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(3046), - [anon_sym_LPAREN2] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_restrict] = ACTIONS(1222), - [anon_sym_volatile] = ACTIONS(1222), - [anon_sym__Atomic] = ACTIONS(1222), - [anon_sym_unsigned] = ACTIONS(1225), - [anon_sym_long] = ACTIONS(1225), - [anon_sym_short] = ACTIONS(1225), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_switch] = ACTIONS(3052), - [anon_sym_case] = ACTIONS(3055), - [anon_sym_default] = ACTIONS(3058), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_do] = ACTIONS(3064), - [anon_sym_for] = ACTIONS(3067), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3073), - [anon_sym_continue] = ACTIONS(3076), - [anon_sym_goto] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1285), - [sym_number_literal] = ACTIONS(3082), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(3085), - [sym_false] = ACTIONS(3085), - [sym_null] = ACTIONS(3085), - [sym_identifier] = ACTIONS(3088), - [sym_comment] = ACTIONS(85), + [888] = { + [sym_preproc_include] = STATE(888), + [sym_preproc_def] = STATE(888), + [sym_preproc_function_def] = STATE(888), + [sym_preproc_call] = STATE(888), + [sym_preproc_if_in_compound_statement] = STATE(888), + [sym_preproc_ifdef_in_compound_statement] = STATE(888), + [sym_declaration] = STATE(888), + [sym_type_definition] = STATE(888), + [sym__declaration_specifiers] = STATE(673), + [sym_compound_statement] = STATE(888), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(888), + [sym_expression_statement] = STATE(888), + [sym_if_statement] = STATE(888), + [sym_switch_statement] = STATE(888), + [sym_while_statement] = STATE(888), + [sym_do_statement] = STATE(888), + [sym_for_statement] = STATE(888), + [sym_return_statement] = STATE(888), + [sym_break_statement] = STATE(888), + [sym_continue_statement] = STATE(888), + [sym_goto_statement] = STATE(888), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [sym__empty_declaration] = STATE(888), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(888), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2971), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2977), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2470), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2980), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2980), + [sym_preproc_directive] = ACTIONS(2983), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(2992), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_static] = ACTIONS(1104), + [anon_sym_auto] = ACTIONS(1104), + [anon_sym_register] = ACTIONS(1104), + [anon_sym_inline] = ACTIONS(1104), + [anon_sym_const] = ACTIONS(1118), + [anon_sym_restrict] = ACTIONS(1118), + [anon_sym_volatile] = ACTIONS(1118), + [anon_sym__Atomic] = ACTIONS(1118), + [anon_sym_unsigned] = ACTIONS(1121), + [anon_sym_long] = ACTIONS(1121), + [anon_sym_short] = ACTIONS(1121), + [sym_primitive_type] = ACTIONS(1124), + [anon_sym_enum] = ACTIONS(1127), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1133), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_switch] = ACTIONS(2998), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_return] = ACTIONS(3010), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_goto] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_DASH_DASH] = ACTIONS(1172), + [anon_sym_PLUS_PLUS] = ACTIONS(1172), + [anon_sym_sizeof] = ACTIONS(1175), + [sym_number_literal] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1184), + [sym_true] = ACTIONS(3025), + [sym_false] = ACTIONS(3025), + [sym_null] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3028), + [sym_comment] = ACTIONS(81), }, - [940] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3091), - [sym_comment] = ACTIONS(85), + [889] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3031), + [sym_comment] = ACTIONS(81), }, - [941] = { - [sym_preproc_include] = STATE(733), - [sym_preproc_def] = STATE(733), - [sym_preproc_function_def] = STATE(733), - [sym_preproc_call] = STATE(733), - [sym_preproc_if_in_compound_statement] = STATE(733), - [sym_preproc_ifdef_in_compound_statement] = STATE(733), - [sym_preproc_else_in_compound_statement] = STATE(1087), - [sym_preproc_elif_in_compound_statement] = STATE(1087), - [sym_declaration] = STATE(733), - [sym_type_definition] = STATE(733), - [sym__declaration_specifiers] = STATE(469), - [sym_compound_statement] = STATE(733), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(733), - [sym_expression_statement] = STATE(733), - [sym_if_statement] = STATE(733), - [sym_switch_statement] = STATE(733), - [sym_case_statement] = STATE(733), - [sym_while_statement] = STATE(733), - [sym_do_statement] = STATE(733), - [sym_for_statement] = STATE(733), - [sym_return_statement] = STATE(733), - [sym_break_statement] = STATE(733), - [sym_continue_statement] = STATE(733), - [sym_goto_statement] = STATE(733), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(733), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(733), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3093), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), + [890] = { + [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(679), + [sym_preproc_ifdef_in_compound_statement] = STATE(679), + [sym_preproc_else_in_compound_statement] = STATE(1043), + [sym_preproc_elif_in_compound_statement] = STATE(1043), + [sym_declaration] = STATE(679), + [sym_type_definition] = STATE(679), + [sym__declaration_specifiers] = STATE(427), + [sym_compound_statement] = STATE(679), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(679), + [sym_expression_statement] = STATE(679), + [sym_if_statement] = STATE(679), + [sym_switch_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(679), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(679), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1051), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3033), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1059), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -41374,747 +38474,1650 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [942] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3095), - [sym_preproc_directive] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_typedef] = ACTIONS(3095), - [anon_sym_extern] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_RBRACE] = ACTIONS(3097), - [anon_sym_LPAREN2] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_auto] = ACTIONS(3095), - [anon_sym_register] = ACTIONS(3095), - [anon_sym_inline] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_restrict] = ACTIONS(3095), - [anon_sym_volatile] = ACTIONS(3095), - [anon_sym__Atomic] = ACTIONS(3095), - [anon_sym_unsigned] = ACTIONS(3095), - [anon_sym_long] = ACTIONS(3095), - [anon_sym_short] = ACTIONS(3095), - [sym_primitive_type] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_union] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_switch] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_default] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_do] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_sizeof] = ACTIONS(3095), - [sym_number_literal] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_true] = ACTIONS(3095), - [sym_false] = ACTIONS(3095), - [sym_null] = ACTIONS(3095), - [sym_identifier] = ACTIONS(3095), - [sym_comment] = ACTIONS(85), + [891] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(3037), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_RBRACE] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_auto] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_switch] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_sizeof] = ACTIONS(3035), + [sym_number_literal] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(3037), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [sym_null] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3035), + [sym_comment] = ACTIONS(81), }, - [943] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3099), - [sym_preproc_directive] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3099), - [anon_sym_extern] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_RBRACE] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_auto] = ACTIONS(3099), - [anon_sym_register] = ACTIONS(3099), - [anon_sym_inline] = ACTIONS(3099), - [anon_sym_const] = ACTIONS(3099), - [anon_sym_restrict] = ACTIONS(3099), - [anon_sym_volatile] = ACTIONS(3099), - [anon_sym__Atomic] = ACTIONS(3099), - [anon_sym_unsigned] = ACTIONS(3099), - [anon_sym_long] = ACTIONS(3099), - [anon_sym_short] = ACTIONS(3099), - [sym_primitive_type] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_union] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_switch] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_default] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_break] = ACTIONS(3099), - [anon_sym_continue] = ACTIONS(3099), - [anon_sym_goto] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_sizeof] = ACTIONS(3099), - [sym_number_literal] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_identifier] = ACTIONS(3099), - [sym_comment] = ACTIONS(85), + [892] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3039), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym_typedef] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_auto] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym__Atomic] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_switch] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_goto] = ACTIONS(3039), + [anon_sym_AMP] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3039), + [sym_number_literal] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3039), + [sym_comment] = ACTIONS(81), }, - [944] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_else] = ACTIONS(3103), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [sym_null] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1454), - [sym_comment] = ACTIONS(85), + [893] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(3043), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_null] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1338), + [sym_comment] = ACTIONS(81), }, - [945] = { - [sym_declaration] = STATE(551), - [sym_type_definition] = STATE(551), - [sym__declaration_specifiers] = STATE(306), - [sym_compound_statement] = STATE(551), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [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(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), + [894] = { + [sym__expression] = STATE(1046), + [sym_conditional_expression] = STATE(1046), + [sym_assignment_expression] = STATE(1046), + [sym_pointer_expression] = STATE(1046), + [sym_logical_expression] = STATE(1046), + [sym_bitwise_expression] = STATE(1046), + [sym_equality_expression] = STATE(1046), + [sym_relational_expression] = STATE(1046), + [sym_shift_expression] = STATE(1046), + [sym_math_expression] = STATE(1046), + [sym_cast_expression] = STATE(1046), + [sym_sizeof_expression] = STATE(1046), + [sym_subscript_expression] = STATE(1046), + [sym_call_expression] = STATE(1046), + [sym_field_expression] = STATE(1046), + [sym_compound_literal_expression] = STATE(1046), + [sym_parenthesized_expression] = STATE(1046), + [sym_char_literal] = STATE(1046), + [sym_concatenated_string] = STATE(1046), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3047), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3049), + [sym_false] = ACTIONS(3049), + [sym_null] = ACTIONS(3049), + [sym_identifier] = ACTIONS(3049), + [sym_comment] = ACTIONS(81), + }, + [895] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3051), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [896] = { + [sym_compound_statement] = STATE(980), + [sym_labeled_statement] = STATE(980), + [sym_expression_statement] = STATE(980), + [sym_if_statement] = STATE(980), + [sym_switch_statement] = STATE(980), + [sym_while_statement] = STATE(980), + [sym_do_statement] = STATE(980), + [sym_for_statement] = STATE(980), + [sym_return_statement] = STATE(980), + [sym_break_statement] = STATE(980), + [sym_continue_statement] = STATE(980), + [sym_goto_statement] = STATE(980), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(29), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(2676), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1071), + [sym_comment] = ACTIONS(81), }, - [946] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(2018), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), + [897] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1049), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3053), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [947] = { - [sym__expression] = STATE(1090), - [sym_conditional_expression] = STATE(1090), - [sym_assignment_expression] = STATE(1090), - [sym_pointer_expression] = STATE(1090), - [sym_logical_expression] = STATE(1090), - [sym_bitwise_expression] = STATE(1090), - [sym_equality_expression] = STATE(1090), - [sym_relational_expression] = STATE(1090), - [sym_shift_expression] = STATE(1090), - [sym_math_expression] = STATE(1090), - [sym_cast_expression] = STATE(1090), - [sym_sizeof_expression] = STATE(1090), - [sym_subscript_expression] = STATE(1090), - [sym_call_expression] = STATE(1090), - [sym_field_expression] = STATE(1090), - [sym_compound_literal_expression] = STATE(1090), - [sym_parenthesized_expression] = STATE(1090), - [sym_char_literal] = STATE(1090), - [sym_concatenated_string] = STATE(1090), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), + [898] = { + [sym__expression] = STATE(1050), + [sym_conditional_expression] = STATE(1050), + [sym_assignment_expression] = STATE(1050), + [sym_pointer_expression] = STATE(1050), + [sym_logical_expression] = STATE(1050), + [sym_bitwise_expression] = STATE(1050), + [sym_equality_expression] = STATE(1050), + [sym_relational_expression] = STATE(1050), + [sym_shift_expression] = STATE(1050), + [sym_math_expression] = STATE(1050), + [sym_cast_expression] = STATE(1050), + [sym_sizeof_expression] = STATE(1050), + [sym_subscript_expression] = STATE(1050), + [sym_call_expression] = STATE(1050), + [sym_field_expression] = STATE(1050), + [sym_compound_literal_expression] = STATE(1050), + [sym_parenthesized_expression] = STATE(1050), + [sym_char_literal] = STATE(1050), + [sym_concatenated_string] = STATE(1050), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3053), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3055), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3057), + [sym_false] = ACTIONS(3057), + [sym_null] = ACTIONS(3057), + [sym_identifier] = ACTIONS(3057), + [sym_comment] = ACTIONS(81), + }, + [899] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [900] = { + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3061), + [sym_comment] = ACTIONS(81), + }, + [901] = { + [anon_sym_COMMA] = ACTIONS(3063), + [anon_sym_RPAREN] = ACTIONS(3063), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_LBRACE] = ACTIONS(3063), + [anon_sym_LPAREN2] = ACTIONS(3063), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_EQ] = ACTIONS(3063), + [anon_sym_COLON] = ACTIONS(3063), + [sym_comment] = ACTIONS(81), + }, + [902] = { + [aux_sym_parameter_list_repeat1] = STATE(902), + [anon_sym_COMMA] = ACTIONS(3065), + [anon_sym_RPAREN] = ACTIONS(3061), + [sym_comment] = ACTIONS(81), + }, + [903] = { + [sym__declarator] = STATE(301), + [sym__abstract_declarator] = STATE(450), + [sym_pointer_declarator] = STATE(301), + [sym_abstract_pointer_declarator] = STATE(450), + [sym_function_declarator] = STATE(301), + [sym_abstract_function_declarator] = STATE(450), + [sym_array_declarator] = STATE(301), + [sym_abstract_array_declarator] = STATE(450), + [sym_type_qualifier] = STATE(1052), + [sym_parameter_list] = STATE(220), + [aux_sym_type_definition_repeat1] = STATE(1052), + [anon_sym_RPAREN] = ACTIONS(1203), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(445), + [anon_sym_const] = ACTIONS(31), + [anon_sym_restrict] = ACTIONS(31), + [anon_sym_volatile] = ACTIONS(31), + [anon_sym__Atomic] = ACTIONS(31), + [sym_identifier] = ACTIONS(645), + [sym_comment] = ACTIONS(81), + }, + [904] = { + [anon_sym_COMMA] = ACTIONS(394), + [anon_sym_RPAREN] = ACTIONS(3068), + [anon_sym_extern] = ACTIONS(242), + [anon_sym_LPAREN2] = ACTIONS(3071), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_static] = ACTIONS(242), + [anon_sym_auto] = ACTIONS(242), + [anon_sym_register] = ACTIONS(242), + [anon_sym_inline] = ACTIONS(242), + [anon_sym_const] = ACTIONS(242), + [anon_sym_restrict] = ACTIONS(242), + [anon_sym_volatile] = ACTIONS(242), + [anon_sym__Atomic] = ACTIONS(242), + [sym_identifier] = ACTIONS(242), + [sym_comment] = ACTIONS(81), + }, + [905] = { + [sym__declarator] = STATE(536), + [sym__abstract_declarator] = STATE(702), + [sym_pointer_declarator] = STATE(536), + [sym_abstract_pointer_declarator] = STATE(702), + [sym_function_declarator] = STATE(536), + [sym_abstract_function_declarator] = STATE(702), + [sym_array_declarator] = STATE(536), + [sym_abstract_array_declarator] = STATE(702), + [sym_type_qualifier] = STATE(1053), + [sym_parameter_list] = STATE(220), + [aux_sym_type_definition_repeat1] = STATE(1053), + [anon_sym_COMMA] = ACTIONS(1898), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(445), + [anon_sym_const] = ACTIONS(31), + [anon_sym_restrict] = ACTIONS(31), + [anon_sym_volatile] = ACTIONS(31), + [anon_sym__Atomic] = ACTIONS(31), + [sym_identifier] = ACTIONS(1467), + [sym_comment] = ACTIONS(81), + }, + [906] = { + [sym_storage_class_specifier] = STATE(906), + [sym_type_qualifier] = STATE(906), + [aux_sym__declaration_specifiers_repeat1] = STATE(906), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(1495), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_LPAREN2] = ACTIONS(1495), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_static] = ACTIONS(878), + [anon_sym_auto] = ACTIONS(878), + [anon_sym_register] = ACTIONS(878), + [anon_sym_inline] = ACTIONS(878), + [anon_sym_const] = ACTIONS(881), + [anon_sym_restrict] = ACTIONS(881), + [anon_sym_volatile] = ACTIONS(881), + [anon_sym__Atomic] = ACTIONS(881), + [sym_identifier] = ACTIONS(884), + [sym_comment] = ACTIONS(81), + }, + [907] = { + [sym_storage_class_specifier] = STATE(906), + [sym_type_qualifier] = STATE(906), + [aux_sym__declaration_specifiers_repeat1] = STATE(906), + [anon_sym_COMMA] = ACTIONS(1616), + [anon_sym_RPAREN] = ACTIONS(1616), + [anon_sym_extern] = ACTIONS(29), + [anon_sym_LPAREN2] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_static] = ACTIONS(29), + [anon_sym_auto] = ACTIONS(29), + [anon_sym_register] = ACTIONS(29), + [anon_sym_inline] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_restrict] = ACTIONS(31), + [anon_sym_volatile] = ACTIONS(31), + [anon_sym__Atomic] = ACTIONS(31), + [sym_identifier] = ACTIONS(1618), + [sym_comment] = ACTIONS(81), + }, + [908] = { + [anon_sym_COMMA] = ACTIONS(3075), + [anon_sym_RPAREN] = ACTIONS(3075), + [anon_sym_LPAREN2] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(3075), + [sym_comment] = ACTIONS(81), + }, + [909] = { + [sym__expression] = STATE(78), + [sym_conditional_expression] = STATE(78), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(78), + [sym_call_expression] = STATE(78), + [sym_field_expression] = STATE(78), + [sym_compound_literal_expression] = STATE(78), + [sym_parenthesized_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_concatenated_string] = STATE(78), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(151), + [sym_false] = ACTIONS(151), + [sym_null] = ACTIONS(151), + [sym_identifier] = ACTIONS(151), + [sym_comment] = ACTIONS(81), + }, + [910] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(3077), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [911] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [912] = { + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_RPAREN] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_RBRACK] = ACTIONS(3079), + [anon_sym_EQ] = ACTIONS(3081), + [anon_sym_COLON] = ACTIONS(3079), + [anon_sym_QMARK] = ACTIONS(3079), + [anon_sym_STAR_EQ] = ACTIONS(3079), + [anon_sym_SLASH_EQ] = ACTIONS(3079), + [anon_sym_PERCENT_EQ] = ACTIONS(3079), + [anon_sym_PLUS_EQ] = ACTIONS(3079), + [anon_sym_DASH_EQ] = ACTIONS(3079), + [anon_sym_LT_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_GT_EQ] = ACTIONS(3079), + [anon_sym_AMP_EQ] = ACTIONS(3079), + [anon_sym_CARET_EQ] = ACTIONS(3079), + [anon_sym_PIPE_EQ] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_CARET] = ACTIONS(3081), + [anon_sym_EQ_EQ] = ACTIONS(3079), + [anon_sym_BANG_EQ] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3081), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_LT_LT] = ACTIONS(3081), + [anon_sym_GT_GT] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_SLASH] = ACTIONS(3081), + [anon_sym_PERCENT] = ACTIONS(3081), + [anon_sym_DASH_DASH] = ACTIONS(3079), + [anon_sym_PLUS_PLUS] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(3079), + [anon_sym_DASH_GT] = ACTIONS(3079), + [sym_comment] = ACTIONS(81), + }, + [913] = { + [anon_sym_RPAREN] = ACTIONS(3083), + [sym_comment] = ACTIONS(81), + }, + [914] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(3085), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [915] = { + [sym_type_qualifier] = STATE(76), + [sym__type_specifier] = STATE(71), + [sym_sized_type_specifier] = STATE(71), + [sym_enum_specifier] = STATE(71), + [sym_struct_specifier] = STATE(71), + [sym_union_specifier] = STATE(71), + [sym__expression] = STATE(72), + [sym_comma_expression] = STATE(73), + [sym_conditional_expression] = STATE(72), + [sym_assignment_expression] = STATE(72), + [sym_pointer_expression] = STATE(72), + [sym_logical_expression] = STATE(72), + [sym_bitwise_expression] = STATE(72), + [sym_equality_expression] = STATE(72), + [sym_relational_expression] = STATE(72), + [sym_shift_expression] = STATE(72), + [sym_math_expression] = STATE(72), + [sym_cast_expression] = STATE(72), + [sym_type_descriptor] = STATE(1057), + [sym_sizeof_expression] = STATE(72), + [sym_subscript_expression] = STATE(72), + [sym_call_expression] = STATE(72), + [sym_field_expression] = STATE(72), + [sym_compound_literal_expression] = STATE(72), + [sym_parenthesized_expression] = STATE(72), + [sym_char_literal] = STATE(72), + [sym_concatenated_string] = STATE(72), + [sym_string_literal] = STATE(75), + [sym_macro_type_specifier] = STATE(71), + [aux_sym_type_definition_repeat1] = STATE(76), + [aux_sym_sized_type_specifier_repeat1] = STATE(77), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_const] = ACTIONS(31), + [anon_sym_restrict] = ACTIONS(31), + [anon_sym_volatile] = ACTIONS(31), + [anon_sym__Atomic] = ACTIONS(31), + [anon_sym_unsigned] = ACTIONS(129), + [anon_sym_long] = ACTIONS(129), + [anon_sym_short] = ACTIONS(129), + [sym_primitive_type] = ACTIONS(131), + [anon_sym_enum] = ACTIONS(37), + [anon_sym_struct] = ACTIONS(39), + [anon_sym_union] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(145), + [sym_false] = ACTIONS(145), + [sym_null] = ACTIONS(145), + [sym_identifier] = ACTIONS(147), + [sym_comment] = ACTIONS(81), + }, + [916] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(625), + [anon_sym_QMARK] = ACTIONS(623), + [anon_sym_STAR_EQ] = ACTIONS(623), + [anon_sym_SLASH_EQ] = ACTIONS(623), + [anon_sym_PERCENT_EQ] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(623), + [anon_sym_DASH_EQ] = ACTIONS(623), + [anon_sym_LT_LT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_EQ] = ACTIONS(623), + [anon_sym_AMP_EQ] = ACTIONS(623), + [anon_sym_CARET_EQ] = ACTIONS(623), + [anon_sym_PIPE_EQ] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(625), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(625), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [917] = { + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3087), + [anon_sym_DOT] = ACTIONS(3087), + [sym_comment] = ACTIONS(81), + }, + [918] = { + [sym__expression] = STATE(1059), + [sym_conditional_expression] = STATE(1059), + [sym_assignment_expression] = STATE(1059), + [sym_pointer_expression] = STATE(1059), + [sym_logical_expression] = STATE(1059), + [sym_bitwise_expression] = STATE(1059), + [sym_equality_expression] = STATE(1059), + [sym_relational_expression] = STATE(1059), + [sym_shift_expression] = STATE(1059), + [sym_math_expression] = STATE(1059), + [sym_cast_expression] = STATE(1059), + [sym_sizeof_expression] = STATE(1059), + [sym_subscript_expression] = STATE(1059), + [sym_call_expression] = STATE(1059), + [sym_field_expression] = STATE(1059), + [sym_compound_literal_expression] = STATE(1059), + [sym_parenthesized_expression] = STATE(1059), + [sym_initializer_list] = STATE(1060), + [sym_initializer_pair] = STATE(1060), + [sym_subscript_designator] = STATE(723), + [sym_field_designator] = STATE(723), + [sym_char_literal] = STATE(1059), + [sym_concatenated_string] = STATE(1059), + [sym_string_literal] = STATE(722), + [aux_sym_initializer_pair_repeat1] = STATE(723), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [anon_sym_DOT] = ACTIONS(1934), + [sym_number_literal] = ACTIONS(3091), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3093), + [sym_false] = ACTIONS(3093), + [sym_null] = ACTIONS(3093), + [sym_identifier] = ACTIONS(3093), + [sym_comment] = ACTIONS(81), + }, + [919] = { + [sym__expression] = STATE(316), + [sym_conditional_expression] = STATE(316), + [sym_assignment_expression] = STATE(316), + [sym_pointer_expression] = STATE(316), + [sym_logical_expression] = STATE(316), + [sym_bitwise_expression] = STATE(316), + [sym_equality_expression] = STATE(316), + [sym_relational_expression] = STATE(316), + [sym_shift_expression] = STATE(316), + [sym_math_expression] = STATE(316), + [sym_cast_expression] = STATE(316), + [sym_sizeof_expression] = STATE(316), + [sym_subscript_expression] = STATE(316), + [sym_call_expression] = STATE(316), + [sym_field_expression] = STATE(316), + [sym_compound_literal_expression] = STATE(316), + [sym_parenthesized_expression] = STATE(316), + [sym_char_literal] = STATE(316), + [sym_concatenated_string] = STATE(316), + [sym_string_literal] = STATE(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(675), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(677), + [sym_false] = ACTIONS(677), + [sym_null] = ACTIONS(677), + [sym_identifier] = ACTIONS(677), + [sym_comment] = ACTIONS(81), + }, + [920] = { + [sym__expression] = STATE(1061), + [sym_conditional_expression] = STATE(1061), + [sym_assignment_expression] = STATE(1061), + [sym_pointer_expression] = STATE(1061), + [sym_logical_expression] = STATE(1061), + [sym_bitwise_expression] = STATE(1061), + [sym_equality_expression] = STATE(1061), + [sym_relational_expression] = STATE(1061), + [sym_shift_expression] = STATE(1061), + [sym_math_expression] = STATE(1061), + [sym_cast_expression] = STATE(1061), + [sym_sizeof_expression] = STATE(1061), + [sym_subscript_expression] = STATE(1061), + [sym_call_expression] = STATE(1061), + [sym_field_expression] = STATE(1061), + [sym_compound_literal_expression] = STATE(1061), + [sym_parenthesized_expression] = STATE(1061), + [sym_char_literal] = STATE(1061), + [sym_concatenated_string] = STATE(1061), + [sym_string_literal] = STATE(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(3095), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3097), + [sym_false] = ACTIONS(3097), + [sym_null] = ACTIONS(3097), + [sym_identifier] = ACTIONS(3097), + [sym_comment] = ACTIONS(81), + }, + [921] = { + [sym__expression] = STATE(1062), + [sym_conditional_expression] = STATE(1062), + [sym_assignment_expression] = STATE(1062), + [sym_pointer_expression] = STATE(1062), + [sym_logical_expression] = STATE(1062), + [sym_bitwise_expression] = STATE(1062), + [sym_equality_expression] = STATE(1062), + [sym_relational_expression] = STATE(1062), + [sym_shift_expression] = STATE(1062), + [sym_math_expression] = STATE(1062), + [sym_cast_expression] = STATE(1062), + [sym_sizeof_expression] = STATE(1062), + [sym_subscript_expression] = STATE(1062), + [sym_call_expression] = STATE(1062), + [sym_field_expression] = STATE(1062), + [sym_compound_literal_expression] = STATE(1062), + [sym_parenthesized_expression] = STATE(1062), + [sym_char_literal] = STATE(1062), + [sym_concatenated_string] = STATE(1062), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(3099), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [sym_null] = ACTIONS(3101), + [sym_identifier] = ACTIONS(3101), + [sym_comment] = ACTIONS(81), + }, + [922] = { + [sym__expression] = STATE(1063), + [sym_conditional_expression] = STATE(1063), + [sym_assignment_expression] = STATE(1063), + [sym_pointer_expression] = STATE(1063), + [sym_logical_expression] = STATE(1063), + [sym_bitwise_expression] = STATE(1063), + [sym_equality_expression] = STATE(1063), + [sym_relational_expression] = STATE(1063), + [sym_shift_expression] = STATE(1063), + [sym_math_expression] = STATE(1063), + [sym_cast_expression] = STATE(1063), + [sym_sizeof_expression] = STATE(1063), + [sym_subscript_expression] = STATE(1063), + [sym_call_expression] = STATE(1063), + [sym_field_expression] = STATE(1063), + [sym_compound_literal_expression] = STATE(1063), + [sym_parenthesized_expression] = STATE(1063), + [sym_char_literal] = STATE(1063), + [sym_concatenated_string] = STATE(1063), + [sym_string_literal] = STATE(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3105), + [sym_false] = ACTIONS(3105), + [sym_null] = ACTIONS(3105), + [sym_identifier] = ACTIONS(3105), + [sym_comment] = ACTIONS(81), + }, + [923] = { + [sym__expression] = STATE(1064), + [sym_conditional_expression] = STATE(1064), + [sym_assignment_expression] = STATE(1064), + [sym_pointer_expression] = STATE(1064), + [sym_logical_expression] = STATE(1064), + [sym_bitwise_expression] = STATE(1064), + [sym_equality_expression] = STATE(1064), + [sym_relational_expression] = STATE(1064), + [sym_shift_expression] = STATE(1064), + [sym_math_expression] = STATE(1064), + [sym_cast_expression] = STATE(1064), + [sym_sizeof_expression] = STATE(1064), + [sym_subscript_expression] = STATE(1064), + [sym_call_expression] = STATE(1064), + [sym_field_expression] = STATE(1064), + [sym_compound_literal_expression] = STATE(1064), + [sym_parenthesized_expression] = STATE(1064), + [sym_char_literal] = STATE(1064), + [sym_concatenated_string] = STATE(1064), + [sym_string_literal] = STATE(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), [sym_number_literal] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), [sym_true] = ACTIONS(3109), [sym_false] = ACTIONS(3109), [sym_null] = ACTIONS(3109), [sym_identifier] = ACTIONS(3109), - [sym_comment] = ACTIONS(85), - }, - [948] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [949] = { - [sym_compound_statement] = STATE(1023), - [sym_labeled_statement] = STATE(1023), - [sym_expression_statement] = STATE(1023), - [sym_if_statement] = STATE(1023), - [sym_switch_statement] = STATE(1023), - [sym_case_statement] = STATE(1023), - [sym_while_statement] = STATE(1023), - [sym_do_statement] = STATE(1023), - [sym_for_statement] = STATE(1023), - [sym_return_statement] = STATE(1023), - [sym_break_statement] = STATE(1023), - [sym_continue_statement] = STATE(1023), - [sym_goto_statement] = STATE(1023), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(85), + [sym_comment] = ACTIONS(81), }, - [950] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1093), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3113), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [924] = { + [sym__expression] = STATE(1065), + [sym_conditional_expression] = STATE(1065), + [sym_assignment_expression] = STATE(1065), + [sym_pointer_expression] = STATE(1065), + [sym_logical_expression] = STATE(1065), + [sym_bitwise_expression] = STATE(1065), + [sym_equality_expression] = STATE(1065), + [sym_relational_expression] = STATE(1065), + [sym_shift_expression] = STATE(1065), + [sym_math_expression] = STATE(1065), + [sym_cast_expression] = STATE(1065), + [sym_sizeof_expression] = STATE(1065), + [sym_subscript_expression] = STATE(1065), + [sym_call_expression] = STATE(1065), + [sym_field_expression] = STATE(1065), + [sym_compound_literal_expression] = STATE(1065), + [sym_parenthesized_expression] = STATE(1065), + [sym_char_literal] = STATE(1065), + [sym_concatenated_string] = STATE(1065), + [sym_string_literal] = STATE(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3113), + [sym_false] = ACTIONS(3113), + [sym_null] = ACTIONS(3113), + [sym_identifier] = ACTIONS(3113), + [sym_comment] = ACTIONS(81), }, - [951] = { - [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(80), - [anon_sym_RPAREN] = ACTIONS(3113), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), + [925] = { + [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(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), [sym_number_literal] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), [sym_true] = ACTIONS(3117), [sym_false] = ACTIONS(3117), [sym_null] = ACTIONS(3117), [sym_identifier] = ACTIONS(3117), - [sym_comment] = ACTIONS(85), + [sym_comment] = ACTIONS(81), }, - [952] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3119), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [926] = { + [sym__expression] = STATE(1067), + [sym_conditional_expression] = STATE(1067), + [sym_assignment_expression] = STATE(1067), + [sym_pointer_expression] = STATE(1067), + [sym_logical_expression] = STATE(1067), + [sym_bitwise_expression] = STATE(1067), + [sym_equality_expression] = STATE(1067), + [sym_relational_expression] = STATE(1067), + [sym_shift_expression] = STATE(1067), + [sym_math_expression] = STATE(1067), + [sym_cast_expression] = STATE(1067), + [sym_sizeof_expression] = STATE(1067), + [sym_subscript_expression] = STATE(1067), + [sym_call_expression] = STATE(1067), + [sym_field_expression] = STATE(1067), + [sym_compound_literal_expression] = STATE(1067), + [sym_parenthesized_expression] = STATE(1067), + [sym_char_literal] = STATE(1067), + [sym_concatenated_string] = STATE(1067), + [sym_string_literal] = STATE(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(3119), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3121), + [sym_false] = ACTIONS(3121), + [sym_null] = ACTIONS(3121), + [sym_identifier] = ACTIONS(3121), + [sym_comment] = ACTIONS(81), }, - [953] = { - [anon_sym_COMMA] = ACTIONS(3121), - [anon_sym_RPAREN] = ACTIONS(3121), - [sym_comment] = ACTIONS(85), + [927] = { + [sym__expression] = STATE(1068), + [sym_conditional_expression] = STATE(1068), + [sym_assignment_expression] = STATE(1068), + [sym_pointer_expression] = STATE(1068), + [sym_logical_expression] = STATE(1068), + [sym_bitwise_expression] = STATE(1068), + [sym_equality_expression] = STATE(1068), + [sym_relational_expression] = STATE(1068), + [sym_shift_expression] = STATE(1068), + [sym_math_expression] = STATE(1068), + [sym_cast_expression] = STATE(1068), + [sym_sizeof_expression] = STATE(1068), + [sym_subscript_expression] = STATE(1068), + [sym_call_expression] = STATE(1068), + [sym_field_expression] = STATE(1068), + [sym_compound_literal_expression] = STATE(1068), + [sym_parenthesized_expression] = STATE(1068), + [sym_char_literal] = STATE(1068), + [sym_concatenated_string] = STATE(1068), + [sym_string_literal] = STATE(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3125), + [sym_false] = ACTIONS(3125), + [sym_null] = ACTIONS(3125), + [sym_identifier] = ACTIONS(3125), + [sym_comment] = ACTIONS(81), }, - [954] = { - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_LPAREN2] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym_COLON] = ACTIONS(3123), - [sym_comment] = ACTIONS(85), + [928] = { + [sym__expression] = STATE(1069), + [sym_conditional_expression] = STATE(1069), + [sym_assignment_expression] = STATE(1069), + [sym_pointer_expression] = STATE(1069), + [sym_logical_expression] = STATE(1069), + [sym_bitwise_expression] = STATE(1069), + [sym_equality_expression] = STATE(1069), + [sym_relational_expression] = STATE(1069), + [sym_shift_expression] = STATE(1069), + [sym_math_expression] = STATE(1069), + [sym_cast_expression] = STATE(1069), + [sym_sizeof_expression] = STATE(1069), + [sym_subscript_expression] = STATE(1069), + [sym_call_expression] = STATE(1069), + [sym_field_expression] = STATE(1069), + [sym_compound_literal_expression] = STATE(1069), + [sym_parenthesized_expression] = STATE(1069), + [sym_char_literal] = STATE(1069), + [sym_concatenated_string] = STATE(1069), + [sym_string_literal] = STATE(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_null] = ACTIONS(3129), + [sym_identifier] = ACTIONS(3129), + [sym_comment] = ACTIONS(81), }, - [955] = { - [aux_sym_parameter_list_repeat1] = STATE(955), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_RPAREN] = ACTIONS(3121), - [sym_comment] = ACTIONS(85), + [929] = { + [sym__expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_assignment_expression] = STATE(1070), + [sym_pointer_expression] = STATE(1070), + [sym_logical_expression] = STATE(1070), + [sym_bitwise_expression] = STATE(1070), + [sym_equality_expression] = STATE(1070), + [sym_relational_expression] = STATE(1070), + [sym_shift_expression] = STATE(1070), + [sym_math_expression] = STATE(1070), + [sym_cast_expression] = STATE(1070), + [sym_sizeof_expression] = STATE(1070), + [sym_subscript_expression] = STATE(1070), + [sym_call_expression] = STATE(1070), + [sym_field_expression] = STATE(1070), + [sym_compound_literal_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(1070), + [sym_char_literal] = STATE(1070), + [sym_concatenated_string] = STATE(1070), + [sym_string_literal] = STATE(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(3131), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_null] = ACTIONS(3133), + [sym_identifier] = ACTIONS(3133), + [sym_comment] = ACTIONS(81), }, - [956] = { - [sym__declarator] = STATE(346), - [sym__abstract_declarator] = STATE(497), - [sym_pointer_declarator] = STATE(346), - [sym_abstract_pointer_declarator] = STATE(497), - [sym_function_declarator] = STATE(346), - [sym_abstract_function_declarator] = STATE(497), - [sym_array_declarator] = STATE(346), - [sym_abstract_array_declarator] = STATE(497), - [sym_type_qualifier] = STATE(1096), - [sym_parameter_list] = STATE(241), - [aux_sym_type_definition_repeat1] = STATE(1096), - [anon_sym_RPAREN] = ACTIONS(1313), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(489), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(737), - [sym_comment] = ACTIONS(85), + [930] = { + [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(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(3135), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3137), + [sym_false] = ACTIONS(3137), + [sym_null] = ACTIONS(3137), + [sym_identifier] = ACTIONS(3137), + [sym_comment] = ACTIONS(81), }, - [957] = { - [anon_sym_COMMA] = ACTIONS(432), - [anon_sym_RPAREN] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(3131), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), + [931] = { + [aux_sym_initializer_list_repeat1] = STATE(1073), + [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_RBRACE] = ACTIONS(3089), + [sym_comment] = ACTIONS(81), }, - [958] = { - [sym__declarator] = STATE(598), - [sym__abstract_declarator] = STATE(759), - [sym_pointer_declarator] = STATE(598), - [sym_abstract_pointer_declarator] = STATE(759), - [sym_function_declarator] = STATE(598), - [sym_abstract_function_declarator] = STATE(759), - [sym_array_declarator] = STATE(598), - [sym_abstract_array_declarator] = STATE(759), - [sym_type_qualifier] = STATE(1097), - [sym_parameter_list] = STATE(241), - [aux_sym_type_definition_repeat1] = STATE(1097), - [anon_sym_COMMA] = ACTIONS(2052), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_LBRACK] = ACTIONS(489), + [932] = { + [sym_string_literal] = STATE(1074), + [aux_sym_concatenated_string_repeat1] = STATE(1074), + [anon_sym_COMMA] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(761), + [anon_sym_LPAREN2] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(763), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_STAR_EQ] = ACTIONS(761), + [anon_sym_SLASH_EQ] = ACTIONS(761), + [anon_sym_PERCENT_EQ] = ACTIONS(761), + [anon_sym_PLUS_EQ] = ACTIONS(761), + [anon_sym_DASH_EQ] = ACTIONS(761), + [anon_sym_LT_LT_EQ] = ACTIONS(761), + [anon_sym_GT_GT_EQ] = ACTIONS(761), + [anon_sym_AMP_EQ] = ACTIONS(761), + [anon_sym_CARET_EQ] = ACTIONS(761), + [anon_sym_PIPE_EQ] = ACTIONS(761), + [anon_sym_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(761), + [anon_sym_AMP_AMP] = ACTIONS(761), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_CARET] = ACTIONS(763), + [anon_sym_EQ_EQ] = ACTIONS(761), + [anon_sym_BANG_EQ] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(763), + [anon_sym_GT] = ACTIONS(763), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_LT_LT] = ACTIONS(763), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(763), + [anon_sym_DASH] = ACTIONS(763), + [anon_sym_SLASH] = ACTIONS(763), + [anon_sym_PERCENT] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(761), + [anon_sym_PLUS_PLUS] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(761), + [anon_sym_DASH_GT] = ACTIONS(761), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_comment] = ACTIONS(81), + }, + [933] = { + [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_initializer_list] = STATE(1076), + [sym_char_literal] = STATE(1075), + [sym_concatenated_string] = STATE(1075), + [sym_string_literal] = STATE(722), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3143), + [sym_false] = ACTIONS(3143), + [sym_null] = ACTIONS(3143), + [sym_identifier] = ACTIONS(3143), + [sym_comment] = ACTIONS(81), + }, + [934] = { + [sym_subscript_designator] = STATE(934), + [sym_field_designator] = STATE(934), + [aux_sym_initializer_pair_repeat1] = STATE(934), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_DOT] = ACTIONS(3150), + [sym_comment] = ACTIONS(81), + }, + [935] = { + [anon_sym_COMMA] = ACTIONS(3153), + [anon_sym_RPAREN] = ACTIONS(3153), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3153), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_auto] = ACTIONS(3155), + [anon_sym_register] = ACTIONS(3155), + [anon_sym_inline] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_restrict] = ACTIONS(3155), + [anon_sym_volatile] = ACTIONS(3155), + [anon_sym__Atomic] = ACTIONS(3155), + [anon_sym_COLON] = ACTIONS(3153), + [sym_identifier] = ACTIONS(3155), + [sym_comment] = ACTIONS(81), + }, + [936] = { + [sym_enumerator] = STATE(726), + [sym_identifier] = ACTIONS(495), + [sym_comment] = ACTIONS(81), + }, + [937] = { + [sym_preproc_if_in_field_declaration_list] = STATE(1077), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1077), + [sym__declaration_specifiers] = STATE(247), + [sym_storage_class_specifier] = STATE(250), + [sym_type_qualifier] = STATE(250), + [sym__type_specifier] = STATE(248), + [sym_sized_type_specifier] = STATE(248), + [sym_enum_specifier] = STATE(248), + [sym_struct_specifier] = STATE(248), + [sym_union_specifier] = STATE(248), + [sym__field_declaration_list_item] = STATE(1077), + [sym_field_declaration] = STATE(1077), + [sym_macro_type_specifier] = STATE(248), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1077), + [aux_sym__declaration_specifiers_repeat1] = STATE(250), + [aux_sym_sized_type_specifier_repeat1] = STATE(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3157), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(29), + [anon_sym_static] = ACTIONS(29), + [anon_sym_auto] = ACTIONS(29), + [anon_sym_register] = ACTIONS(29), + [anon_sym_inline] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1629), - [sym_comment] = ACTIONS(85), - }, - [959] = { - [sym_storage_class_specifier] = STATE(959), - [sym_type_qualifier] = STATE(959), - [aux_sym__declaration_specifiers_repeat1] = STATE(959), - [anon_sym_COMMA] = ACTIONS(1657), - [anon_sym_RPAREN] = ACTIONS(1657), - [anon_sym_extern] = ACTIONS(962), - [anon_sym_LPAREN2] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(962), - [anon_sym_auto] = ACTIONS(962), - [anon_sym_register] = ACTIONS(962), - [anon_sym_inline] = ACTIONS(962), - [anon_sym_const] = ACTIONS(965), - [anon_sym_restrict] = ACTIONS(965), - [anon_sym_volatile] = ACTIONS(965), - [anon_sym__Atomic] = ACTIONS(965), - [sym_identifier] = ACTIONS(968), - [sym_comment] = ACTIONS(85), + [anon_sym_unsigned] = ACTIONS(511), + [anon_sym_long] = ACTIONS(511), + [anon_sym_short] = ACTIONS(511), + [sym_primitive_type] = ACTIONS(513), + [anon_sym_enum] = ACTIONS(37), + [anon_sym_struct] = ACTIONS(39), + [anon_sym_union] = ACTIONS(41), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [960] = { - [sym_storage_class_specifier] = STATE(959), - [sym_type_qualifier] = STATE(959), - [aux_sym__declaration_specifiers_repeat1] = STATE(959), - [anon_sym_COMMA] = ACTIONS(1744), - [anon_sym_RPAREN] = ACTIONS(1744), + [938] = { + [sym_preproc_if_in_field_declaration_list] = STATE(1079), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1079), + [sym_preproc_else_in_field_declaration_list] = STATE(1078), + [sym_preproc_elif_in_field_declaration_list] = STATE(1078), + [sym__declaration_specifiers] = STATE(247), + [sym_storage_class_specifier] = STATE(250), + [sym_type_qualifier] = STATE(250), + [sym__type_specifier] = STATE(248), + [sym_sized_type_specifier] = STATE(248), + [sym_enum_specifier] = STATE(248), + [sym_struct_specifier] = STATE(248), + [sym_union_specifier] = STATE(248), + [sym__field_declaration_list_item] = STATE(1079), + [sym_field_declaration] = STATE(1079), + [sym_macro_type_specifier] = STATE(248), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1079), + [aux_sym__declaration_specifiers_repeat1] = STATE(250), + [aux_sym_sized_type_specifier_repeat1] = STATE(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3159), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1964), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1966), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1744), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -42123,339 +40126,956 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1746), - [sym_comment] = ACTIONS(85), + [anon_sym_unsigned] = ACTIONS(511), + [anon_sym_long] = ACTIONS(511), + [anon_sym_short] = ACTIONS(511), + [sym_primitive_type] = ACTIONS(513), + [anon_sym_enum] = ACTIONS(37), + [anon_sym_struct] = ACTIONS(39), + [anon_sym_union] = ACTIONS(41), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), + }, + [939] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3161), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3163), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3163), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3163), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3163), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3161), + [anon_sym_auto] = ACTIONS(3161), + [anon_sym_register] = ACTIONS(3161), + [anon_sym_inline] = ACTIONS(3161), + [anon_sym_const] = ACTIONS(3161), + [anon_sym_restrict] = ACTIONS(3161), + [anon_sym_volatile] = ACTIONS(3161), + [anon_sym__Atomic] = ACTIONS(3161), + [anon_sym_unsigned] = ACTIONS(3161), + [anon_sym_long] = ACTIONS(3161), + [anon_sym_short] = ACTIONS(3161), + [sym_primitive_type] = ACTIONS(3161), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3161), + [anon_sym_union] = ACTIONS(3161), + [sym_identifier] = ACTIONS(3161), + [sym_comment] = ACTIONS(81), + }, + [940] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3165), + [sym_comment] = ACTIONS(81), + }, + [941] = { + [sym_preproc_if_in_field_declaration_list] = STATE(941), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(941), + [sym__declaration_specifiers] = STATE(247), + [sym_storage_class_specifier] = STATE(250), + [sym_type_qualifier] = STATE(250), + [sym__type_specifier] = STATE(248), + [sym_sized_type_specifier] = STATE(248), + [sym_enum_specifier] = STATE(248), + [sym_struct_specifier] = STATE(248), + [sym_union_specifier] = STATE(248), + [sym__field_declaration_list_item] = STATE(941), + [sym_field_declaration] = STATE(941), + [sym_macro_type_specifier] = STATE(248), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(941), + [aux_sym__declaration_specifiers_repeat1] = STATE(250), + [aux_sym_sized_type_specifier_repeat1] = STATE(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2005), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1999), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1999), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2005), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2005), + [anon_sym_extern] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2002), + [anon_sym_auto] = ACTIONS(2002), + [anon_sym_register] = ACTIONS(2002), + [anon_sym_inline] = ACTIONS(2002), + [anon_sym_const] = ACTIONS(2007), + [anon_sym_restrict] = ACTIONS(2007), + [anon_sym_volatile] = ACTIONS(2007), + [anon_sym__Atomic] = ACTIONS(2007), + [anon_sym_unsigned] = ACTIONS(2010), + [anon_sym_long] = ACTIONS(2010), + [anon_sym_short] = ACTIONS(2010), + [sym_primitive_type] = ACTIONS(2013), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2019), + [anon_sym_union] = ACTIONS(2022), + [sym_identifier] = ACTIONS(2025), + [sym_comment] = ACTIONS(81), + }, + [942] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3167), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3169), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3169), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3169), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3169), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3169), + [anon_sym_extern] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_auto] = ACTIONS(3167), + [anon_sym_register] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_restrict] = ACTIONS(3167), + [anon_sym_volatile] = ACTIONS(3167), + [anon_sym__Atomic] = ACTIONS(3167), + [anon_sym_unsigned] = ACTIONS(3167), + [anon_sym_long] = ACTIONS(3167), + [anon_sym_short] = ACTIONS(3167), + [sym_primitive_type] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), + [anon_sym_struct] = ACTIONS(3167), + [anon_sym_union] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3167), + [sym_comment] = ACTIONS(81), + }, + [943] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3171), + [sym_comment] = ACTIONS(81), + }, + [944] = { + [sym__field_declarator] = STATE(946), + [sym_pointer_field_declarator] = STATE(946), + [sym_function_field_declarator] = STATE(946), + [sym_array_field_declarator] = STATE(946), + [sym_type_qualifier] = STATE(537), + [aux_sym_type_definition_repeat1] = STATE(537), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(31), + [anon_sym_restrict] = ACTIONS(31), + [anon_sym_volatile] = ACTIONS(31), + [anon_sym__Atomic] = ACTIONS(31), + [sym_identifier] = ACTIONS(1976), + [sym_comment] = ACTIONS(81), + }, + [945] = { + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_RPAREN] = ACTIONS(3173), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_LPAREN2] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3173), + [anon_sym_COLON] = ACTIONS(3173), + [sym_comment] = ACTIONS(81), + }, + [946] = { + [sym_parameter_list] = STATE(746), + [anon_sym_COMMA] = ACTIONS(3175), + [anon_sym_RPAREN] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3175), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_COLON] = ACTIONS(3175), + [sym_comment] = ACTIONS(81), + }, + [947] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3177), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3179), + [anon_sym_extern] = ACTIONS(3177), + [anon_sym_RBRACE] = ACTIONS(3179), + [anon_sym_static] = ACTIONS(3177), + [anon_sym_auto] = ACTIONS(3177), + [anon_sym_register] = ACTIONS(3177), + [anon_sym_inline] = ACTIONS(3177), + [anon_sym_const] = ACTIONS(3177), + [anon_sym_restrict] = ACTIONS(3177), + [anon_sym_volatile] = ACTIONS(3177), + [anon_sym__Atomic] = ACTIONS(3177), + [anon_sym_unsigned] = ACTIONS(3177), + [anon_sym_long] = ACTIONS(3177), + [anon_sym_short] = ACTIONS(3177), + [sym_primitive_type] = ACTIONS(3177), + [anon_sym_enum] = ACTIONS(3177), + [anon_sym_struct] = ACTIONS(3177), + [anon_sym_union] = ACTIONS(3177), + [sym_identifier] = ACTIONS(3177), + [sym_comment] = ACTIONS(81), + }, + [948] = { + [sym_parameter_list] = STATE(746), + [anon_sym_COMMA] = ACTIONS(3181), + [anon_sym_SEMI] = ACTIONS(3181), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_COLON] = ACTIONS(3181), + [sym_comment] = ACTIONS(81), + }, + [949] = { + [sym__expression] = STATE(78), + [sym_conditional_expression] = STATE(78), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(78), + [sym_call_expression] = STATE(78), + [sym_field_expression] = STATE(78), + [sym_compound_literal_expression] = STATE(78), + [sym_parenthesized_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_concatenated_string] = STATE(78), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(151), + [sym_false] = ACTIONS(151), + [sym_null] = ACTIONS(151), + [sym_identifier] = ACTIONS(151), + [sym_comment] = ACTIONS(81), + }, + [950] = { + [anon_sym_COMMA] = ACTIONS(3185), + [anon_sym_RPAREN] = ACTIONS(3185), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_LPAREN2] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_COLON] = ACTIONS(3185), + [sym_comment] = ACTIONS(81), + }, + [951] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(3183), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [952] = { + [sym_type_qualifier] = STATE(707), + [sym__expression] = STATE(1084), + [sym_conditional_expression] = STATE(1084), + [sym_assignment_expression] = STATE(1084), + [sym_pointer_expression] = STATE(1084), + [sym_logical_expression] = STATE(1084), + [sym_bitwise_expression] = STATE(1084), + [sym_equality_expression] = STATE(1084), + [sym_relational_expression] = STATE(1084), + [sym_shift_expression] = STATE(1084), + [sym_math_expression] = STATE(1084), + [sym_cast_expression] = STATE(1084), + [sym_sizeof_expression] = STATE(1084), + [sym_subscript_expression] = STATE(1084), + [sym_call_expression] = STATE(1084), + [sym_field_expression] = STATE(1084), + [sym_compound_literal_expression] = STATE(1084), + [sym_parenthesized_expression] = STATE(1084), + [sym_char_literal] = STATE(1084), + [sym_concatenated_string] = STATE(1084), + [sym_string_literal] = STATE(324), + [aux_sym_type_definition_repeat1] = STATE(707), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_RBRACK] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(31), + [anon_sym_restrict] = ACTIONS(31), + [anon_sym_volatile] = ACTIONS(31), + [anon_sym__Atomic] = ACTIONS(31), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_null] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3191), + [sym_comment] = ACTIONS(81), + }, + [953] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [954] = { + [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(107), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3195), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3197), + [sym_false] = ACTIONS(3197), + [sym_null] = ACTIONS(3197), + [sym_identifier] = ACTIONS(3197), + [sym_comment] = ACTIONS(81), + }, + [955] = { + [aux_sym_field_declaration_repeat1] = STATE(955), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3181), + [anon_sym_COLON] = ACTIONS(3181), + [sym_comment] = ACTIONS(81), + }, + [956] = { + [sym_compound_statement] = STATE(753), + [sym_labeled_statement] = STATE(753), + [sym_expression_statement] = STATE(753), + [sym_if_statement] = STATE(753), + [sym_switch_statement] = STATE(753), + [sym_while_statement] = STATE(753), + [sym_do_statement] = STATE(753), + [sym_for_statement] = STATE(753), + [sym_return_statement] = STATE(753), + [sym_break_statement] = STATE(753), + [sym_continue_statement] = STATE(753), + [sym_goto_statement] = STATE(753), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(535), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(537), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(539), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(541), + [sym_comment] = ACTIONS(81), + }, + [957] = { + [sym__expression] = STATE(1088), + [sym_conditional_expression] = STATE(1088), + [sym_assignment_expression] = STATE(1088), + [sym_pointer_expression] = STATE(1088), + [sym_logical_expression] = STATE(1088), + [sym_bitwise_expression] = STATE(1088), + [sym_equality_expression] = STATE(1088), + [sym_relational_expression] = STATE(1088), + [sym_shift_expression] = STATE(1088), + [sym_math_expression] = STATE(1088), + [sym_cast_expression] = STATE(1088), + [sym_sizeof_expression] = STATE(1088), + [sym_subscript_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_field_expression] = STATE(1088), + [sym_compound_literal_expression] = STATE(1088), + [sym_parenthesized_expression] = STATE(1088), + [sym_char_literal] = STATE(1088), + [sym_concatenated_string] = STATE(1088), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3202), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_null] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3206), + [sym_comment] = ACTIONS(81), + }, + [958] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [959] = { + [sym__expression] = STATE(1090), + [sym_conditional_expression] = STATE(1090), + [sym_assignment_expression] = STATE(1090), + [sym_pointer_expression] = STATE(1090), + [sym_logical_expression] = STATE(1090), + [sym_bitwise_expression] = STATE(1090), + [sym_equality_expression] = STATE(1090), + [sym_relational_expression] = STATE(1090), + [sym_shift_expression] = STATE(1090), + [sym_math_expression] = STATE(1090), + [sym_cast_expression] = STATE(1090), + [sym_sizeof_expression] = STATE(1090), + [sym_subscript_expression] = STATE(1090), + [sym_call_expression] = STATE(1090), + [sym_field_expression] = STATE(1090), + [sym_compound_literal_expression] = STATE(1090), + [sym_parenthesized_expression] = STATE(1090), + [sym_char_literal] = STATE(1090), + [sym_concatenated_string] = STATE(1090), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3212), + [sym_false] = ACTIONS(3212), + [sym_null] = ACTIONS(3212), + [sym_identifier] = ACTIONS(3212), + [sym_comment] = ACTIONS(81), + }, + [960] = { + [sym_parenthesized_expression] = STATE(1091), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, [961] = { - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [sym_comment] = ACTIONS(85), + [sym_parenthesized_expression] = STATE(1092), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, [962] = { - [sym__expression] = STATE(83), - [sym_conditional_expression] = STATE(83), - [sym_assignment_expression] = STATE(83), - [sym_pointer_expression] = STATE(83), - [sym_logical_expression] = STATE(83), - [sym_bitwise_expression] = STATE(83), - [sym_equality_expression] = STATE(83), - [sym_relational_expression] = STATE(83), - [sym_shift_expression] = STATE(83), - [sym_math_expression] = STATE(83), - [sym_cast_expression] = STATE(83), - [sym_sizeof_expression] = STATE(83), - [sym_subscript_expression] = STATE(83), - [sym_call_expression] = STATE(83), - [sym_field_expression] = STATE(83), - [sym_compound_literal_expression] = STATE(83), - [sym_parenthesized_expression] = STATE(83), - [sym_char_literal] = STATE(83), - [sym_concatenated_string] = STATE(83), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(85), + [anon_sym_LPAREN2] = ACTIONS(3214), + [sym_comment] = ACTIONS(81), }, [963] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(3137), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1685), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PERCENT_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_CARET_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_comment] = ACTIONS(81), }, [964] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(2918), - [anon_sym_RPAREN] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_null] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1338), + [sym_comment] = ACTIONS(81), }, [965] = { - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN2] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_COLON] = ACTIONS(3139), - [anon_sym_QMARK] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_LT_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_GT_EQ] = ACTIONS(3139), - [anon_sym_AMP_EQ] = ACTIONS(3139), - [anon_sym_CARET_EQ] = ACTIONS(3139), - [anon_sym_PIPE_EQ] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_LT_LT] = ACTIONS(3141), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DOT] = ACTIONS(3139), - [anon_sym_DASH_GT] = ACTIONS(3139), - [sym_comment] = ACTIONS(85), + [sym_declaration] = STATE(1096), + [sym_type_definition] = STATE(1096), + [sym__declaration_specifiers] = STATE(273), + [sym_compound_statement] = STATE(1096), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym_labeled_statement] = STATE(1096), + [sym_expression_statement] = STATE(1096), + [sym_if_statement] = STATE(1096), + [sym_switch_statement] = STATE(1096), + [sym_while_statement] = STATE(1096), + [sym_do_statement] = STATE(1096), + [sym_for_statement] = STATE(1096), + [sym_return_statement] = STATE(1096), + [sym_break_statement] = STATE(1096), + [sym_continue_statement] = STATE(1096), + [sym_goto_statement] = STATE(1096), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [aux_sym_case_statement_repeat1] = STATE(1096), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_typedef] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_static] = ACTIONS(29), + [anon_sym_auto] = ACTIONS(29), + [anon_sym_register] = ACTIONS(29), + [anon_sym_inline] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_restrict] = ACTIONS(31), + [anon_sym_volatile] = ACTIONS(31), + [anon_sym__Atomic] = ACTIONS(31), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), + [anon_sym_enum] = ACTIONS(37), + [anon_sym_struct] = ACTIONS(39), + [anon_sym_union] = ACTIONS(41), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_case] = ACTIONS(3222), + [anon_sym_default] = ACTIONS(3222), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(2726), + [sym_comment] = ACTIONS(81), }, [966] = { - [anon_sym_RPAREN] = ACTIONS(3143), - [sym_comment] = ACTIONS(85), + [sym_parenthesized_expression] = STATE(1097), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, [967] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(3145), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1685), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PERCENT_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_CARET_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [sym_parenthesized_expression] = STATE(1098), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, [968] = { - [sym_type_qualifier] = STATE(81), - [sym__type_specifier] = STATE(76), - [sym_sized_type_specifier] = STATE(76), - [sym_enum_specifier] = STATE(76), - [sym_struct_specifier] = STATE(76), - [sym_union_specifier] = STATE(76), - [sym__expression] = STATE(77), - [sym_comma_expression] = STATE(78), - [sym_conditional_expression] = STATE(77), - [sym_assignment_expression] = STATE(77), - [sym_pointer_expression] = STATE(77), - [sym_logical_expression] = STATE(77), - [sym_bitwise_expression] = STATE(77), - [sym_equality_expression] = STATE(77), - [sym_relational_expression] = STATE(77), - [sym_shift_expression] = STATE(77), - [sym_math_expression] = STATE(77), - [sym_cast_expression] = STATE(77), - [sym_type_descriptor] = STATE(1101), - [sym_sizeof_expression] = STATE(77), - [sym_subscript_expression] = STATE(77), - [sym_call_expression] = STATE(77), - [sym_field_expression] = STATE(77), - [sym_compound_literal_expression] = STATE(77), - [sym_parenthesized_expression] = STATE(77), - [sym_char_literal] = STATE(77), - [sym_concatenated_string] = STATE(77), - [sym_string_literal] = STATE(80), - [sym_macro_type_specifier] = STATE(76), - [aux_sym_type_definition_repeat1] = STATE(81), - [aux_sym_sized_type_specifier_repeat1] = STATE(82), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), + [anon_sym_LPAREN2] = ACTIONS(3224), + [sym_comment] = ACTIONS(81), + }, + [969] = { + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_extern] = ACTIONS(242), + [anon_sym_LPAREN2] = ACTIONS(244), + [anon_sym_STAR] = ACTIONS(248), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_static] = ACTIONS(242), + [anon_sym_auto] = ACTIONS(242), + [anon_sym_register] = ACTIONS(242), + [anon_sym_inline] = ACTIONS(242), + [anon_sym_const] = ACTIONS(242), + [anon_sym_restrict] = ACTIONS(242), + [anon_sym_volatile] = ACTIONS(242), + [anon_sym__Atomic] = ACTIONS(242), + [anon_sym_COLON] = ACTIONS(3226), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_identifier] = ACTIONS(242), + [sym_comment] = ACTIONS(81), + }, + [970] = { + [sym_declaration] = STATE(1101), + [sym_type_definition] = STATE(1101), + [sym__declaration_specifiers] = STATE(273), + [sym_compound_statement] = STATE(1101), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym_labeled_statement] = STATE(1101), + [sym_expression_statement] = STATE(1101), + [sym_if_statement] = STATE(1101), + [sym_switch_statement] = STATE(1101), + [sym_while_statement] = STATE(1101), + [sym_do_statement] = STATE(1101), + [sym_for_statement] = STATE(1101), + [sym_return_statement] = STATE(1101), + [sym_break_statement] = STATE(1101), + [sym_continue_statement] = STATE(1101), + [sym_goto_statement] = STATE(1101), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [aux_sym_case_statement_repeat1] = STATE(1101), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_typedef] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_static] = ACTIONS(29), + [anon_sym_auto] = ACTIONS(29), + [anon_sym_register] = ACTIONS(29), + [anon_sym_inline] = ACTIONS(29), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [sym_primitive_type] = ACTIONS(141), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(153), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(155), - [sym_false] = ACTIONS(155), - [sym_null] = ACTIONS(155), - [sym_identifier] = ACTIONS(157), - [sym_comment] = ACTIONS(85), - }, - [969] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(715), - [anon_sym_RBRACE] = ACTIONS(715), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(717), - [anon_sym_QMARK] = ACTIONS(715), - [anon_sym_STAR_EQ] = ACTIONS(715), - [anon_sym_SLASH_EQ] = ACTIONS(715), - [anon_sym_PERCENT_EQ] = ACTIONS(715), - [anon_sym_PLUS_EQ] = ACTIONS(715), - [anon_sym_DASH_EQ] = ACTIONS(715), - [anon_sym_LT_LT_EQ] = ACTIONS(715), - [anon_sym_GT_GT_EQ] = ACTIONS(715), - [anon_sym_AMP_EQ] = ACTIONS(715), - [anon_sym_CARET_EQ] = ACTIONS(715), - [anon_sym_PIPE_EQ] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_CARET] = ACTIONS(717), - [anon_sym_EQ_EQ] = ACTIONS(715), - [anon_sym_BANG_EQ] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(717), - [anon_sym_GT] = ACTIONS(717), - [anon_sym_LT_EQ] = ACTIONS(715), - [anon_sym_GT_EQ] = ACTIONS(715), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [970] = { - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3147), - [anon_sym_DOT] = ACTIONS(3147), - [sym_comment] = ACTIONS(85), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_case] = ACTIONS(3222), + [anon_sym_default] = ACTIONS(3222), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(2726), + [sym_comment] = ACTIONS(81), }, [971] = { [sym__expression] = STATE(1103), @@ -42475,158 +41095,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(1103), [sym_compound_literal_expression] = STATE(1103), [sym_parenthesized_expression] = STATE(1103), - [sym_initializer_list] = STATE(1104), - [sym_initializer_pair] = STATE(1104), - [sym_subscript_designator] = STATE(780), - [sym_field_designator] = STATE(780), [sym_char_literal] = STATE(1103), [sym_concatenated_string] = STATE(1103), - [sym_string_literal] = STATE(779), - [aux_sym_initializer_pair_repeat1] = STATE(780), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(3149), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [anon_sym_DOT] = ACTIONS(2088), - [sym_number_literal] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3153), - [sym_false] = ACTIONS(3153), - [sym_null] = ACTIONS(3153), - [sym_identifier] = ACTIONS(3153), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3230), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [sym_null] = ACTIONS(3232), + [sym_identifier] = ACTIONS(3232), + [sym_comment] = ACTIONS(81), }, [972] = { - [sym__expression] = STATE(361), - [sym_conditional_expression] = STATE(361), - [sym_assignment_expression] = STATE(361), - [sym_pointer_expression] = STATE(361), - [sym_logical_expression] = STATE(361), - [sym_bitwise_expression] = STATE(361), - [sym_equality_expression] = STATE(361), - [sym_relational_expression] = STATE(361), - [sym_shift_expression] = STATE(361), - [sym_math_expression] = STATE(361), - [sym_cast_expression] = STATE(361), - [sym_sizeof_expression] = STATE(361), - [sym_subscript_expression] = STATE(361), - [sym_call_expression] = STATE(361), - [sym_field_expression] = STATE(361), - [sym_compound_literal_expression] = STATE(361), - [sym_parenthesized_expression] = STATE(361), - [sym_char_literal] = STATE(361), - [sym_concatenated_string] = STATE(361), - [sym_string_literal] = STATE(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(767), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(769), - [sym_false] = ACTIONS(769), - [sym_null] = ACTIONS(769), - [sym_identifier] = ACTIONS(769), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3234), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [973] = { - [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(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(3155), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_null] = ACTIONS(3157), - [sym_identifier] = ACTIONS(3157), - [sym_comment] = ACTIONS(85), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(1336), + [sym_comment] = ACTIONS(81), }, [974] = { - [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(102), - [anon_sym_LPAREN2] = ACTIONS(181), - [anon_sym_STAR] = ACTIONS(183), - [anon_sym_AMP] = ACTIONS(183), - [anon_sym_BANG] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(189), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_DASH_DASH] = ACTIONS(191), - [anon_sym_PLUS_PLUS] = ACTIONS(191), - [anon_sym_sizeof] = ACTIONS(193), - [sym_number_literal] = ACTIONS(3159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3161), - [sym_false] = ACTIONS(3161), - [sym_null] = ACTIONS(3161), - [sym_identifier] = ACTIONS(3161), - [sym_comment] = ACTIONS(85), - }, - [975] = { [sym__expression] = STATE(1107), [sym_conditional_expression] = STATE(1107), [sym_assignment_expression] = STATE(1107), @@ -42646,147 +41184,176 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1107), [sym_char_literal] = STATE(1107), [sym_concatenated_string] = STATE(1107), - [sym_string_literal] = STATE(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [sym_null] = ACTIONS(3165), - [sym_identifier] = ACTIONS(3165), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_null] = ACTIONS(3242), + [sym_identifier] = ACTIONS(3242), + [sym_comment] = ACTIONS(81), + }, + [975] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [976] = { - [sym__expression] = STATE(1108), - [sym_conditional_expression] = STATE(1108), - [sym_assignment_expression] = STATE(1108), - [sym_pointer_expression] = STATE(1108), - [sym_logical_expression] = STATE(1108), - [sym_bitwise_expression] = STATE(1108), - [sym_equality_expression] = STATE(1108), - [sym_relational_expression] = STATE(1108), - [sym_shift_expression] = STATE(1108), - [sym_math_expression] = STATE(1108), - [sym_cast_expression] = STATE(1108), - [sym_sizeof_expression] = STATE(1108), - [sym_subscript_expression] = STATE(1108), - [sym_call_expression] = STATE(1108), - [sym_field_expression] = STATE(1108), - [sym_compound_literal_expression] = STATE(1108), - [sym_parenthesized_expression] = STATE(1108), - [sym_char_literal] = STATE(1108), - [sym_concatenated_string] = STATE(1108), - [sym_string_literal] = STATE(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [sym_null] = ACTIONS(3169), - [sym_identifier] = ACTIONS(3169), - [sym_comment] = ACTIONS(85), + [sym_compound_statement] = STATE(980), + [sym_labeled_statement] = STATE(980), + [sym_expression_statement] = STATE(980), + [sym_if_statement] = STATE(980), + [sym_switch_statement] = STATE(980), + [sym_while_statement] = STATE(980), + [sym_do_statement] = STATE(980), + [sym_for_statement] = STATE(980), + [sym_return_statement] = STATE(980), + [sym_break_statement] = STATE(980), + [sym_continue_statement] = STATE(980), + [sym_goto_statement] = STATE(980), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(173), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(181), + [sym_comment] = ACTIONS(81), }, [977] = { - [sym__expression] = STATE(1109), - [sym_conditional_expression] = STATE(1109), - [sym_assignment_expression] = STATE(1109), - [sym_pointer_expression] = STATE(1109), - [sym_logical_expression] = STATE(1109), - [sym_bitwise_expression] = STATE(1109), - [sym_equality_expression] = STATE(1109), - [sym_relational_expression] = STATE(1109), - [sym_shift_expression] = STATE(1109), - [sym_math_expression] = STATE(1109), - [sym_cast_expression] = STATE(1109), - [sym_sizeof_expression] = STATE(1109), - [sym_subscript_expression] = STATE(1109), - [sym_call_expression] = STATE(1109), - [sym_field_expression] = STATE(1109), - [sym_compound_literal_expression] = STATE(1109), - [sym_parenthesized_expression] = STATE(1109), - [sym_char_literal] = STATE(1109), - [sym_concatenated_string] = STATE(1109), - [sym_string_literal] = STATE(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(3171), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_null] = ACTIONS(3173), - [sym_identifier] = ACTIONS(3173), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1110), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [978] = { - [sym__expression] = STATE(1110), - [sym_conditional_expression] = STATE(1110), - [sym_assignment_expression] = STATE(1110), - [sym_pointer_expression] = STATE(1110), - [sym_logical_expression] = STATE(1110), - [sym_bitwise_expression] = STATE(1110), - [sym_equality_expression] = STATE(1110), - [sym_relational_expression] = STATE(1110), - [sym_shift_expression] = STATE(1110), - [sym_math_expression] = STATE(1110), - [sym_cast_expression] = STATE(1110), - [sym_sizeof_expression] = STATE(1110), - [sym_subscript_expression] = STATE(1110), - [sym_call_expression] = STATE(1110), - [sym_field_expression] = STATE(1110), - [sym_compound_literal_expression] = STATE(1110), - [sym_parenthesized_expression] = STATE(1110), - [sym_char_literal] = STATE(1110), - [sym_concatenated_string] = STATE(1110), - [sym_string_literal] = STATE(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_null] = ACTIONS(3177), - [sym_identifier] = ACTIONS(3177), - [sym_comment] = ACTIONS(85), - }, - [979] = { [sym__expression] = STATE(1111), [sym_conditional_expression] = STATE(1111), [sym_assignment_expression] = STATE(1111), @@ -42806,334 +41373,1201 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1111), [sym_char_literal] = STATE(1111), [sym_concatenated_string] = STATE(1111), - [sym_string_literal] = STATE(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(3179), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3181), - [sym_false] = ACTIONS(3181), - [sym_null] = ACTIONS(3181), - [sym_identifier] = ACTIONS(3181), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_null] = ACTIONS(3250), + [sym_identifier] = ACTIONS(3250), + [sym_comment] = ACTIONS(81), + }, + [979] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [980] = { - [sym__expression] = STATE(1112), - [sym_conditional_expression] = STATE(1112), - [sym_assignment_expression] = STATE(1112), - [sym_pointer_expression] = STATE(1112), - [sym_logical_expression] = STATE(1112), - [sym_bitwise_expression] = STATE(1112), - [sym_equality_expression] = STATE(1112), - [sym_relational_expression] = STATE(1112), - [sym_shift_expression] = STATE(1112), - [sym_math_expression] = STATE(1112), - [sym_cast_expression] = STATE(1112), - [sym_sizeof_expression] = STATE(1112), - [sym_subscript_expression] = STATE(1112), - [sym_call_expression] = STATE(1112), - [sym_field_expression] = STATE(1112), - [sym_compound_literal_expression] = STATE(1112), - [sym_parenthesized_expression] = STATE(1112), - [sym_char_literal] = STATE(1112), - [sym_concatenated_string] = STATE(1112), - [sym_string_literal] = STATE(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_null] = ACTIONS(3185), - [sym_identifier] = ACTIONS(3185), - [sym_comment] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(3254), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3256), + [sym_preproc_directive] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_typedef] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_auto] = ACTIONS(3256), + [anon_sym_register] = ACTIONS(3256), + [anon_sym_inline] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym_unsigned] = ACTIONS(3256), + [anon_sym_long] = ACTIONS(3256), + [anon_sym_short] = ACTIONS(3256), + [sym_primitive_type] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_union] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_else] = ACTIONS(3256), + [anon_sym_switch] = ACTIONS(3256), + [anon_sym_case] = ACTIONS(3256), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_while] = ACTIONS(3256), + [anon_sym_do] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_goto] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_sizeof] = ACTIONS(3256), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [sym_null] = ACTIONS(3256), + [sym_identifier] = ACTIONS(3256), + [sym_comment] = ACTIONS(81), }, [981] = { - [sym__expression] = STATE(1113), - [sym_conditional_expression] = STATE(1113), - [sym_assignment_expression] = STATE(1113), - [sym_pointer_expression] = STATE(1113), - [sym_logical_expression] = STATE(1113), - [sym_bitwise_expression] = STATE(1113), - [sym_equality_expression] = STATE(1113), - [sym_relational_expression] = STATE(1113), - [sym_shift_expression] = STATE(1113), - [sym_math_expression] = STATE(1113), - [sym_cast_expression] = STATE(1113), - [sym_sizeof_expression] = STATE(1113), - [sym_subscript_expression] = STATE(1113), - [sym_call_expression] = STATE(1113), - [sym_field_expression] = STATE(1113), - [sym_compound_literal_expression] = STATE(1113), - [sym_parenthesized_expression] = STATE(1113), - [sym_char_literal] = STATE(1113), - [sym_concatenated_string] = STATE(1113), - [sym_string_literal] = STATE(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(3187), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [sym_null] = ACTIONS(3189), - [sym_identifier] = ACTIONS(3189), - [sym_comment] = ACTIONS(85), + [sym_compound_statement] = STATE(1113), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(43), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(81), }, [982] = { - [sym__expression] = STATE(1114), - [sym_conditional_expression] = STATE(1114), - [sym_assignment_expression] = STATE(1114), - [sym_pointer_expression] = STATE(1114), - [sym_logical_expression] = STATE(1114), - [sym_bitwise_expression] = STATE(1114), - [sym_equality_expression] = STATE(1114), - [sym_relational_expression] = STATE(1114), - [sym_shift_expression] = STATE(1114), - [sym_math_expression] = STATE(1114), - [sym_cast_expression] = STATE(1114), - [sym_sizeof_expression] = STATE(1114), - [sym_subscript_expression] = STATE(1114), - [sym_call_expression] = STATE(1114), - [sym_field_expression] = STATE(1114), - [sym_compound_literal_expression] = STATE(1114), - [sym_parenthesized_expression] = STATE(1114), - [sym_char_literal] = STATE(1114), - [sym_concatenated_string] = STATE(1114), - [sym_string_literal] = STATE(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_null] = ACTIONS(3193), - [sym_identifier] = ACTIONS(3193), - [sym_comment] = ACTIONS(85), + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3258), + [sym_comment] = ACTIONS(81), }, [983] = { - [sym__expression] = STATE(1115), - [sym_conditional_expression] = STATE(1115), - [sym_assignment_expression] = STATE(1115), - [sym_pointer_expression] = STATE(1115), - [sym_logical_expression] = STATE(1115), - [sym_bitwise_expression] = STATE(1115), - [sym_equality_expression] = STATE(1115), - [sym_relational_expression] = STATE(1115), - [sym_shift_expression] = STATE(1115), - [sym_math_expression] = STATE(1115), - [sym_cast_expression] = STATE(1115), - [sym_sizeof_expression] = STATE(1115), - [sym_subscript_expression] = STATE(1115), - [sym_call_expression] = STATE(1115), - [sym_field_expression] = STATE(1115), - [sym_compound_literal_expression] = STATE(1115), - [sym_parenthesized_expression] = STATE(1115), - [sym_char_literal] = STATE(1115), - [sym_concatenated_string] = STATE(1115), - [sym_string_literal] = STATE(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [sym_null] = ACTIONS(3197), - [sym_identifier] = ACTIONS(3197), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1115), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [984] = { - [aux_sym_initializer_list_repeat1] = STATE(1117), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3149), - [sym_comment] = ACTIONS(85), + [sym__expression] = STATE(1116), + [sym_conditional_expression] = STATE(1116), + [sym_assignment_expression] = STATE(1116), + [sym_pointer_expression] = STATE(1116), + [sym_logical_expression] = STATE(1116), + [sym_bitwise_expression] = STATE(1116), + [sym_equality_expression] = STATE(1116), + [sym_relational_expression] = STATE(1116), + [sym_shift_expression] = STATE(1116), + [sym_math_expression] = STATE(1116), + [sym_cast_expression] = STATE(1116), + [sym_sizeof_expression] = STATE(1116), + [sym_subscript_expression] = STATE(1116), + [sym_call_expression] = STATE(1116), + [sym_field_expression] = STATE(1116), + [sym_compound_literal_expression] = STATE(1116), + [sym_parenthesized_expression] = STATE(1116), + [sym_char_literal] = STATE(1116), + [sym_concatenated_string] = STATE(1116), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_null] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3262), + [sym_comment] = ACTIONS(81), }, [985] = { - [sym_string_literal] = STATE(1118), - [aux_sym_concatenated_string_repeat1] = STATE(1118), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_RBRACE] = ACTIONS(839), - [anon_sym_LPAREN2] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(839), - [anon_sym_EQ] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(839), - [anon_sym_STAR_EQ] = ACTIONS(839), - [anon_sym_SLASH_EQ] = ACTIONS(839), - [anon_sym_PERCENT_EQ] = ACTIONS(839), - [anon_sym_PLUS_EQ] = ACTIONS(839), - [anon_sym_DASH_EQ] = ACTIONS(839), - [anon_sym_LT_LT_EQ] = ACTIONS(839), - [anon_sym_GT_GT_EQ] = ACTIONS(839), - [anon_sym_AMP_EQ] = ACTIONS(839), - [anon_sym_CARET_EQ] = ACTIONS(839), - [anon_sym_PIPE_EQ] = ACTIONS(839), - [anon_sym_AMP] = ACTIONS(841), - [anon_sym_PIPE_PIPE] = ACTIONS(839), - [anon_sym_AMP_AMP] = ACTIONS(839), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(839), - [anon_sym_BANG_EQ] = ACTIONS(839), - [anon_sym_LT] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_LT_EQ] = ACTIONS(839), - [anon_sym_GT_EQ] = ACTIONS(839), - [anon_sym_LT_LT] = ACTIONS(841), - [anon_sym_GT_GT] = ACTIONS(841), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_PERCENT] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(839), - [anon_sym_PLUS_PLUS] = ACTIONS(839), - [anon_sym_DOT] = ACTIONS(839), - [anon_sym_DASH_GT] = ACTIONS(839), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [986] = { - [sym__expression] = STATE(1119), - [sym_conditional_expression] = STATE(1119), - [sym_assignment_expression] = STATE(1119), - [sym_pointer_expression] = STATE(1119), - [sym_logical_expression] = STATE(1119), - [sym_bitwise_expression] = STATE(1119), - [sym_equality_expression] = STATE(1119), - [sym_relational_expression] = STATE(1119), - [sym_shift_expression] = STATE(1119), - [sym_math_expression] = STATE(1119), - [sym_cast_expression] = STATE(1119), - [sym_sizeof_expression] = STATE(1119), - [sym_subscript_expression] = STATE(1119), - [sym_call_expression] = STATE(1119), - [sym_field_expression] = STATE(1119), - [sym_compound_literal_expression] = STATE(1119), - [sym_parenthesized_expression] = STATE(1119), - [sym_initializer_list] = STATE(1120), - [sym_char_literal] = STATE(1119), - [sym_concatenated_string] = STATE(1119), - [sym_string_literal] = STATE(779), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(3201), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_null] = ACTIONS(3203), - [sym_identifier] = ACTIONS(3203), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_RPAREN] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_EQ] = ACTIONS(3264), + [sym_comment] = ACTIONS(81), }, [987] = { - [sym_subscript_designator] = STATE(987), - [sym_field_designator] = STATE(987), - [aux_sym_initializer_pair_repeat1] = STATE(987), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_EQ] = ACTIONS(3208), - [anon_sym_DOT] = ACTIONS(3210), - [sym_comment] = ACTIONS(85), + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_pointer_expression] = STATE(471), + [sym_logical_expression] = STATE(471), + [sym_bitwise_expression] = STATE(471), + [sym_equality_expression] = STATE(471), + [sym_relational_expression] = STATE(471), + [sym_shift_expression] = STATE(471), + [sym_math_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(471), + [sym_call_expression] = STATE(471), + [sym_field_expression] = STATE(471), + [sym_compound_literal_expression] = STATE(471), + [sym_parenthesized_expression] = STATE(471), + [sym_initializer_list] = STATE(472), + [sym_char_literal] = STATE(471), + [sym_concatenated_string] = STATE(471), + [sym_string_literal] = STATE(324), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_RBRACK] = ACTIONS(2087), + [anon_sym_EQ] = ACTIONS(2091), + [anon_sym_QMARK] = ACTIONS(2087), + [anon_sym_STAR_EQ] = ACTIONS(2087), + [anon_sym_SLASH_EQ] = ACTIONS(2087), + [anon_sym_PERCENT_EQ] = ACTIONS(2087), + [anon_sym_PLUS_EQ] = ACTIONS(2087), + [anon_sym_DASH_EQ] = ACTIONS(2087), + [anon_sym_LT_LT_EQ] = ACTIONS(2087), + [anon_sym_GT_GT_EQ] = ACTIONS(2087), + [anon_sym_AMP_EQ] = ACTIONS(2087), + [anon_sym_CARET_EQ] = ACTIONS(2087), + [anon_sym_PIPE_EQ] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(2087), + [anon_sym_AMP_AMP] = ACTIONS(2087), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_PIPE] = ACTIONS(2091), + [anon_sym_CARET] = ACTIONS(2091), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_EQ_EQ] = ACTIONS(2087), + [anon_sym_BANG_EQ] = ACTIONS(2087), + [anon_sym_LT] = ACTIONS(2091), + [anon_sym_GT] = ACTIONS(2091), + [anon_sym_LT_EQ] = ACTIONS(2087), + [anon_sym_GT_EQ] = ACTIONS(2087), + [anon_sym_LT_LT] = ACTIONS(2091), + [anon_sym_GT_GT] = ACTIONS(2091), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_SLASH] = ACTIONS(2091), + [anon_sym_PERCENT] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [anon_sym_DOT] = ACTIONS(2087), + [anon_sym_DASH_GT] = ACTIONS(2087), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [sym_null] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1277), + [sym_comment] = ACTIONS(81), }, [988] = { - [anon_sym_COMMA] = ACTIONS(3213), - [anon_sym_RPAREN] = ACTIONS(3213), - [anon_sym_SEMI] = ACTIONS(3213), - [anon_sym_extern] = ACTIONS(3215), - [anon_sym_LPAREN2] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3213), - [anon_sym_static] = ACTIONS(3215), - [anon_sym_auto] = ACTIONS(3215), - [anon_sym_register] = ACTIONS(3215), - [anon_sym_inline] = ACTIONS(3215), - [anon_sym_const] = ACTIONS(3215), - [anon_sym_restrict] = ACTIONS(3215), - [anon_sym_volatile] = ACTIONS(3215), - [anon_sym__Atomic] = ACTIONS(3215), - [anon_sym_COLON] = ACTIONS(3213), - [sym_identifier] = ACTIONS(3215), - [sym_comment] = ACTIONS(85), + [sym__expression] = STATE(1117), + [sym_conditional_expression] = STATE(1117), + [sym_assignment_expression] = STATE(1117), + [sym_pointer_expression] = STATE(1117), + [sym_logical_expression] = STATE(1117), + [sym_bitwise_expression] = STATE(1117), + [sym_equality_expression] = STATE(1117), + [sym_relational_expression] = STATE(1117), + [sym_shift_expression] = STATE(1117), + [sym_math_expression] = STATE(1117), + [sym_cast_expression] = STATE(1117), + [sym_sizeof_expression] = STATE(1117), + [sym_subscript_expression] = STATE(1117), + [sym_call_expression] = STATE(1117), + [sym_field_expression] = STATE(1117), + [sym_compound_literal_expression] = STATE(1117), + [sym_parenthesized_expression] = STATE(1117), + [sym_char_literal] = STATE(1117), + [sym_concatenated_string] = STATE(1117), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_identifier] = ACTIONS(3272), + [sym_comment] = ACTIONS(81), }, [989] = { - [sym_enumerator] = STATE(783), - [sym_identifier] = ACTIONS(539), - [sym_comment] = ACTIONS(85), + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_pointer_expression] = STATE(471), + [sym_logical_expression] = STATE(471), + [sym_bitwise_expression] = STATE(471), + [sym_equality_expression] = STATE(471), + [sym_relational_expression] = STATE(471), + [sym_shift_expression] = STATE(471), + [sym_math_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(471), + [sym_call_expression] = STATE(471), + [sym_field_expression] = STATE(471), + [sym_compound_literal_expression] = STATE(471), + [sym_parenthesized_expression] = STATE(471), + [sym_initializer_list] = STATE(472), + [sym_char_literal] = STATE(471), + [sym_concatenated_string] = STATE(471), + [sym_string_literal] = STATE(333), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_EQ] = ACTIONS(2091), + [anon_sym_COLON] = ACTIONS(2087), + [anon_sym_QMARK] = ACTIONS(2087), + [anon_sym_STAR_EQ] = ACTIONS(2087), + [anon_sym_SLASH_EQ] = ACTIONS(2087), + [anon_sym_PERCENT_EQ] = ACTIONS(2087), + [anon_sym_PLUS_EQ] = ACTIONS(2087), + [anon_sym_DASH_EQ] = ACTIONS(2087), + [anon_sym_LT_LT_EQ] = ACTIONS(2087), + [anon_sym_GT_GT_EQ] = ACTIONS(2087), + [anon_sym_AMP_EQ] = ACTIONS(2087), + [anon_sym_CARET_EQ] = ACTIONS(2087), + [anon_sym_PIPE_EQ] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_PIPE_PIPE] = ACTIONS(2087), + [anon_sym_AMP_AMP] = ACTIONS(2087), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_PIPE] = ACTIONS(2091), + [anon_sym_CARET] = ACTIONS(2091), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(2087), + [anon_sym_BANG_EQ] = ACTIONS(2087), + [anon_sym_LT] = ACTIONS(2091), + [anon_sym_GT] = ACTIONS(2091), + [anon_sym_LT_EQ] = ACTIONS(2087), + [anon_sym_GT_EQ] = ACTIONS(2087), + [anon_sym_LT_LT] = ACTIONS(2091), + [anon_sym_GT_GT] = ACTIONS(2091), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_SLASH] = ACTIONS(2091), + [anon_sym_PERCENT] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [anon_sym_DOT] = ACTIONS(2087), + [anon_sym_DASH_GT] = ACTIONS(2087), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [sym_null] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1277), + [sym_comment] = ACTIONS(81), }, [990] = { - [sym_preproc_if_in_field_declaration_list] = STATE(1121), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1121), - [sym__declaration_specifiers] = STATE(268), - [sym_storage_class_specifier] = STATE(271), - [sym_type_qualifier] = STATE(271), - [sym__type_specifier] = STATE(269), - [sym_sized_type_specifier] = STATE(269), - [sym_enum_specifier] = STATE(269), - [sym_struct_specifier] = STATE(269), - [sym_union_specifier] = STATE(269), - [sym__field_declaration_list_item] = STATE(1121), - [sym_field_declaration] = STATE(1121), - [sym_macro_type_specifier] = STATE(269), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1121), - [aux_sym__declaration_specifiers_repeat1] = STATE(271), - [aux_sym_sized_type_specifier_repeat1] = STATE(272), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3217), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(551), - [anon_sym_extern] = ACTIONS(29), + [sym__expression] = STATE(1118), + [sym_conditional_expression] = STATE(1118), + [sym_assignment_expression] = STATE(1118), + [sym_pointer_expression] = STATE(1118), + [sym_logical_expression] = STATE(1118), + [sym_bitwise_expression] = STATE(1118), + [sym_equality_expression] = STATE(1118), + [sym_relational_expression] = STATE(1118), + [sym_shift_expression] = STATE(1118), + [sym_math_expression] = STATE(1118), + [sym_cast_expression] = STATE(1118), + [sym_sizeof_expression] = STATE(1118), + [sym_subscript_expression] = STATE(1118), + [sym_call_expression] = STATE(1118), + [sym_field_expression] = STATE(1118), + [sym_compound_literal_expression] = STATE(1118), + [sym_parenthesized_expression] = STATE(1118), + [sym_char_literal] = STATE(1118), + [sym_concatenated_string] = STATE(1118), + [sym_string_literal] = STATE(333), + [anon_sym_LPAREN2] = ACTIONS(701), + [anon_sym_STAR] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_sizeof] = ACTIONS(713), + [sym_number_literal] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3280), + [sym_false] = ACTIONS(3280), + [sym_null] = ACTIONS(3280), + [sym_identifier] = ACTIONS(3280), + [sym_comment] = ACTIONS(81), + }, + [991] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2244), + [sym_preproc_directive] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_typedef] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_LPAREN2] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_auto] = ACTIONS(2244), + [anon_sym_register] = ACTIONS(2244), + [anon_sym_inline] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_restrict] = ACTIONS(2244), + [anon_sym_volatile] = ACTIONS(2244), + [anon_sym__Atomic] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [anon_sym_struct] = ACTIONS(2244), + [anon_sym_union] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_goto] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_sizeof] = ACTIONS(2244), + [sym_number_literal] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_identifier] = ACTIONS(2244), + [sym_comment] = ACTIONS(81), + }, + [992] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2401), + [sym_preproc_directive] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_typedef] = ACTIONS(2401), + [anon_sym_extern] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_auto] = ACTIONS(2401), + [anon_sym_register] = ACTIONS(2401), + [anon_sym_inline] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_restrict] = ACTIONS(2401), + [anon_sym_volatile] = ACTIONS(2401), + [anon_sym__Atomic] = ACTIONS(2401), + [anon_sym_unsigned] = ACTIONS(2401), + [anon_sym_long] = ACTIONS(2401), + [anon_sym_short] = ACTIONS(2401), + [sym_primitive_type] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_switch] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_goto] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_sizeof] = ACTIONS(2401), + [sym_number_literal] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2399), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_null] = ACTIONS(2401), + [sym_identifier] = ACTIONS(2401), + [sym_comment] = ACTIONS(81), + }, + [993] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_LPAREN2] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_auto] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_AMP] = ACTIONS(2403), + [anon_sym_BANG] = ACTIONS(2403), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2403), + [anon_sym_PLUS_PLUS] = ACTIONS(2403), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(2403), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2405), + [sym_comment] = ACTIONS(81), + }, + [994] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1450), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [sym_null] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1450), + [sym_comment] = ACTIONS(81), + }, + [995] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1628), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1628), + [sym_preproc_directive] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1626), + [anon_sym_typedef] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_LPAREN2] = ACTIONS(1626), + [anon_sym_STAR] = ACTIONS(1626), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_auto] = ACTIONS(1628), + [anon_sym_register] = ACTIONS(1628), + [anon_sym_inline] = ACTIONS(1628), + [anon_sym_const] = ACTIONS(1628), + [anon_sym_restrict] = ACTIONS(1628), + [anon_sym_volatile] = ACTIONS(1628), + [anon_sym__Atomic] = ACTIONS(1628), + [anon_sym_unsigned] = ACTIONS(1628), + [anon_sym_long] = ACTIONS(1628), + [anon_sym_short] = ACTIONS(1628), + [sym_primitive_type] = ACTIONS(1628), + [anon_sym_enum] = ACTIONS(1628), + [anon_sym_struct] = ACTIONS(1628), + [anon_sym_union] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1628), + [anon_sym_switch] = ACTIONS(1628), + [anon_sym_while] = ACTIONS(1628), + [anon_sym_do] = ACTIONS(1628), + [anon_sym_for] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1628), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_goto] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1626), + [anon_sym_PLUS_PLUS] = ACTIONS(1626), + [anon_sym_sizeof] = ACTIONS(1628), + [sym_number_literal] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1626), + [anon_sym_DQUOTE] = ACTIONS(1626), + [sym_true] = ACTIONS(1628), + [sym_false] = ACTIONS(1628), + [sym_null] = ACTIONS(1628), + [sym_identifier] = ACTIONS(1628), + [sym_comment] = ACTIONS(81), + }, + [996] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1632), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1632), + [sym_preproc_directive] = ACTIONS(1632), + [anon_sym_SEMI] = ACTIONS(1630), + [anon_sym_typedef] = ACTIONS(1632), + [anon_sym_extern] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1630), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(1630), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_auto] = ACTIONS(1632), + [anon_sym_register] = ACTIONS(1632), + [anon_sym_inline] = ACTIONS(1632), + [anon_sym_const] = ACTIONS(1632), + [anon_sym_restrict] = ACTIONS(1632), + [anon_sym_volatile] = ACTIONS(1632), + [anon_sym__Atomic] = ACTIONS(1632), + [anon_sym_unsigned] = ACTIONS(1632), + [anon_sym_long] = ACTIONS(1632), + [anon_sym_short] = ACTIONS(1632), + [sym_primitive_type] = ACTIONS(1632), + [anon_sym_enum] = ACTIONS(1632), + [anon_sym_struct] = ACTIONS(1632), + [anon_sym_union] = ACTIONS(1632), + [anon_sym_if] = ACTIONS(1632), + [anon_sym_switch] = ACTIONS(1632), + [anon_sym_while] = ACTIONS(1632), + [anon_sym_do] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1632), + [anon_sym_return] = ACTIONS(1632), + [anon_sym_break] = ACTIONS(1632), + [anon_sym_continue] = ACTIONS(1632), + [anon_sym_goto] = ACTIONS(1632), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1632), + [anon_sym_DASH_DASH] = ACTIONS(1630), + [anon_sym_PLUS_PLUS] = ACTIONS(1630), + [anon_sym_sizeof] = ACTIONS(1632), + [sym_number_literal] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_DQUOTE] = ACTIONS(1630), + [sym_true] = ACTIONS(1632), + [sym_false] = ACTIONS(1632), + [sym_null] = ACTIONS(1632), + [sym_identifier] = ACTIONS(1632), + [sym_comment] = ACTIONS(81), + }, + [997] = { + [anon_sym_LF] = ACTIONS(3282), + [sym_comment] = ACTIONS(91), + }, + [998] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1726), + [sym_preproc_directive] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1724), + [anon_sym_typedef] = ACTIONS(1726), + [anon_sym_extern] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_LPAREN2] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1726), + [anon_sym_auto] = ACTIONS(1726), + [anon_sym_register] = ACTIONS(1726), + [anon_sym_inline] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1726), + [anon_sym_restrict] = ACTIONS(1726), + [anon_sym_volatile] = ACTIONS(1726), + [anon_sym__Atomic] = ACTIONS(1726), + [anon_sym_unsigned] = ACTIONS(1726), + [anon_sym_long] = ACTIONS(1726), + [anon_sym_short] = ACTIONS(1726), + [sym_primitive_type] = ACTIONS(1726), + [anon_sym_enum] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(1726), + [anon_sym_union] = ACTIONS(1726), + [anon_sym_if] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1726), + [anon_sym_do] = ACTIONS(1726), + [anon_sym_for] = ACTIONS(1726), + [anon_sym_return] = ACTIONS(1726), + [anon_sym_break] = ACTIONS(1726), + [anon_sym_continue] = ACTIONS(1726), + [anon_sym_goto] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_BANG] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1724), + [anon_sym_PLUS_PLUS] = ACTIONS(1724), + [anon_sym_sizeof] = ACTIONS(1726), + [sym_number_literal] = ACTIONS(1724), + [anon_sym_SQUOTE] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [sym_true] = ACTIONS(1726), + [sym_false] = ACTIONS(1726), + [sym_null] = ACTIONS(1726), + [sym_identifier] = ACTIONS(1726), + [sym_comment] = ACTIONS(81), + }, + [999] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3284), + [sym_comment] = ACTIONS(81), + }, + [1000] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1799), + [sym_preproc_directive] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_typedef] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_LPAREN2] = ACTIONS(1797), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_auto] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_inline] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_restrict] = ACTIONS(1799), + [anon_sym_volatile] = ACTIONS(1799), + [anon_sym__Atomic] = ACTIONS(1799), + [anon_sym_unsigned] = ACTIONS(1799), + [anon_sym_long] = ACTIONS(1799), + [anon_sym_short] = ACTIONS(1799), + [sym_primitive_type] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_struct] = ACTIONS(1799), + [anon_sym_union] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_switch] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_goto] = ACTIONS(1799), + [anon_sym_AMP] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_TILDE] = ACTIONS(1797), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_DASH_DASH] = ACTIONS(1797), + [anon_sym_PLUS_PLUS] = ACTIONS(1797), + [anon_sym_sizeof] = ACTIONS(1799), + [sym_number_literal] = ACTIONS(1797), + [anon_sym_SQUOTE] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(1797), + [sym_true] = ACTIONS(1799), + [sym_false] = ACTIONS(1799), + [sym_null] = ACTIONS(1799), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(81), + }, + [1001] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3286), + [sym_comment] = ACTIONS(81), + }, + [1002] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1809), + [sym_preproc_directive] = ACTIONS(1809), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_typedef] = ACTIONS(1809), + [anon_sym_extern] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_static] = ACTIONS(1809), + [anon_sym_auto] = ACTIONS(1809), + [anon_sym_register] = ACTIONS(1809), + [anon_sym_inline] = ACTIONS(1809), + [anon_sym_const] = ACTIONS(1809), + [anon_sym_restrict] = ACTIONS(1809), + [anon_sym_volatile] = ACTIONS(1809), + [anon_sym__Atomic] = ACTIONS(1809), + [anon_sym_unsigned] = ACTIONS(1809), + [anon_sym_long] = ACTIONS(1809), + [anon_sym_short] = ACTIONS(1809), + [sym_primitive_type] = ACTIONS(1809), + [anon_sym_enum] = ACTIONS(1809), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_union] = ACTIONS(1809), + [anon_sym_if] = ACTIONS(1809), + [anon_sym_switch] = ACTIONS(1809), + [anon_sym_while] = ACTIONS(1809), + [anon_sym_do] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1809), + [anon_sym_break] = ACTIONS(1809), + [anon_sym_continue] = ACTIONS(1809), + [anon_sym_goto] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_TILDE] = ACTIONS(1807), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_sizeof] = ACTIONS(1809), + [sym_number_literal] = ACTIONS(1807), + [anon_sym_SQUOTE] = ACTIONS(1807), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_true] = ACTIONS(1809), + [sym_false] = ACTIONS(1809), + [sym_null] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1809), + [sym_comment] = ACTIONS(81), + }, + [1003] = { + [sym_parameter_list] = STATE(414), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_LPAREN2] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(1031), + [sym_comment] = ACTIONS(81), + }, + [1004] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1825), + [sym_preproc_directive] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_typedef] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_LPAREN2] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_auto] = ACTIONS(1825), + [anon_sym_register] = ACTIONS(1825), + [anon_sym_inline] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_restrict] = ACTIONS(1825), + [anon_sym_volatile] = ACTIONS(1825), + [anon_sym__Atomic] = ACTIONS(1825), + [anon_sym_unsigned] = ACTIONS(1825), + [anon_sym_long] = ACTIONS(1825), + [anon_sym_short] = ACTIONS(1825), + [sym_primitive_type] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_switch] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_do] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_goto] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DASH_DASH] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1823), + [anon_sym_sizeof] = ACTIONS(1825), + [sym_number_literal] = ACTIONS(1823), + [anon_sym_SQUOTE] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [sym_true] = ACTIONS(1825), + [sym_false] = ACTIONS(1825), + [sym_null] = ACTIONS(1825), + [sym_identifier] = ACTIONS(1825), + [sym_comment] = ACTIONS(81), + }, + [1005] = { + [sym_preproc_include] = STATE(666), + [sym_preproc_def] = STATE(666), + [sym_preproc_function_def] = STATE(666), + [sym_preproc_call] = STATE(666), + [sym_preproc_if] = STATE(666), + [sym_preproc_ifdef] = STATE(666), + [sym_function_definition] = STATE(666), + [sym_declaration] = STATE(666), + [sym_type_definition] = STATE(666), + [sym__declaration_specifiers] = STATE(35), + [sym_linkage_specification] = STATE(666), + [sym_compound_statement] = STATE(666), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(666), + [sym_expression_statement] = STATE(666), + [sym_if_statement] = STATE(666), + [sym_switch_statement] = STATE(666), + [sym_while_statement] = STATE(666), + [sym_do_statement] = STATE(666), + [sym_for_statement] = STATE(666), + [sym_return_statement] = STATE(666), + [sym_break_statement] = STATE(666), + [sym_continue_statement] = STATE(666), + [sym_goto_statement] = STATE(666), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(666), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_translation_unit_repeat1] = STATE(666), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), + [sym_preproc_directive] = ACTIONS(15), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_typedef] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(21), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -43142,42 +42576,204 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(557), + [anon_sym_unsigned] = ACTIONS(33), + [anon_sym_long] = ACTIONS(33), + [anon_sym_short] = ACTIONS(33), + [sym_primitive_type] = ACTIONS(35), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(123), + [sym_comment] = ACTIONS(81), + }, + [1006] = { + [sym_compound_statement] = STATE(1124), + [sym_labeled_statement] = STATE(1124), + [sym_expression_statement] = STATE(1124), + [sym_if_statement] = STATE(1124), + [sym_switch_statement] = STATE(1124), + [sym_while_statement] = STATE(1124), + [sym_do_statement] = STATE(1124), + [sym_for_statement] = STATE(1124), + [sym_return_statement] = STATE(1124), + [sym_break_statement] = STATE(1124), + [sym_continue_statement] = STATE(1124), + [sym_goto_statement] = STATE(1124), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(2282), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2288), + [sym_comment] = ACTIONS(81), + }, + [1007] = { + [sym_compound_statement] = STATE(848), + [sym_labeled_statement] = STATE(848), + [sym_expression_statement] = STATE(848), + [sym_if_statement] = STATE(848), + [sym_switch_statement] = STATE(848), + [sym_while_statement] = STATE(848), + [sym_do_statement] = STATE(848), + [sym_for_statement] = STATE(848), + [sym_return_statement] = STATE(848), + [sym_break_statement] = STATE(848), + [sym_continue_statement] = STATE(848), + [sym_goto_statement] = STATE(848), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(2282), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2288), + [sym_comment] = ACTIONS(81), }, - [991] = { - [sym_preproc_if_in_field_declaration_list] = STATE(1123), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1123), - [sym_preproc_else_in_field_declaration_list] = STATE(1122), - [sym_preproc_elif_in_field_declaration_list] = STATE(1122), - [sym__declaration_specifiers] = STATE(268), - [sym_storage_class_specifier] = STATE(271), - [sym_type_qualifier] = STATE(271), - [sym__type_specifier] = STATE(269), - [sym_sized_type_specifier] = STATE(269), - [sym_enum_specifier] = STATE(269), - [sym_struct_specifier] = STATE(269), - [sym_union_specifier] = STATE(269), - [sym__field_declaration_list_item] = STATE(1123), - [sym_field_declaration] = STATE(1123), - [sym_macro_type_specifier] = STATE(269), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1123), - [aux_sym__declaration_specifiers_repeat1] = STATE(271), - [aux_sym_sized_type_specifier_repeat1] = STATE(272), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3219), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2118), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2120), + [1008] = { + [sym_declaration] = STATE(1125), + [sym__declaration_specifiers] = STATE(273), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym__expression] = STATE(1126), + [sym_conditional_expression] = STATE(1126), + [sym_assignment_expression] = STATE(1126), + [sym_pointer_expression] = STATE(1126), + [sym_logical_expression] = STATE(1126), + [sym_bitwise_expression] = STATE(1126), + [sym_equality_expression] = STATE(1126), + [sym_relational_expression] = STATE(1126), + [sym_shift_expression] = STATE(1126), + [sym_math_expression] = STATE(1126), + [sym_cast_expression] = STATE(1126), + [sym_sizeof_expression] = STATE(1126), + [sym_subscript_expression] = STATE(1126), + [sym_call_expression] = STATE(1126), + [sym_field_expression] = STATE(1126), + [sym_compound_literal_expression] = STATE(1126), + [sym_parenthesized_expression] = STATE(1126), + [sym_char_literal] = STATE(1126), + [sym_concatenated_string] = STATE(1126), + [sym_string_literal] = STATE(107), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(3292), [anon_sym_extern] = ACTIONS(29), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -43186,485 +42782,381 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(557), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), - }, - [992] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3221), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3223), - [anon_sym_extern] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_auto] = ACTIONS(3221), - [anon_sym_register] = ACTIONS(3221), - [anon_sym_inline] = ACTIONS(3221), - [anon_sym_const] = ACTIONS(3221), - [anon_sym_restrict] = ACTIONS(3221), - [anon_sym_volatile] = ACTIONS(3221), - [anon_sym__Atomic] = ACTIONS(3221), - [anon_sym_unsigned] = ACTIONS(3221), - [anon_sym_long] = ACTIONS(3221), - [anon_sym_short] = ACTIONS(3221), - [sym_primitive_type] = ACTIONS(3221), - [anon_sym_enum] = ACTIONS(3221), - [anon_sym_struct] = ACTIONS(3221), - [anon_sym_union] = ACTIONS(3221), - [sym_identifier] = ACTIONS(3221), - [sym_comment] = ACTIONS(85), - }, - [993] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3225), - [sym_comment] = ACTIONS(85), - }, - [994] = { - [sym_preproc_if_in_field_declaration_list] = STATE(994), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(994), - [sym__declaration_specifiers] = STATE(268), - [sym_storage_class_specifier] = STATE(271), - [sym_type_qualifier] = STATE(271), - [sym__type_specifier] = STATE(269), - [sym_sized_type_specifier] = STATE(269), - [sym_enum_specifier] = STATE(269), - [sym_struct_specifier] = STATE(269), - [sym_union_specifier] = STATE(269), - [sym__field_declaration_list_item] = STATE(994), - [sym_field_declaration] = STATE(994), - [sym_macro_type_specifier] = STATE(269), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(994), - [aux_sym__declaration_specifiers_repeat1] = STATE(271), - [aux_sym_sized_type_specifier_repeat1] = STATE(272), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2150), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2159), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2153), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2153), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2159), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2159), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_auto] = ACTIONS(2156), - [anon_sym_register] = ACTIONS(2156), - [anon_sym_inline] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_restrict] = ACTIONS(2161), - [anon_sym_volatile] = ACTIONS(2161), - [anon_sym__Atomic] = ACTIONS(2161), - [anon_sym_unsigned] = ACTIONS(2164), - [anon_sym_long] = ACTIONS(2164), - [anon_sym_short] = ACTIONS(2164), - [sym_primitive_type] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2170), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_union] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2179), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3294), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_null] = ACTIONS(3296), + [sym_identifier] = ACTIONS(559), + [sym_comment] = ACTIONS(81), }, - [995] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3229), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3229), - [anon_sym_extern] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_auto] = ACTIONS(3227), - [anon_sym_register] = ACTIONS(3227), - [anon_sym_inline] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_restrict] = ACTIONS(3227), - [anon_sym_volatile] = ACTIONS(3227), - [anon_sym__Atomic] = ACTIONS(3227), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), - [sym_identifier] = ACTIONS(3227), - [sym_comment] = ACTIONS(85), - }, - [996] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3231), - [sym_comment] = ACTIONS(85), - }, - [997] = { - [sym__field_declarator] = STATE(999), - [sym_pointer_field_declarator] = STATE(999), - [sym_function_field_declarator] = STATE(999), - [sym_array_field_declarator] = STATE(999), - [sym_type_qualifier] = STATE(599), - [aux_sym_type_definition_repeat1] = STATE(599), - [anon_sym_LPAREN2] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2128), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(2130), - [sym_comment] = ACTIONS(85), - }, - [998] = { - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_RPAREN] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_LPAREN2] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_COLON] = ACTIONS(3233), - [sym_comment] = ACTIONS(85), - }, - [999] = { - [sym_parameter_list] = STATE(803), - [anon_sym_COMMA] = ACTIONS(3235), - [anon_sym_RPAREN] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_COLON] = ACTIONS(3235), - [sym_comment] = ACTIONS(85), - }, - [1000] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3239), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3239), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3239), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3239), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3239), - [anon_sym_extern] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3237), - [anon_sym_auto] = ACTIONS(3237), - [anon_sym_register] = ACTIONS(3237), - [anon_sym_inline] = ACTIONS(3237), - [anon_sym_const] = ACTIONS(3237), - [anon_sym_restrict] = ACTIONS(3237), - [anon_sym_volatile] = ACTIONS(3237), - [anon_sym__Atomic] = ACTIONS(3237), - [anon_sym_unsigned] = ACTIONS(3237), - [anon_sym_long] = ACTIONS(3237), - [anon_sym_short] = ACTIONS(3237), - [sym_primitive_type] = ACTIONS(3237), - [anon_sym_enum] = ACTIONS(3237), - [anon_sym_struct] = ACTIONS(3237), - [anon_sym_union] = ACTIONS(3237), - [sym_identifier] = ACTIONS(3237), - [sym_comment] = ACTIONS(85), - }, - [1001] = { - [sym_parameter_list] = STATE(803), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_COLON] = ACTIONS(3241), - [sym_comment] = ACTIONS(85), - }, - [1002] = { - [sym__expression] = STATE(83), - [sym_conditional_expression] = STATE(83), - [sym_assignment_expression] = STATE(83), - [sym_pointer_expression] = STATE(83), - [sym_logical_expression] = STATE(83), - [sym_bitwise_expression] = STATE(83), - [sym_equality_expression] = STATE(83), - [sym_relational_expression] = STATE(83), - [sym_shift_expression] = STATE(83), - [sym_math_expression] = STATE(83), - [sym_cast_expression] = STATE(83), - [sym_sizeof_expression] = STATE(83), - [sym_subscript_expression] = STATE(83), - [sym_call_expression] = STATE(83), - [sym_field_expression] = STATE(83), - [sym_compound_literal_expression] = STATE(83), - [sym_parenthesized_expression] = STATE(83), - [sym_char_literal] = STATE(83), - [sym_concatenated_string] = STATE(83), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(85), - }, - [1003] = { - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RPAREN] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_LPAREN2] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_COLON] = ACTIONS(3245), - [sym_comment] = ACTIONS(85), - }, - [1004] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(3243), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1685), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PERCENT_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_CARET_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [1005] = { - [sym_type_qualifier] = STATE(764), - [sym__expression] = STATE(1128), - [sym_conditional_expression] = STATE(1128), - [sym_assignment_expression] = STATE(1128), - [sym_pointer_expression] = STATE(1128), - [sym_logical_expression] = STATE(1128), - [sym_bitwise_expression] = STATE(1128), - [sym_equality_expression] = STATE(1128), - [sym_relational_expression] = STATE(1128), - [sym_shift_expression] = STATE(1128), - [sym_math_expression] = STATE(1128), - [sym_cast_expression] = STATE(1128), - [sym_sizeof_expression] = STATE(1128), - [sym_subscript_expression] = STATE(1128), - [sym_call_expression] = STATE(1128), - [sym_field_expression] = STATE(1128), - [sym_compound_literal_expression] = STATE(1128), - [sym_parenthesized_expression] = STATE(1128), - [sym_char_literal] = STATE(1128), - [sym_concatenated_string] = STATE(1128), - [sym_string_literal] = STATE(369), - [aux_sym_type_definition_repeat1] = STATE(764), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_RBRACK] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_null] = ACTIONS(3251), - [sym_identifier] = ACTIONS(3251), - [sym_comment] = ACTIONS(85), - }, - [1006] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1009] = { + [sym_compound_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_expression_statement] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_goto_statement] = STATE(854), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(2282), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2288), + [sym_comment] = ACTIONS(81), }, - [1007] = { - [sym__expression] = STATE(1130), - [sym_conditional_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1130), - [sym_pointer_expression] = STATE(1130), - [sym_logical_expression] = STATE(1130), - [sym_bitwise_expression] = STATE(1130), - [sym_equality_expression] = STATE(1130), - [sym_relational_expression] = STATE(1130), - [sym_shift_expression] = STATE(1130), - [sym_math_expression] = STATE(1130), - [sym_cast_expression] = STATE(1130), - [sym_sizeof_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_call_expression] = STATE(1130), - [sym_field_expression] = STATE(1130), - [sym_compound_literal_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_char_literal] = STATE(1130), - [sym_concatenated_string] = STATE(1130), - [sym_string_literal] = STATE(123), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_null] = ACTIONS(3257), - [sym_identifier] = ACTIONS(3257), - [sym_comment] = ACTIONS(85), + [1010] = { + [sym_compound_statement] = STATE(1127), + [sym_labeled_statement] = STATE(1127), + [sym_expression_statement] = STATE(1127), + [sym_if_statement] = STATE(1127), + [sym_switch_statement] = STATE(1127), + [sym_while_statement] = STATE(1127), + [sym_do_statement] = STATE(1127), + [sym_for_statement] = STATE(1127), + [sym_return_statement] = STATE(1127), + [sym_break_statement] = STATE(1127), + [sym_continue_statement] = STATE(1127), + [sym_goto_statement] = STATE(1127), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2292), + [sym_comment] = ACTIONS(81), }, - [1008] = { - [aux_sym_field_declaration_repeat1] = STATE(1008), - [anon_sym_COMMA] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_COLON] = ACTIONS(3241), - [sym_comment] = ACTIONS(85), + [1011] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2039), + [sym_preproc_directive] = ACTIONS(2039), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_typedef] = ACTIONS(2039), + [anon_sym_extern] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_LPAREN2] = ACTIONS(2037), + [anon_sym_STAR] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2039), + [anon_sym_auto] = ACTIONS(2039), + [anon_sym_register] = ACTIONS(2039), + [anon_sym_inline] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_restrict] = ACTIONS(2039), + [anon_sym_volatile] = ACTIONS(2039), + [anon_sym__Atomic] = ACTIONS(2039), + [anon_sym_unsigned] = ACTIONS(2039), + [anon_sym_long] = ACTIONS(2039), + [anon_sym_short] = ACTIONS(2039), + [sym_primitive_type] = ACTIONS(2039), + [anon_sym_enum] = ACTIONS(2039), + [anon_sym_struct] = ACTIONS(2039), + [anon_sym_union] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_switch] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_goto] = ACTIONS(2039), + [anon_sym_AMP] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_PLUS] = ACTIONS(2039), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_PLUS_PLUS] = ACTIONS(2037), + [anon_sym_sizeof] = ACTIONS(2039), + [sym_number_literal] = ACTIONS(2037), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [sym_true] = ACTIONS(2039), + [sym_false] = ACTIONS(2039), + [sym_null] = ACTIONS(2039), + [sym_identifier] = ACTIONS(2039), + [sym_comment] = ACTIONS(81), }, - [1009] = { - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_case_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [sym_do_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1012] = { + [sym_compound_statement] = STATE(761), + [sym_labeled_statement] = STATE(761), + [sym_expression_statement] = STATE(761), + [sym_if_statement] = STATE(761), + [sym_switch_statement] = STATE(761), + [sym_case_statement] = STATE(761), + [sym_while_statement] = STATE(761), + [sym_do_statement] = STATE(761), + [sym_for_statement] = STATE(761), + [sym_return_statement] = STATE(761), + [sym_break_statement] = STATE(761), + [sym_continue_statement] = STATE(761), + [sym_goto_statement] = STATE(761), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [aux_sym_switch_body_repeat1] = STATE(761), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3298), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(589), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(81), }, - [1010] = { + [1013] = { + [sym__expression] = STATE(1129), + [sym_comma_expression] = STATE(1130), + [sym_conditional_expression] = STATE(1129), + [sym_assignment_expression] = STATE(1129), + [sym_pointer_expression] = STATE(1129), + [sym_logical_expression] = STATE(1129), + [sym_bitwise_expression] = STATE(1129), + [sym_equality_expression] = STATE(1129), + [sym_relational_expression] = STATE(1129), + [sym_shift_expression] = STATE(1129), + [sym_math_expression] = STATE(1129), + [sym_cast_expression] = STATE(1129), + [sym_sizeof_expression] = STATE(1129), + [sym_subscript_expression] = STATE(1129), + [sym_call_expression] = STATE(1129), + [sym_field_expression] = STATE(1129), + [sym_compound_literal_expression] = STATE(1129), + [sym_parenthesized_expression] = STATE(1129), + [sym_char_literal] = STATE(1129), + [sym_concatenated_string] = STATE(1129), + [sym_string_literal] = STATE(75), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_identifier] = ACTIONS(3302), + [sym_comment] = ACTIONS(81), + }, + [1014] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2069), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2069), + [sym_preproc_directive] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_typedef] = ACTIONS(2069), + [anon_sym_extern] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_LPAREN2] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_auto] = ACTIONS(2069), + [anon_sym_register] = ACTIONS(2069), + [anon_sym_inline] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_restrict] = ACTIONS(2069), + [anon_sym_volatile] = ACTIONS(2069), + [anon_sym__Atomic] = ACTIONS(2069), + [anon_sym_unsigned] = ACTIONS(2069), + [anon_sym_long] = ACTIONS(2069), + [anon_sym_short] = ACTIONS(2069), + [sym_primitive_type] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_struct] = ACTIONS(2069), + [anon_sym_union] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_else] = ACTIONS(2069), + [anon_sym_switch] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_do] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_goto] = ACTIONS(2069), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_sizeof] = ACTIONS(2069), + [sym_number_literal] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [sym_true] = ACTIONS(2069), + [sym_false] = ACTIONS(2069), + [sym_null] = ACTIONS(2069), + [sym_identifier] = ACTIONS(2069), + [sym_comment] = ACTIONS(81), + }, + [1015] = { [sym__expression] = STATE(1132), [sym_conditional_expression] = STATE(1132), [sym_assignment_expression] = STATE(1132), @@ -43684,69 +43176,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1132), [sym_char_literal] = STATE(1132), [sym_concatenated_string] = STATE(1132), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3262), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3264), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3266), - [sym_false] = ACTIONS(3266), - [sym_null] = ACTIONS(3266), - [sym_identifier] = ACTIONS(3266), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_null] = ACTIONS(3308), + [sym_identifier] = ACTIONS(3308), + [sym_comment] = ACTIONS(81), }, - [1011] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1016] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1012] = { + [1017] = { [sym__expression] = STATE(1134), [sym_conditional_expression] = STATE(1134), [sym_assignment_expression] = STATE(1134), @@ -43766,223 +43258,255 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1134), [sym_char_literal] = STATE(1134), [sym_concatenated_string] = STATE(1134), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(3268), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_identifier] = ACTIONS(3272), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_null] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3314), + [sym_comment] = ACTIONS(81), }, - [1013] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(2918), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1018] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2121), + [sym_preproc_directive] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_typedef] = ACTIONS(2121), + [anon_sym_extern] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_LPAREN2] = ACTIONS(2119), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_auto] = ACTIONS(2121), + [anon_sym_register] = ACTIONS(2121), + [anon_sym_inline] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_restrict] = ACTIONS(2121), + [anon_sym_volatile] = ACTIONS(2121), + [anon_sym__Atomic] = ACTIONS(2121), + [anon_sym_unsigned] = ACTIONS(2121), + [anon_sym_long] = ACTIONS(2121), + [anon_sym_short] = ACTIONS(2121), + [sym_primitive_type] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2121), + [anon_sym_union] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_switch] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_goto] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_TILDE] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(2119), + [anon_sym_sizeof] = ACTIONS(2121), + [sym_number_literal] = ACTIONS(2119), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(2119), + [sym_true] = ACTIONS(2121), + [sym_false] = ACTIONS(2121), + [sym_null] = ACTIONS(2121), + [sym_identifier] = ACTIONS(2121), + [sym_comment] = ACTIONS(81), }, - [1014] = { - [anon_sym_else] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(1452), - [sym_comment] = ACTIONS(85), + [1019] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2423), + [sym_preproc_directive] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2421), + [anon_sym_typedef] = ACTIONS(2423), + [anon_sym_extern] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LPAREN2] = ACTIONS(2421), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2423), + [anon_sym_auto] = ACTIONS(2423), + [anon_sym_register] = ACTIONS(2423), + [anon_sym_inline] = ACTIONS(2423), + [anon_sym_const] = ACTIONS(2423), + [anon_sym_restrict] = ACTIONS(2423), + [anon_sym_volatile] = ACTIONS(2423), + [anon_sym__Atomic] = ACTIONS(2423), + [anon_sym_unsigned] = ACTIONS(2423), + [anon_sym_long] = ACTIONS(2423), + [anon_sym_short] = ACTIONS(2423), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2423), + [anon_sym_struct] = ACTIONS(2423), + [anon_sym_union] = ACTIONS(2423), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_switch] = ACTIONS(2423), + [anon_sym_while] = ACTIONS(2423), + [anon_sym_do] = ACTIONS(2423), + [anon_sym_for] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2423), + [anon_sym_break] = ACTIONS(2423), + [anon_sym_continue] = ACTIONS(2423), + [anon_sym_goto] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(2421), + [anon_sym_PLUS_PLUS] = ACTIONS(2421), + [anon_sym_sizeof] = ACTIONS(2423), + [sym_number_literal] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [sym_true] = ACTIONS(2423), + [sym_false] = ACTIONS(2423), + [sym_null] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2423), + [sym_comment] = ACTIONS(81), }, - [1015] = { - [sym_declaration] = STATE(551), - [sym_type_definition] = STATE(551), - [sym__declaration_specifiers] = STATE(306), - [sym_compound_statement] = STATE(551), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [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(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(2865), - [sym_comment] = ACTIONS(85), + [1020] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2427), + [sym_preproc_directive] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2425), + [anon_sym_typedef] = ACTIONS(2427), + [anon_sym_extern] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2425), + [anon_sym_LPAREN2] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2427), + [anon_sym_auto] = ACTIONS(2427), + [anon_sym_register] = ACTIONS(2427), + [anon_sym_inline] = ACTIONS(2427), + [anon_sym_const] = ACTIONS(2427), + [anon_sym_restrict] = ACTIONS(2427), + [anon_sym_volatile] = ACTIONS(2427), + [anon_sym__Atomic] = ACTIONS(2427), + [anon_sym_unsigned] = ACTIONS(2427), + [anon_sym_long] = ACTIONS(2427), + [anon_sym_short] = ACTIONS(2427), + [sym_primitive_type] = ACTIONS(2427), + [anon_sym_enum] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2427), + [anon_sym_union] = ACTIONS(2427), + [anon_sym_if] = ACTIONS(2427), + [anon_sym_switch] = ACTIONS(2427), + [anon_sym_while] = ACTIONS(2427), + [anon_sym_do] = ACTIONS(2427), + [anon_sym_for] = ACTIONS(2427), + [anon_sym_return] = ACTIONS(2427), + [anon_sym_break] = ACTIONS(2427), + [anon_sym_continue] = ACTIONS(2427), + [anon_sym_goto] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(2425), + [anon_sym_TILDE] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_DASH_DASH] = ACTIONS(2425), + [anon_sym_PLUS_PLUS] = ACTIONS(2425), + [anon_sym_sizeof] = ACTIONS(2427), + [sym_number_literal] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2425), + [sym_true] = ACTIONS(2427), + [sym_false] = ACTIONS(2427), + [sym_null] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2427), + [sym_comment] = ACTIONS(81), }, - [1016] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(2211), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), + [1021] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(3316), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_null] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1338), + [sym_comment] = ACTIONS(81), }, - [1017] = { + [1022] = { [sym__expression] = STATE(1137), [sym_conditional_expression] = STATE(1137), [sym_assignment_expression] = STATE(1137), @@ -44002,1304 +43526,677 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1137), [sym_char_literal] = STATE(1137), [sym_concatenated_string] = STATE(1137), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3280), - [sym_false] = ACTIONS(3280), - [sym_null] = ACTIONS(3280), - [sym_identifier] = ACTIONS(3280), - [sym_comment] = ACTIONS(85), - }, - [1018] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [1019] = { - [sym_compound_statement] = STATE(1023), - [sym_labeled_statement] = STATE(1023), - [sym_expression_statement] = STATE(1023), - [sym_if_statement] = STATE(1023), - [sym_switch_statement] = STATE(1023), - [sym_case_statement] = STATE(1023), - [sym_while_statement] = STATE(1023), - [sym_do_statement] = STATE(1023), - [sym_for_statement] = STATE(1023), - [sym_return_statement] = STATE(1023), - [sym_break_statement] = STATE(1023), - [sym_continue_statement] = STATE(1023), - [sym_goto_statement] = STATE(1023), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(201), - [anon_sym_switch] = ACTIONS(203), - [anon_sym_case] = ACTIONS(205), - [anon_sym_default] = ACTIONS(207), - [anon_sym_while] = ACTIONS(209), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(213), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(215), - [sym_comment] = ACTIONS(85), - }, - [1020] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1140), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [1021] = { - [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(80), - [anon_sym_RPAREN] = ACTIONS(3284), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_identifier] = ACTIONS(3288), - [sym_comment] = ACTIONS(85), - }, - [1022] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3320), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_null] = ACTIONS(3322), + [sym_identifier] = ACTIONS(3322), + [sym_comment] = ACTIONS(81), }, [1023] = { - [ts_builtin_sym_end] = ACTIONS(3292), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3294), - [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(3292), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN2] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [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_else] = 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(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_sizeof] = ACTIONS(3294), - [sym_number_literal] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3294), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1024] = { - [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(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(43), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_while] = ACTIONS(51), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2704), + [sym_preproc_directive] = ACTIONS(2704), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_typedef] = ACTIONS(2704), + [anon_sym_extern] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_LPAREN2] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_auto] = ACTIONS(2704), + [anon_sym_register] = ACTIONS(2704), + [anon_sym_inline] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_restrict] = ACTIONS(2704), + [anon_sym_volatile] = ACTIONS(2704), + [anon_sym__Atomic] = ACTIONS(2704), + [anon_sym_unsigned] = ACTIONS(2704), + [anon_sym_long] = ACTIONS(2704), + [anon_sym_short] = ACTIONS(2704), + [sym_primitive_type] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_switch] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_do] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_goto] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_sizeof] = ACTIONS(2704), + [sym_number_literal] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_null] = ACTIONS(2704), + [sym_identifier] = ACTIONS(2704), + [sym_comment] = ACTIONS(81), }, [1025] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3296), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2736), + [sym_preproc_directive] = ACTIONS(2736), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_typedef] = ACTIONS(2736), + [anon_sym_extern] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_auto] = ACTIONS(2736), + [anon_sym_register] = ACTIONS(2736), + [anon_sym_inline] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_restrict] = ACTIONS(2736), + [anon_sym_volatile] = ACTIONS(2736), + [anon_sym__Atomic] = ACTIONS(2736), + [anon_sym_unsigned] = ACTIONS(2736), + [anon_sym_long] = ACTIONS(2736), + [anon_sym_short] = ACTIONS(2736), + [sym_primitive_type] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_else] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_do] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_goto] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2734), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_sizeof] = ACTIONS(2736), + [sym_number_literal] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE] = ACTIONS(2734), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_null] = ACTIONS(2736), + [sym_identifier] = ACTIONS(2736), + [sym_comment] = ACTIONS(81), }, [1026] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1145), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(447), + [anon_sym_RPAREN] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1027] = { - [sym__expression] = STATE(1146), - [sym_conditional_expression] = STATE(1146), - [sym_assignment_expression] = STATE(1146), - [sym_pointer_expression] = STATE(1146), - [sym_logical_expression] = STATE(1146), - [sym_bitwise_expression] = STATE(1146), - [sym_equality_expression] = STATE(1146), - [sym_relational_expression] = STATE(1146), - [sym_shift_expression] = STATE(1146), - [sym_math_expression] = STATE(1146), - [sym_cast_expression] = STATE(1146), - [sym_sizeof_expression] = STATE(1146), - [sym_subscript_expression] = STATE(1146), - [sym_call_expression] = STATE(1146), - [sym_field_expression] = STATE(1146), - [sym_compound_literal_expression] = STATE(1146), - [sym_parenthesized_expression] = STATE(1146), - [sym_char_literal] = STATE(1146), - [sym_concatenated_string] = STATE(1146), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3296), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3298), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [sym_null] = ACTIONS(3300), - [sym_identifier] = ACTIONS(3300), - [sym_comment] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(3326), + [sym_comment] = ACTIONS(81), }, [1028] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [sym_compound_statement] = STATE(1140), + [sym_labeled_statement] = STATE(1140), + [sym_expression_statement] = STATE(1140), + [sym_if_statement] = STATE(1140), + [sym_switch_statement] = STATE(1140), + [sym_while_statement] = STATE(1140), + [sym_do_statement] = STATE(1140), + [sym_for_statement] = STATE(1140), + [sym_return_statement] = STATE(1140), + [sym_break_statement] = STATE(1140), + [sym_continue_statement] = STATE(1140), + [sym_goto_statement] = STATE(1140), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1710), + [sym_comment] = ACTIONS(81), }, [1029] = { - [anon_sym_COMMA] = ACTIONS(3302), - [anon_sym_RPAREN] = ACTIONS(3302), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_LPAREN2] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_EQ] = ACTIONS(3302), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1142), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3328), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1030] = { - [sym__expression] = STATE(518), - [sym_conditional_expression] = STATE(518), - [sym_assignment_expression] = STATE(518), - [sym_pointer_expression] = STATE(518), - [sym_logical_expression] = STATE(518), - [sym_bitwise_expression] = STATE(518), - [sym_equality_expression] = STATE(518), - [sym_relational_expression] = STATE(518), - [sym_shift_expression] = STATE(518), - [sym_math_expression] = STATE(518), - [sym_cast_expression] = STATE(518), - [sym_sizeof_expression] = STATE(518), - [sym_subscript_expression] = STATE(518), - [sym_call_expression] = STATE(518), - [sym_field_expression] = STATE(518), - [sym_compound_literal_expression] = STATE(518), - [sym_parenthesized_expression] = STATE(518), - [sym_initializer_list] = STATE(519), - [sym_char_literal] = STATE(518), - [sym_concatenated_string] = STATE(518), - [sym_string_literal] = STATE(369), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_RBRACK] = ACTIONS(2245), - [anon_sym_EQ] = ACTIONS(2249), - [anon_sym_QMARK] = ACTIONS(2245), - [anon_sym_STAR_EQ] = ACTIONS(2245), - [anon_sym_SLASH_EQ] = ACTIONS(2245), - [anon_sym_PERCENT_EQ] = ACTIONS(2245), - [anon_sym_PLUS_EQ] = ACTIONS(2245), - [anon_sym_DASH_EQ] = ACTIONS(2245), - [anon_sym_LT_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_GT_EQ] = ACTIONS(2245), - [anon_sym_AMP_EQ] = ACTIONS(2245), - [anon_sym_CARET_EQ] = ACTIONS(2245), - [anon_sym_PIPE_EQ] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(3304), - [anon_sym_PIPE_PIPE] = ACTIONS(2245), - [anon_sym_AMP_AMP] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(3306), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_GT] = ACTIONS(2249), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_GT_GT] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DASH_GT] = ACTIONS(2245), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1387), - [sym_comment] = ACTIONS(85), + [sym__expression] = STATE(1143), + [sym_conditional_expression] = STATE(1143), + [sym_assignment_expression] = STATE(1143), + [sym_pointer_expression] = STATE(1143), + [sym_logical_expression] = STATE(1143), + [sym_bitwise_expression] = STATE(1143), + [sym_equality_expression] = STATE(1143), + [sym_relational_expression] = STATE(1143), + [sym_shift_expression] = STATE(1143), + [sym_math_expression] = STATE(1143), + [sym_cast_expression] = STATE(1143), + [sym_sizeof_expression] = STATE(1143), + [sym_subscript_expression] = STATE(1143), + [sym_call_expression] = STATE(1143), + [sym_field_expression] = STATE(1143), + [sym_compound_literal_expression] = STATE(1143), + [sym_parenthesized_expression] = STATE(1143), + [sym_char_literal] = STATE(1143), + [sym_concatenated_string] = STATE(1143), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3328), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_null] = ACTIONS(3332), + [sym_identifier] = ACTIONS(3332), + [sym_comment] = ACTIONS(81), }, [1031] = { - [sym__expression] = STATE(1147), - [sym_conditional_expression] = STATE(1147), - [sym_assignment_expression] = STATE(1147), - [sym_pointer_expression] = STATE(1147), - [sym_logical_expression] = STATE(1147), - [sym_bitwise_expression] = STATE(1147), - [sym_equality_expression] = STATE(1147), - [sym_relational_expression] = STATE(1147), - [sym_shift_expression] = STATE(1147), - [sym_math_expression] = STATE(1147), - [sym_cast_expression] = STATE(1147), - [sym_sizeof_expression] = STATE(1147), - [sym_subscript_expression] = STATE(1147), - [sym_call_expression] = STATE(1147), - [sym_field_expression] = STATE(1147), - [sym_compound_literal_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(1147), - [sym_char_literal] = STATE(1147), - [sym_concatenated_string] = STATE(1147), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(3308), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3310), - [sym_false] = ACTIONS(3310), - [sym_null] = ACTIONS(3310), - [sym_identifier] = ACTIONS(3310), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1032] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2356), - [sym_preproc_directive] = ACTIONS(2356), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_typedef] = ACTIONS(2356), - [anon_sym_extern] = ACTIONS(2356), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_LPAREN2] = ACTIONS(2354), - [anon_sym_STAR] = ACTIONS(2354), - [anon_sym_static] = ACTIONS(2356), - [anon_sym_auto] = ACTIONS(2356), - [anon_sym_register] = ACTIONS(2356), - [anon_sym_inline] = ACTIONS(2356), - [anon_sym_const] = ACTIONS(2356), - [anon_sym_restrict] = ACTIONS(2356), - [anon_sym_volatile] = ACTIONS(2356), - [anon_sym__Atomic] = ACTIONS(2356), - [anon_sym_unsigned] = ACTIONS(2356), - [anon_sym_long] = ACTIONS(2356), - [anon_sym_short] = ACTIONS(2356), - [sym_primitive_type] = ACTIONS(2356), - [anon_sym_enum] = ACTIONS(2356), - [anon_sym_struct] = ACTIONS(2356), - [anon_sym_union] = ACTIONS(2356), - [anon_sym_if] = ACTIONS(2356), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2356), - [anon_sym_default] = ACTIONS(2356), - [anon_sym_while] = ACTIONS(2356), - [anon_sym_do] = ACTIONS(2356), - [anon_sym_for] = ACTIONS(2356), - [anon_sym_return] = ACTIONS(2356), - [anon_sym_break] = ACTIONS(2356), - [anon_sym_continue] = ACTIONS(2356), - [anon_sym_goto] = ACTIONS(2356), - [anon_sym_AMP] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2354), - [anon_sym_TILDE] = ACTIONS(2354), - [anon_sym_PLUS] = ACTIONS(2356), - [anon_sym_DASH] = ACTIONS(2356), - [anon_sym_DASH_DASH] = ACTIONS(2354), - [anon_sym_PLUS_PLUS] = ACTIONS(2354), - [anon_sym_sizeof] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2354), - [sym_true] = ACTIONS(2356), - [sym_false] = ACTIONS(2356), - [sym_null] = ACTIONS(2356), - [sym_identifier] = ACTIONS(2356), - [sym_comment] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [sym_comment] = ACTIONS(81), }, [1033] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2531), - [sym_preproc_directive] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2529), - [anon_sym_typedef] = ACTIONS(2531), - [anon_sym_extern] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2531), - [anon_sym_auto] = ACTIONS(2531), - [anon_sym_register] = ACTIONS(2531), - [anon_sym_inline] = ACTIONS(2531), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_restrict] = ACTIONS(2531), - [anon_sym_volatile] = ACTIONS(2531), - [anon_sym__Atomic] = ACTIONS(2531), - [anon_sym_unsigned] = ACTIONS(2531), - [anon_sym_long] = ACTIONS(2531), - [anon_sym_short] = ACTIONS(2531), - [sym_primitive_type] = ACTIONS(2531), - [anon_sym_enum] = ACTIONS(2531), - [anon_sym_struct] = ACTIONS(2531), - [anon_sym_union] = ACTIONS(2531), - [anon_sym_if] = ACTIONS(2531), - [anon_sym_switch] = ACTIONS(2531), - [anon_sym_case] = ACTIONS(2531), - [anon_sym_default] = ACTIONS(2531), - [anon_sym_while] = ACTIONS(2531), - [anon_sym_do] = ACTIONS(2531), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2531), - [anon_sym_break] = ACTIONS(2531), - [anon_sym_continue] = ACTIONS(2531), - [anon_sym_goto] = ACTIONS(2531), - [anon_sym_AMP] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2529), - [anon_sym_TILDE] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2529), - [anon_sym_PLUS_PLUS] = ACTIONS(2529), - [anon_sym_sizeof] = ACTIONS(2531), - [sym_number_literal] = ACTIONS(2529), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2529), - [sym_true] = ACTIONS(2531), - [sym_false] = ACTIONS(2531), - [sym_null] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2455), + [sym_preproc_directive] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_typedef] = ACTIONS(2455), + [anon_sym_extern] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_LPAREN2] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_auto] = ACTIONS(2455), + [anon_sym_register] = ACTIONS(2455), + [anon_sym_inline] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2455), + [anon_sym_restrict] = ACTIONS(2455), + [anon_sym_volatile] = ACTIONS(2455), + [anon_sym__Atomic] = ACTIONS(2455), + [anon_sym_unsigned] = ACTIONS(2455), + [anon_sym_long] = ACTIONS(2455), + [anon_sym_short] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2455), + [anon_sym_enum] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_switch] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_do] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2455), + [anon_sym_continue] = ACTIONS(2455), + [anon_sym_goto] = ACTIONS(2455), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_sizeof] = ACTIONS(2455), + [sym_number_literal] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [sym_true] = ACTIONS(2455), + [sym_false] = ACTIONS(2455), + [sym_null] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2455), + [sym_comment] = ACTIONS(81), }, [1034] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2535), - [sym_preproc_directive] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_typedef] = ACTIONS(2535), - [anon_sym_extern] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_LPAREN2] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(2533), - [anon_sym_static] = ACTIONS(2535), - [anon_sym_auto] = ACTIONS(2535), - [anon_sym_register] = ACTIONS(2535), - [anon_sym_inline] = ACTIONS(2535), - [anon_sym_const] = ACTIONS(2535), - [anon_sym_restrict] = ACTIONS(2535), - [anon_sym_volatile] = ACTIONS(2535), - [anon_sym__Atomic] = ACTIONS(2535), - [anon_sym_unsigned] = ACTIONS(2535), - [anon_sym_long] = ACTIONS(2535), - [anon_sym_short] = ACTIONS(2535), - [sym_primitive_type] = ACTIONS(2535), - [anon_sym_enum] = ACTIONS(2535), - [anon_sym_struct] = ACTIONS(2535), - [anon_sym_union] = ACTIONS(2535), - [anon_sym_if] = ACTIONS(2535), - [anon_sym_switch] = ACTIONS(2535), - [anon_sym_case] = ACTIONS(2535), - [anon_sym_default] = ACTIONS(2535), - [anon_sym_while] = ACTIONS(2535), - [anon_sym_do] = ACTIONS(2535), - [anon_sym_for] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2535), - [anon_sym_continue] = ACTIONS(2535), - [anon_sym_goto] = ACTIONS(2535), - [anon_sym_AMP] = ACTIONS(2533), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_DASH_DASH] = ACTIONS(2533), - [anon_sym_PLUS_PLUS] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2535), - [sym_number_literal] = ACTIONS(2533), - [anon_sym_SQUOTE] = ACTIONS(2533), - [anon_sym_DQUOTE] = ACTIONS(2533), - [sym_true] = ACTIONS(2535), - [sym_false] = ACTIONS(2535), - [sym_null] = ACTIONS(2535), - [sym_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3338), + [sym_comment] = ACTIONS(81), }, [1035] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1612), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1612), - [sym_preproc_directive] = ACTIONS(1612), - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_typedef] = ACTIONS(1612), - [anon_sym_extern] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_LPAREN2] = ACTIONS(1610), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_auto] = ACTIONS(1612), - [anon_sym_register] = ACTIONS(1612), - [anon_sym_inline] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_restrict] = ACTIONS(1612), - [anon_sym_volatile] = ACTIONS(1612), - [anon_sym__Atomic] = ACTIONS(1612), - [anon_sym_unsigned] = ACTIONS(1612), - [anon_sym_long] = ACTIONS(1612), - [anon_sym_short] = ACTIONS(1612), - [sym_primitive_type] = ACTIONS(1612), - [anon_sym_enum] = ACTIONS(1612), - [anon_sym_struct] = ACTIONS(1612), - [anon_sym_union] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_switch] = ACTIONS(1612), - [anon_sym_case] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_do] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_goto] = ACTIONS(1612), - [anon_sym_AMP] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_TILDE] = ACTIONS(1610), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_PLUS_PLUS] = ACTIONS(1610), - [anon_sym_sizeof] = ACTIONS(1612), - [sym_number_literal] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1610), - [sym_true] = ACTIONS(1612), - [sym_false] = ACTIONS(1612), - [sym_null] = ACTIONS(1612), - [sym_identifier] = ACTIONS(1612), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2523), + [sym_preproc_directive] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_typedef] = ACTIONS(2523), + [anon_sym_extern] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2523), + [anon_sym_auto] = ACTIONS(2523), + [anon_sym_register] = ACTIONS(2523), + [anon_sym_inline] = ACTIONS(2523), + [anon_sym_const] = ACTIONS(2523), + [anon_sym_restrict] = ACTIONS(2523), + [anon_sym_volatile] = ACTIONS(2523), + [anon_sym__Atomic] = ACTIONS(2523), + [anon_sym_unsigned] = ACTIONS(2523), + [anon_sym_long] = ACTIONS(2523), + [anon_sym_short] = ACTIONS(2523), + [sym_primitive_type] = ACTIONS(2523), + [anon_sym_enum] = ACTIONS(2523), + [anon_sym_struct] = ACTIONS(2523), + [anon_sym_union] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_switch] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2523), + [anon_sym_do] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_goto] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_DASH_DASH] = ACTIONS(2525), + [anon_sym_PLUS_PLUS] = ACTIONS(2525), + [anon_sym_sizeof] = ACTIONS(2523), + [sym_number_literal] = ACTIONS(2525), + [anon_sym_SQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2523), + [sym_false] = ACTIONS(2523), + [sym_null] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2523), + [sym_comment] = ACTIONS(81), }, [1036] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1756), - [sym_preproc_directive] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_typedef] = ACTIONS(1756), - [anon_sym_extern] = ACTIONS(1756), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_LPAREN2] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1756), - [anon_sym_auto] = ACTIONS(1756), - [anon_sym_register] = ACTIONS(1756), - [anon_sym_inline] = ACTIONS(1756), - [anon_sym_const] = ACTIONS(1756), - [anon_sym_restrict] = ACTIONS(1756), - [anon_sym_volatile] = ACTIONS(1756), - [anon_sym__Atomic] = ACTIONS(1756), - [anon_sym_unsigned] = ACTIONS(1756), - [anon_sym_long] = ACTIONS(1756), - [anon_sym_short] = ACTIONS(1756), - [sym_primitive_type] = ACTIONS(1756), - [anon_sym_enum] = ACTIONS(1756), - [anon_sym_struct] = ACTIONS(1756), - [anon_sym_union] = ACTIONS(1756), - [anon_sym_if] = ACTIONS(1756), - [anon_sym_switch] = ACTIONS(1756), - [anon_sym_case] = ACTIONS(1756), - [anon_sym_default] = ACTIONS(1756), - [anon_sym_while] = ACTIONS(1756), - [anon_sym_do] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1756), - [anon_sym_return] = ACTIONS(1756), - [anon_sym_break] = ACTIONS(1756), - [anon_sym_continue] = ACTIONS(1756), - [anon_sym_goto] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_sizeof] = ACTIONS(1756), - [sym_number_literal] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1754), - [sym_true] = ACTIONS(1756), - [sym_false] = ACTIONS(1756), - [sym_null] = ACTIONS(1756), - [sym_identifier] = ACTIONS(1756), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3340), + [sym_comment] = ACTIONS(81), }, [1037] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1760), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1760), - [sym_preproc_directive] = ACTIONS(1760), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_typedef] = ACTIONS(1760), - [anon_sym_extern] = ACTIONS(1760), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_LPAREN2] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_static] = ACTIONS(1760), - [anon_sym_auto] = ACTIONS(1760), - [anon_sym_register] = ACTIONS(1760), - [anon_sym_inline] = ACTIONS(1760), - [anon_sym_const] = ACTIONS(1760), - [anon_sym_restrict] = ACTIONS(1760), - [anon_sym_volatile] = ACTIONS(1760), - [anon_sym__Atomic] = ACTIONS(1760), - [anon_sym_unsigned] = ACTIONS(1760), - [anon_sym_long] = ACTIONS(1760), - [anon_sym_short] = ACTIONS(1760), - [sym_primitive_type] = ACTIONS(1760), - [anon_sym_enum] = ACTIONS(1760), - [anon_sym_struct] = ACTIONS(1760), - [anon_sym_union] = ACTIONS(1760), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_switch] = ACTIONS(1760), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1760), - [anon_sym_while] = ACTIONS(1760), - [anon_sym_do] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1760), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_goto] = ACTIONS(1760), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_TILDE] = ACTIONS(1758), - [anon_sym_PLUS] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_DASH_DASH] = ACTIONS(1758), - [anon_sym_PLUS_PLUS] = ACTIONS(1758), - [anon_sym_sizeof] = ACTIONS(1760), - [sym_number_literal] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1758), - [anon_sym_DQUOTE] = ACTIONS(1758), - [sym_true] = ACTIONS(1760), - [sym_false] = ACTIONS(1760), - [sym_null] = ACTIONS(1760), - [sym_identifier] = ACTIONS(1760), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1834), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1834), + [sym_preproc_directive] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_typedef] = ACTIONS(1834), + [anon_sym_extern] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LPAREN2] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_static] = ACTIONS(1834), + [anon_sym_auto] = ACTIONS(1834), + [anon_sym_register] = ACTIONS(1834), + [anon_sym_inline] = ACTIONS(1834), + [anon_sym_const] = ACTIONS(1834), + [anon_sym_restrict] = ACTIONS(1834), + [anon_sym_volatile] = ACTIONS(1834), + [anon_sym__Atomic] = ACTIONS(1834), + [anon_sym_unsigned] = ACTIONS(1834), + [anon_sym_long] = ACTIONS(1834), + [anon_sym_short] = ACTIONS(1834), + [sym_primitive_type] = ACTIONS(1834), + [anon_sym_enum] = ACTIONS(1834), + [anon_sym_struct] = ACTIONS(1834), + [anon_sym_union] = ACTIONS(1834), + [anon_sym_if] = ACTIONS(1834), + [anon_sym_switch] = ACTIONS(1834), + [anon_sym_while] = ACTIONS(1834), + [anon_sym_do] = ACTIONS(1834), + [anon_sym_for] = ACTIONS(1834), + [anon_sym_return] = ACTIONS(1834), + [anon_sym_break] = ACTIONS(1834), + [anon_sym_continue] = ACTIONS(1834), + [anon_sym_goto] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1836), + [anon_sym_TILDE] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_DASH_DASH] = ACTIONS(1836), + [anon_sym_PLUS_PLUS] = ACTIONS(1836), + [anon_sym_sizeof] = ACTIONS(1834), + [sym_number_literal] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_DQUOTE] = ACTIONS(1836), + [sym_true] = ACTIONS(1834), + [sym_false] = ACTIONS(1834), + [sym_null] = ACTIONS(1834), + [sym_identifier] = ACTIONS(1834), + [sym_comment] = ACTIONS(81), }, [1038] = { - [anon_sym_LF] = ACTIONS(3312), - [sym_comment] = ACTIONS(95), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3342), + [sym_comment] = ACTIONS(81), }, [1039] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1868), - [sym_preproc_directive] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_typedef] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_auto] = ACTIONS(1868), - [anon_sym_register] = ACTIONS(1868), - [anon_sym_inline] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [anon_sym_restrict] = ACTIONS(1868), - [anon_sym_volatile] = ACTIONS(1868), - [anon_sym__Atomic] = ACTIONS(1868), - [anon_sym_unsigned] = ACTIONS(1868), - [anon_sym_long] = ACTIONS(1868), - [anon_sym_short] = ACTIONS(1868), - [sym_primitive_type] = ACTIONS(1868), - [anon_sym_enum] = ACTIONS(1868), - [anon_sym_struct] = ACTIONS(1868), - [anon_sym_union] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_switch] = ACTIONS(1868), - [anon_sym_case] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_do] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_goto] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1866), - [anon_sym_PLUS_PLUS] = ACTIONS(1866), - [anon_sym_sizeof] = ACTIONS(1868), - [sym_number_literal] = ACTIONS(1866), - [anon_sym_SQUOTE] = ACTIONS(1866), - [anon_sym_DQUOTE] = ACTIONS(1866), - [sym_true] = ACTIONS(1868), - [sym_false] = ACTIONS(1868), - [sym_null] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1868), - [sym_comment] = ACTIONS(85), - }, - [1040] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3314), - [sym_comment] = ACTIONS(85), - }, - [1041] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1947), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1947), - [sym_preproc_directive] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1945), - [anon_sym_typedef] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_LPAREN2] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_static] = ACTIONS(1947), - [anon_sym_auto] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1947), - [anon_sym_inline] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [anon_sym_restrict] = ACTIONS(1947), - [anon_sym_volatile] = ACTIONS(1947), - [anon_sym__Atomic] = ACTIONS(1947), - [anon_sym_unsigned] = ACTIONS(1947), - [anon_sym_long] = ACTIONS(1947), - [anon_sym_short] = ACTIONS(1947), - [sym_primitive_type] = ACTIONS(1947), - [anon_sym_enum] = ACTIONS(1947), - [anon_sym_struct] = ACTIONS(1947), - [anon_sym_union] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_switch] = ACTIONS(1947), - [anon_sym_case] = ACTIONS(1947), - [anon_sym_default] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_do] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_goto] = ACTIONS(1947), - [anon_sym_AMP] = ACTIONS(1945), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_DASH_DASH] = ACTIONS(1945), - [anon_sym_PLUS_PLUS] = ACTIONS(1945), - [anon_sym_sizeof] = ACTIONS(1947), - [sym_number_literal] = ACTIONS(1945), - [anon_sym_SQUOTE] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym_true] = ACTIONS(1947), - [sym_false] = ACTIONS(1947), - [sym_null] = ACTIONS(1947), - [sym_identifier] = ACTIONS(1947), - [sym_comment] = ACTIONS(85), - }, - [1042] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3316), - [sym_comment] = ACTIONS(85), - }, - [1043] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1957), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1957), - [sym_preproc_directive] = ACTIONS(1957), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_typedef] = ACTIONS(1957), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_STAR] = ACTIONS(1955), - [anon_sym_static] = ACTIONS(1957), - [anon_sym_auto] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), - [anon_sym_inline] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [anon_sym_restrict] = ACTIONS(1957), - [anon_sym_volatile] = ACTIONS(1957), - [anon_sym__Atomic] = ACTIONS(1957), - [anon_sym_unsigned] = ACTIONS(1957), - [anon_sym_long] = ACTIONS(1957), - [anon_sym_short] = ACTIONS(1957), - [sym_primitive_type] = ACTIONS(1957), - [anon_sym_enum] = ACTIONS(1957), - [anon_sym_struct] = ACTIONS(1957), - [anon_sym_union] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_switch] = ACTIONS(1957), - [anon_sym_case] = ACTIONS(1957), - [anon_sym_default] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_goto] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_BANG] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1957), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_PLUS_PLUS] = ACTIONS(1955), - [anon_sym_sizeof] = ACTIONS(1957), - [sym_number_literal] = ACTIONS(1955), - [anon_sym_SQUOTE] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym_true] = ACTIONS(1957), - [sym_false] = ACTIONS(1957), - [sym_null] = ACTIONS(1957), - [sym_identifier] = ACTIONS(1957), - [sym_comment] = ACTIONS(85), - }, - [1044] = { - [sym_parameter_list] = STATE(456), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_LPAREN2] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(1125), - [sym_comment] = ACTIONS(85), - }, - [1045] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1973), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1973), - [sym_preproc_directive] = ACTIONS(1973), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_typedef] = ACTIONS(1973), - [anon_sym_extern] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_LPAREN2] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1973), - [anon_sym_auto] = ACTIONS(1973), - [anon_sym_register] = ACTIONS(1973), - [anon_sym_inline] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1973), - [anon_sym_restrict] = ACTIONS(1973), - [anon_sym_volatile] = ACTIONS(1973), - [anon_sym__Atomic] = ACTIONS(1973), - [anon_sym_unsigned] = ACTIONS(1973), - [anon_sym_long] = ACTIONS(1973), - [anon_sym_short] = ACTIONS(1973), - [sym_primitive_type] = ACTIONS(1973), - [anon_sym_enum] = ACTIONS(1973), - [anon_sym_struct] = ACTIONS(1973), - [anon_sym_union] = ACTIONS(1973), - [anon_sym_if] = ACTIONS(1973), - [anon_sym_switch] = ACTIONS(1973), - [anon_sym_case] = ACTIONS(1973), - [anon_sym_default] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1973), - [anon_sym_do] = ACTIONS(1973), - [anon_sym_for] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1973), - [anon_sym_break] = ACTIONS(1973), - [anon_sym_continue] = ACTIONS(1973), - [anon_sym_goto] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_TILDE] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_sizeof] = ACTIONS(1973), - [sym_number_literal] = ACTIONS(1971), - [anon_sym_SQUOTE] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym_true] = ACTIONS(1973), - [sym_false] = ACTIONS(1973), - [sym_null] = ACTIONS(1973), - [sym_identifier] = ACTIONS(1973), - [sym_comment] = ACTIONS(85), - }, - [1046] = { - [sym_preproc_include] = STATE(720), - [sym_preproc_def] = STATE(720), - [sym_preproc_function_def] = STATE(720), - [sym_preproc_call] = STATE(720), - [sym_preproc_if] = STATE(720), - [sym_preproc_ifdef] = STATE(720), - [sym_function_definition] = STATE(720), - [sym_declaration] = STATE(720), - [sym_type_definition] = STATE(720), - [sym__declaration_specifiers] = STATE(37), - [sym_linkage_specification] = STATE(720), - [sym_compound_statement] = STATE(720), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(720), - [sym_expression_statement] = STATE(720), - [sym_if_statement] = STATE(720), - [sym_switch_statement] = STATE(720), - [sym_case_statement] = STATE(720), - [sym_while_statement] = STATE(720), - [sym_do_statement] = STATE(720), - [sym_for_statement] = STATE(720), - [sym_return_statement] = STATE(720), - [sym_break_statement] = STATE(720), - [sym_continue_statement] = STATE(720), - [sym_goto_statement] = STATE(720), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(720), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_translation_unit_repeat1] = STATE(720), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(11), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(13), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(13), - [sym_preproc_directive] = ACTIONS(15), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(3320), + [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(679), + [sym_preproc_ifdef_in_compound_statement] = STATE(679), + [sym_preproc_else_in_compound_statement] = STATE(1148), + [sym_preproc_elif_in_compound_statement] = STATE(1148), + [sym_declaration] = STATE(679), + [sym_type_definition] = STATE(679), + [sym__declaration_specifiers] = STATE(427), + [sym_compound_statement] = STATE(679), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(679), + [sym_expression_statement] = STATE(679), + [sym_if_statement] = STATE(679), + [sym_switch_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(679), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(679), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1051), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1059), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -45317,261 +44214,161 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(133), - [sym_comment] = ACTIONS(85), - }, - [1047] = { - [sym_compound_statement] = STATE(1153), - [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(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_case] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2406), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [1048] = { - [sym_compound_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_expression_statement] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_case_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_goto_statement] = STATE(892), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_case] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2406), - [sym_comment] = ACTIONS(85), + [1040] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1854), + [sym_preproc_directive] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_typedef] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_LPAREN2] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_auto] = ACTIONS(1854), + [anon_sym_register] = ACTIONS(1854), + [anon_sym_inline] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_restrict] = ACTIONS(1854), + [anon_sym_volatile] = ACTIONS(1854), + [anon_sym__Atomic] = ACTIONS(1854), + [anon_sym_unsigned] = ACTIONS(1854), + [anon_sym_long] = ACTIONS(1854), + [anon_sym_short] = ACTIONS(1854), + [sym_primitive_type] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [anon_sym_struct] = ACTIONS(1854), + [anon_sym_union] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_switch] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_goto] = ACTIONS(1854), + [anon_sym_AMP] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(1856), + [anon_sym_TILDE] = ACTIONS(1856), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_DASH_DASH] = ACTIONS(1856), + [anon_sym_PLUS_PLUS] = ACTIONS(1856), + [anon_sym_sizeof] = ACTIONS(1854), + [sym_number_literal] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(1856), + [anon_sym_DQUOTE] = ACTIONS(1856), + [sym_true] = ACTIONS(1854), + [sym_false] = ACTIONS(1854), + [sym_null] = ACTIONS(1854), + [sym_identifier] = ACTIONS(1854), + [sym_comment] = ACTIONS(81), }, - [1049] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(3322), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1041] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3346), + [sym_comment] = ACTIONS(81), }, - [1050] = { - [sym_declaration] = STATE(895), - [sym_type_definition] = STATE(895), - [sym__declaration_specifiers] = STATE(896), - [sym_compound_statement] = STATE(895), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_labeled_statement] = STATE(895), - [sym_expression_statement] = STATE(895), - [sym_if_statement] = STATE(895), - [sym_switch_statement] = STATE(895), - [sym_case_statement] = STATE(895), - [sym_while_statement] = STATE(895), - [sym_do_statement] = STATE(895), - [sym_for_statement] = STATE(895), - [sym_return_statement] = STATE(895), - [sym_break_statement] = STATE(895), - [sym_continue_statement] = STATE(895), - [sym_goto_statement] = STATE(895), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_typedef] = ACTIONS(1029), + [1042] = { + [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(679), + [sym_preproc_ifdef_in_compound_statement] = STATE(679), + [sym_preproc_else_in_compound_statement] = STATE(1150), + [sym_preproc_elif_in_compound_statement] = STATE(1150), + [sym_declaration] = STATE(679), + [sym_type_definition] = STATE(679), + [sym__declaration_specifiers] = STATE(427), + [sym_compound_statement] = STATE(679), + [sym_storage_class_specifier] = STATE(41), + [sym_type_qualifier] = STATE(41), + [sym__type_specifier] = STATE(36), + [sym_sized_type_specifier] = STATE(36), + [sym_enum_specifier] = STATE(36), + [sym_struct_specifier] = STATE(36), + [sym_union_specifier] = STATE(36), + [sym_labeled_statement] = STATE(679), + [sym_expression_statement] = STATE(679), + [sym_if_statement] = STATE(679), + [sym_switch_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [sym__empty_declaration] = STATE(679), + [sym_macro_type_specifier] = STATE(36), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(679), + [aux_sym__declaration_specifiers_repeat1] = STATE(41), + [aux_sym_sized_type_specifier_repeat1] = STATE(42), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1051), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3348), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1055), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1059), + [sym_preproc_directive] = ACTIONS(352), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_typedef] = ACTIONS(356), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -45582,118 +44379,344 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(33), + [anon_sym_long] = ACTIONS(33), + [anon_sym_short] = ACTIONS(33), + [sym_primitive_type] = ACTIONS(35), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_case] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(3324), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(384), + [sym_comment] = ACTIONS(81), }, - [1051] = { - [sym_compound_statement] = STATE(897), - [sym_labeled_statement] = STATE(897), - [sym_expression_statement] = STATE(897), - [sym_if_statement] = STATE(897), - [sym_switch_statement] = STATE(897), - [sym_case_statement] = STATE(897), - [sym_while_statement] = STATE(897), - [sym_do_statement] = STATE(897), - [sym_for_statement] = STATE(897), - [sym_return_statement] = STATE(897), - [sym_break_statement] = STATE(897), - [sym_continue_statement] = STATE(897), - [sym_goto_statement] = STATE(897), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), + [1043] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3350), + [sym_comment] = ACTIONS(81), + }, + [1044] = { + [sym_compound_statement] = STATE(753), + [sym_labeled_statement] = STATE(753), + [sym_expression_statement] = STATE(753), + [sym_if_statement] = STATE(753), + [sym_switch_statement] = STATE(753), + [sym_while_statement] = STATE(753), + [sym_do_statement] = STATE(753), + [sym_for_statement] = STATE(753), + [sym_return_statement] = STATE(753), + [sym_break_statement] = STATE(753), + [sym_continue_statement] = STATE(753), + [sym_goto_statement] = STATE(753), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_case] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2406), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1069), + [sym_comment] = ACTIONS(81), }, - [1052] = { - [sym_declaration] = STATE(1156), - [sym__declaration_specifiers] = STATE(306), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), + [1045] = { + [sym__expression] = STATE(1152), + [sym_conditional_expression] = STATE(1152), + [sym_assignment_expression] = STATE(1152), + [sym_pointer_expression] = STATE(1152), + [sym_logical_expression] = STATE(1152), + [sym_bitwise_expression] = STATE(1152), + [sym_equality_expression] = STATE(1152), + [sym_relational_expression] = STATE(1152), + [sym_shift_expression] = STATE(1152), + [sym_math_expression] = STATE(1152), + [sym_cast_expression] = STATE(1152), + [sym_sizeof_expression] = STATE(1152), + [sym_subscript_expression] = STATE(1152), + [sym_call_expression] = STATE(1152), + [sym_field_expression] = STATE(1152), + [sym_compound_literal_expression] = STATE(1152), + [sym_parenthesized_expression] = STATE(1152), + [sym_char_literal] = STATE(1152), + [sym_concatenated_string] = STATE(1152), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3352), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_null] = ACTIONS(3356), + [sym_identifier] = ACTIONS(3356), + [sym_comment] = ACTIONS(81), + }, + [1046] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1047] = { + [sym__expression] = STATE(1154), + [sym_conditional_expression] = STATE(1154), + [sym_assignment_expression] = STATE(1154), + [sym_pointer_expression] = STATE(1154), + [sym_logical_expression] = STATE(1154), + [sym_bitwise_expression] = STATE(1154), + [sym_equality_expression] = STATE(1154), + [sym_relational_expression] = STATE(1154), + [sym_shift_expression] = STATE(1154), + [sym_math_expression] = STATE(1154), + [sym_cast_expression] = STATE(1154), + [sym_sizeof_expression] = STATE(1154), + [sym_subscript_expression] = STATE(1154), + [sym_call_expression] = STATE(1154), + [sym_field_expression] = STATE(1154), + [sym_compound_literal_expression] = STATE(1154), + [sym_parenthesized_expression] = STATE(1154), + [sym_char_literal] = STATE(1154), + [sym_concatenated_string] = STATE(1154), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_null] = ACTIONS(3362), + [sym_identifier] = ACTIONS(3362), + [sym_comment] = ACTIONS(81), + }, + [1048] = { + [sym_compound_statement] = STATE(1113), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1071), + [sym_comment] = ACTIONS(81), + }, + [1049] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3364), + [sym_comment] = ACTIONS(81), + }, + [1050] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1156), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3364), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1051] = { [sym__expression] = STATE(1157), [sym_conditional_expression] = STATE(1157), [sym_assignment_expression] = STATE(1157), @@ -45713,751 +44736,893 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1157), [sym_char_literal] = STATE(1157), [sym_concatenated_string] = STATE(1157), - [sym_string_literal] = STATE(123), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(3326), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3364), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3368), + [sym_comment] = ACTIONS(81), + }, + [1052] = { + [sym__declarator] = STATE(536), + [sym__abstract_declarator] = STATE(702), + [sym_pointer_declarator] = STATE(536), + [sym_abstract_pointer_declarator] = STATE(702), + [sym_function_declarator] = STATE(536), + [sym_abstract_function_declarator] = STATE(702), + [sym_array_declarator] = STATE(536), + [sym_abstract_array_declarator] = STATE(702), + [sym_type_qualifier] = STATE(1158), + [sym_parameter_list] = STATE(220), + [aux_sym_type_definition_repeat1] = STATE(1158), + [anon_sym_RPAREN] = ACTIONS(1898), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(445), [anon_sym_const] = ACTIONS(31), [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_identifier] = ACTIONS(651), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(1467), + [sym_comment] = ACTIONS(81), }, [1053] = { - [sym_compound_statement] = STATE(903), - [sym_labeled_statement] = STATE(903), - [sym_expression_statement] = STATE(903), - [sym_if_statement] = STATE(903), - [sym_switch_statement] = STATE(903), - [sym_case_statement] = STATE(903), - [sym_while_statement] = STATE(903), - [sym_do_statement] = STATE(903), - [sym_for_statement] = STATE(903), - [sym_return_statement] = STATE(903), - [sym_break_statement] = STATE(903), - [sym_continue_statement] = STATE(903), - [sym_goto_statement] = STATE(903), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_case] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2406), - [sym_comment] = ACTIONS(85), + [sym_type_qualifier] = STATE(1053), + [aux_sym_type_definition_repeat1] = STATE(1053), + [anon_sym_COMMA] = ACTIONS(2103), + [anon_sym_RPAREN] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_restrict] = ACTIONS(1033), + [anon_sym_volatile] = ACTIONS(1033), + [anon_sym__Atomic] = ACTIONS(1033), + [sym_identifier] = ACTIONS(1036), + [sym_comment] = ACTIONS(81), }, [1054] = { - [sym_compound_statement] = STATE(1158), - [sym_labeled_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_if_statement] = STATE(1158), - [sym_switch_statement] = STATE(1158), - [sym_case_statement] = STATE(1158), - [sym_while_statement] = STATE(1158), - [sym_do_statement] = STATE(1158), - [sym_for_statement] = STATE(1158), - [sym_return_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_goto_statement] = STATE(1158), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2408), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_RPAREN] = ACTIONS(3370), + [anon_sym_LPAREN2] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [sym_comment] = ACTIONS(81), }, [1055] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2199), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2199), - [sym_preproc_directive] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_typedef] = ACTIONS(2199), - [anon_sym_extern] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_LPAREN2] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_auto] = ACTIONS(2199), - [anon_sym_register] = ACTIONS(2199), - [anon_sym_inline] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_restrict] = ACTIONS(2199), - [anon_sym_volatile] = ACTIONS(2199), - [anon_sym__Atomic] = ACTIONS(2199), - [anon_sym_unsigned] = ACTIONS(2199), - [anon_sym_long] = ACTIONS(2199), - [anon_sym_short] = ACTIONS(2199), - [sym_primitive_type] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), - [anon_sym_struct] = ACTIONS(2199), - [anon_sym_union] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_else] = ACTIONS(2199), - [anon_sym_switch] = ACTIONS(2199), - [anon_sym_case] = ACTIONS(2199), - [anon_sym_default] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_goto] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2197), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2197), - [anon_sym_PLUS_PLUS] = ACTIONS(2197), - [anon_sym_sizeof] = ACTIONS(2199), - [sym_number_literal] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_DQUOTE] = ACTIONS(2197), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_null] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2199), - [sym_comment] = ACTIONS(85), + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_pointer_expression] = STATE(471), + [sym_logical_expression] = STATE(471), + [sym_bitwise_expression] = STATE(471), + [sym_equality_expression] = STATE(471), + [sym_relational_expression] = STATE(471), + [sym_shift_expression] = STATE(471), + [sym_math_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(471), + [sym_call_expression] = STATE(471), + [sym_field_expression] = STATE(471), + [sym_compound_literal_expression] = STATE(471), + [sym_parenthesized_expression] = STATE(471), + [sym_initializer_list] = STATE(472), + [sym_char_literal] = STATE(471), + [sym_concatenated_string] = STATE(471), + [sym_string_literal] = STATE(722), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [sym_null] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1277), + [sym_comment] = ACTIONS(81), }, [1056] = { - [sym__expression] = STATE(1159), - [sym_comma_expression] = STATE(1160), - [sym_conditional_expression] = STATE(1159), - [sym_assignment_expression] = STATE(1159), - [sym_pointer_expression] = STATE(1159), - [sym_logical_expression] = STATE(1159), - [sym_bitwise_expression] = STATE(1159), - [sym_equality_expression] = STATE(1159), - [sym_relational_expression] = STATE(1159), - [sym_shift_expression] = STATE(1159), - [sym_math_expression] = STATE(1159), - [sym_cast_expression] = STATE(1159), - [sym_sizeof_expression] = STATE(1159), - [sym_subscript_expression] = STATE(1159), - [sym_call_expression] = STATE(1159), - [sym_field_expression] = STATE(1159), - [sym_compound_literal_expression] = STATE(1159), - [sym_parenthesized_expression] = STATE(1159), - [sym_char_literal] = STATE(1159), - [sym_concatenated_string] = STATE(1159), - [sym_string_literal] = STATE(80), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_identifier] = ACTIONS(3334), - [sym_comment] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_EQ] = ACTIONS(3372), + [anon_sym_DOT] = ACTIONS(3372), + [sym_comment] = ACTIONS(81), }, [1057] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2227), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2227), - [sym_preproc_directive] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_typedef] = ACTIONS(2227), - [anon_sym_extern] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_auto] = ACTIONS(2227), - [anon_sym_register] = ACTIONS(2227), - [anon_sym_inline] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_restrict] = ACTIONS(2227), - [anon_sym_volatile] = ACTIONS(2227), - [anon_sym__Atomic] = ACTIONS(2227), - [anon_sym_unsigned] = ACTIONS(2227), - [anon_sym_long] = ACTIONS(2227), - [anon_sym_short] = ACTIONS(2227), - [sym_primitive_type] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_else] = ACTIONS(2227), - [anon_sym_switch] = ACTIONS(2227), - [anon_sym_case] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [anon_sym_do] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_goto] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_TILDE] = ACTIONS(2225), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_DASH_DASH] = ACTIONS(2225), - [anon_sym_PLUS_PLUS] = ACTIONS(2225), - [anon_sym_sizeof] = ACTIONS(2227), - [sym_number_literal] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [sym_true] = ACTIONS(2227), - [sym_false] = ACTIONS(2227), - [sym_null] = ACTIONS(2227), - [sym_identifier] = ACTIONS(2227), - [sym_comment] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(3374), + [sym_comment] = ACTIONS(81), }, [1058] = { - [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(80), - [anon_sym_RPAREN] = ACTIONS(3336), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_null] = ACTIONS(3340), - [sym_identifier] = ACTIONS(3340), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(3376), + [anon_sym_RPAREN] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_RBRACE] = ACTIONS(3376), + [anon_sym_LPAREN2] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_RBRACK] = ACTIONS(3376), + [anon_sym_EQ] = ACTIONS(3378), + [anon_sym_COLON] = ACTIONS(3376), + [anon_sym_QMARK] = ACTIONS(3376), + [anon_sym_STAR_EQ] = ACTIONS(3376), + [anon_sym_SLASH_EQ] = ACTIONS(3376), + [anon_sym_PERCENT_EQ] = ACTIONS(3376), + [anon_sym_PLUS_EQ] = ACTIONS(3376), + [anon_sym_DASH_EQ] = ACTIONS(3376), + [anon_sym_LT_LT_EQ] = ACTIONS(3376), + [anon_sym_GT_GT_EQ] = ACTIONS(3376), + [anon_sym_AMP_EQ] = ACTIONS(3376), + [anon_sym_CARET_EQ] = ACTIONS(3376), + [anon_sym_PIPE_EQ] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_PIPE_PIPE] = ACTIONS(3376), + [anon_sym_AMP_AMP] = ACTIONS(3376), + [anon_sym_PIPE] = ACTIONS(3378), + [anon_sym_CARET] = ACTIONS(3378), + [anon_sym_EQ_EQ] = ACTIONS(3376), + [anon_sym_BANG_EQ] = ACTIONS(3376), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_GT] = ACTIONS(3378), + [anon_sym_LT_EQ] = ACTIONS(3376), + [anon_sym_GT_EQ] = ACTIONS(3376), + [anon_sym_LT_LT] = ACTIONS(3378), + [anon_sym_GT_GT] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_PERCENT] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3376), + [anon_sym_PLUS_PLUS] = ACTIONS(3376), + [anon_sym_DOT] = ACTIONS(3376), + [anon_sym_DASH_GT] = ACTIONS(3376), + [sym_comment] = ACTIONS(81), }, [1059] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(3380), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(2609), + [anon_sym_QMARK] = ACTIONS(2611), + [anon_sym_STAR_EQ] = ACTIONS(2613), + [anon_sym_SLASH_EQ] = ACTIONS(2613), + [anon_sym_PERCENT_EQ] = ACTIONS(2613), + [anon_sym_PLUS_EQ] = ACTIONS(2613), + [anon_sym_DASH_EQ] = ACTIONS(2613), + [anon_sym_LT_LT_EQ] = ACTIONS(2613), + [anon_sym_GT_GT_EQ] = ACTIONS(2613), + [anon_sym_AMP_EQ] = ACTIONS(2613), + [anon_sym_CARET_EQ] = ACTIONS(2613), + [anon_sym_PIPE_EQ] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2623), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1060] = { - [sym__expression] = STATE(1164), - [sym_conditional_expression] = STATE(1164), - [sym_assignment_expression] = STATE(1164), - [sym_pointer_expression] = STATE(1164), - [sym_logical_expression] = STATE(1164), - [sym_bitwise_expression] = STATE(1164), - [sym_equality_expression] = STATE(1164), - [sym_relational_expression] = STATE(1164), - [sym_shift_expression] = STATE(1164), - [sym_math_expression] = STATE(1164), - [sym_cast_expression] = STATE(1164), - [sym_sizeof_expression] = STATE(1164), - [sym_subscript_expression] = STATE(1164), - [sym_call_expression] = STATE(1164), - [sym_field_expression] = STATE(1164), - [sym_compound_literal_expression] = STATE(1164), - [sym_parenthesized_expression] = STATE(1164), - [sym_char_literal] = STATE(1164), - [sym_concatenated_string] = STATE(1164), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_null] = ACTIONS(3346), - [sym_identifier] = ACTIONS(3346), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(3380), + [anon_sym_RBRACE] = ACTIONS(3380), + [sym_comment] = ACTIONS(81), }, [1061] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2279), - [sym_preproc_directive] = ACTIONS(2279), - [anon_sym_SEMI] = ACTIONS(2277), - [anon_sym_typedef] = ACTIONS(2279), - [anon_sym_extern] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2277), - [anon_sym_LPAREN2] = ACTIONS(2277), - [anon_sym_STAR] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2279), - [anon_sym_auto] = ACTIONS(2279), - [anon_sym_register] = ACTIONS(2279), - [anon_sym_inline] = ACTIONS(2279), - [anon_sym_const] = ACTIONS(2279), - [anon_sym_restrict] = ACTIONS(2279), - [anon_sym_volatile] = ACTIONS(2279), - [anon_sym__Atomic] = ACTIONS(2279), - [anon_sym_unsigned] = ACTIONS(2279), - [anon_sym_long] = ACTIONS(2279), - [anon_sym_short] = ACTIONS(2279), - [sym_primitive_type] = ACTIONS(2279), - [anon_sym_enum] = ACTIONS(2279), - [anon_sym_struct] = ACTIONS(2279), - [anon_sym_union] = ACTIONS(2279), - [anon_sym_if] = ACTIONS(2279), - [anon_sym_else] = ACTIONS(2279), - [anon_sym_switch] = ACTIONS(2279), - [anon_sym_case] = ACTIONS(2279), - [anon_sym_default] = ACTIONS(2279), - [anon_sym_while] = ACTIONS(2279), - [anon_sym_do] = ACTIONS(2279), - [anon_sym_for] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2279), - [anon_sym_break] = ACTIONS(2279), - [anon_sym_continue] = ACTIONS(2279), - [anon_sym_goto] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2277), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_TILDE] = ACTIONS(2277), - [anon_sym_PLUS] = ACTIONS(2279), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_DASH_DASH] = ACTIONS(2277), - [anon_sym_PLUS_PLUS] = ACTIONS(2277), - [anon_sym_sizeof] = ACTIONS(2279), - [sym_number_literal] = ACTIONS(2277), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_DQUOTE] = ACTIONS(2277), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2279), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(2609), + [anon_sym_QMARK] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(2613), + [anon_sym_SLASH_EQ] = ACTIONS(2613), + [anon_sym_PERCENT_EQ] = ACTIONS(2613), + [anon_sym_PLUS_EQ] = ACTIONS(2613), + [anon_sym_DASH_EQ] = ACTIONS(2613), + [anon_sym_LT_LT_EQ] = ACTIONS(2613), + [anon_sym_GT_GT_EQ] = ACTIONS(2613), + [anon_sym_AMP_EQ] = ACTIONS(2613), + [anon_sym_CARET_EQ] = ACTIONS(2613), + [anon_sym_PIPE_EQ] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2623), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1062] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2553), - [sym_preproc_directive] = ACTIONS(2553), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_typedef] = ACTIONS(2553), - [anon_sym_extern] = ACTIONS(2553), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(2551), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_static] = ACTIONS(2553), - [anon_sym_auto] = ACTIONS(2553), - [anon_sym_register] = ACTIONS(2553), - [anon_sym_inline] = ACTIONS(2553), - [anon_sym_const] = ACTIONS(2553), - [anon_sym_restrict] = ACTIONS(2553), - [anon_sym_volatile] = ACTIONS(2553), - [anon_sym__Atomic] = ACTIONS(2553), - [anon_sym_unsigned] = ACTIONS(2553), - [anon_sym_long] = ACTIONS(2553), - [anon_sym_short] = ACTIONS(2553), - [sym_primitive_type] = ACTIONS(2553), - [anon_sym_enum] = ACTIONS(2553), - [anon_sym_struct] = ACTIONS(2553), - [anon_sym_union] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2553), - [anon_sym_else] = ACTIONS(2553), - [anon_sym_switch] = ACTIONS(2553), - [anon_sym_case] = ACTIONS(2553), - [anon_sym_default] = ACTIONS(2553), - [anon_sym_while] = ACTIONS(2553), - [anon_sym_do] = ACTIONS(2553), - [anon_sym_for] = ACTIONS(2553), - [anon_sym_return] = ACTIONS(2553), - [anon_sym_break] = ACTIONS(2553), - [anon_sym_continue] = ACTIONS(2553), - [anon_sym_goto] = ACTIONS(2553), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_BANG] = ACTIONS(2551), - [anon_sym_TILDE] = ACTIONS(2551), - [anon_sym_PLUS] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_DASH_DASH] = ACTIONS(2551), - [anon_sym_PLUS_PLUS] = ACTIONS(2551), - [anon_sym_sizeof] = ACTIONS(2553), - [sym_number_literal] = ACTIONS(2551), - [anon_sym_SQUOTE] = ACTIONS(2551), - [anon_sym_DQUOTE] = ACTIONS(2551), - [sym_true] = ACTIONS(2553), - [sym_false] = ACTIONS(2553), - [sym_null] = ACTIONS(2553), - [sym_identifier] = ACTIONS(2553), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_COLON] = ACTIONS(3382), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_LT_LT_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_AMP_EQ] = ACTIONS(1563), + [anon_sym_CARET_EQ] = ACTIONS(1563), + [anon_sym_PIPE_EQ] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1063] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2557), - [sym_preproc_directive] = ACTIONS(2557), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_typedef] = ACTIONS(2557), - [anon_sym_extern] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2557), - [anon_sym_auto] = ACTIONS(2557), - [anon_sym_register] = ACTIONS(2557), - [anon_sym_inline] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [anon_sym_restrict] = ACTIONS(2557), - [anon_sym_volatile] = ACTIONS(2557), - [anon_sym__Atomic] = ACTIONS(2557), - [anon_sym_unsigned] = ACTIONS(2557), - [anon_sym_long] = ACTIONS(2557), - [anon_sym_short] = ACTIONS(2557), - [sym_primitive_type] = ACTIONS(2557), - [anon_sym_enum] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(2557), - [anon_sym_union] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_switch] = ACTIONS(2557), - [anon_sym_case] = ACTIONS(2557), - [anon_sym_default] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_goto] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2555), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_DASH_DASH] = ACTIONS(2555), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_sizeof] = ACTIONS(2557), - [sym_number_literal] = ACTIONS(2555), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_DQUOTE] = ACTIONS(2555), - [sym_true] = ACTIONS(2557), - [sym_false] = ACTIONS(2557), - [sym_null] = ACTIONS(2557), - [sym_identifier] = ACTIONS(2557), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1064] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [sym_null] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1454), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(1589), + [anon_sym_STAR_EQ] = ACTIONS(1589), + [anon_sym_SLASH_EQ] = ACTIONS(1589), + [anon_sym_PERCENT_EQ] = ACTIONS(1589), + [anon_sym_PLUS_EQ] = ACTIONS(1589), + [anon_sym_DASH_EQ] = ACTIONS(1589), + [anon_sym_LT_LT_EQ] = ACTIONS(1589), + [anon_sym_GT_GT_EQ] = ACTIONS(1589), + [anon_sym_AMP_EQ] = ACTIONS(1589), + [anon_sym_CARET_EQ] = ACTIONS(1589), + [anon_sym_PIPE_EQ] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2623), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1065] = { - [sym_declaration] = STATE(920), - [sym_type_definition] = STATE(920), - [sym__declaration_specifiers] = STATE(698), - [sym_compound_statement] = STATE(920), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_labeled_statement] = STATE(920), - [sym_expression_statement] = STATE(920), - [sym_if_statement] = STATE(920), - [sym_switch_statement] = STATE(920), - [sym_case_statement] = STATE(920), - [sym_while_statement] = STATE(920), - [sym_do_statement] = STATE(920), - [sym_for_statement] = STATE(920), - [sym_return_statement] = STATE(920), - [sym_break_statement] = STATE(920), - [sym_continue_statement] = STATE(920), - [sym_goto_statement] = STATE(920), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(1589), + [anon_sym_STAR_EQ] = ACTIONS(1589), + [anon_sym_SLASH_EQ] = ACTIONS(1589), + [anon_sym_PERCENT_EQ] = ACTIONS(1589), + [anon_sym_PLUS_EQ] = ACTIONS(1589), + [anon_sym_DASH_EQ] = ACTIONS(1589), + [anon_sym_LT_LT_EQ] = ACTIONS(1589), + [anon_sym_GT_GT_EQ] = ACTIONS(1589), + [anon_sym_AMP_EQ] = ACTIONS(1589), + [anon_sym_CARET_EQ] = ACTIONS(1589), + [anon_sym_PIPE_EQ] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2623), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1066] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(2623), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1067] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1585), + [anon_sym_STAR_EQ] = ACTIONS(1585), + [anon_sym_SLASH_EQ] = ACTIONS(1585), + [anon_sym_PERCENT_EQ] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1585), + [anon_sym_DASH_EQ] = ACTIONS(1585), + [anon_sym_LT_LT_EQ] = ACTIONS(1585), + [anon_sym_GT_GT_EQ] = ACTIONS(1585), + [anon_sym_AMP_EQ] = ACTIONS(1585), + [anon_sym_CARET_EQ] = ACTIONS(1585), + [anon_sym_PIPE_EQ] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1068] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1593), + [anon_sym_RBRACE] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1595), + [anon_sym_QMARK] = ACTIONS(1593), + [anon_sym_STAR_EQ] = ACTIONS(1593), + [anon_sym_SLASH_EQ] = ACTIONS(1593), + [anon_sym_PERCENT_EQ] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(1593), + [anon_sym_DASH_EQ] = ACTIONS(1593), + [anon_sym_LT_LT_EQ] = ACTIONS(1593), + [anon_sym_GT_GT_EQ] = ACTIONS(1593), + [anon_sym_AMP_EQ] = ACTIONS(1593), + [anon_sym_CARET_EQ] = ACTIONS(1593), + [anon_sym_PIPE_EQ] = ACTIONS(1593), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_PIPE_PIPE] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1593), + [anon_sym_PIPE] = ACTIONS(1595), + [anon_sym_CARET] = ACTIONS(1595), + [anon_sym_EQ_EQ] = ACTIONS(1593), + [anon_sym_BANG_EQ] = ACTIONS(1593), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1069] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1599), + [anon_sym_QMARK] = ACTIONS(1597), + [anon_sym_STAR_EQ] = ACTIONS(1597), + [anon_sym_SLASH_EQ] = ACTIONS(1597), + [anon_sym_PERCENT_EQ] = ACTIONS(1597), + [anon_sym_PLUS_EQ] = ACTIONS(1597), + [anon_sym_DASH_EQ] = ACTIONS(1597), + [anon_sym_LT_LT_EQ] = ACTIONS(1597), + [anon_sym_GT_GT_EQ] = ACTIONS(1597), + [anon_sym_AMP_EQ] = ACTIONS(1597), + [anon_sym_CARET_EQ] = ACTIONS(1597), + [anon_sym_PIPE_EQ] = ACTIONS(1597), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_PIPE_PIPE] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1597), + [anon_sym_BANG_EQ] = ACTIONS(1597), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1597), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1070] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1603), + [anon_sym_QMARK] = ACTIONS(1601), + [anon_sym_STAR_EQ] = ACTIONS(1601), + [anon_sym_SLASH_EQ] = ACTIONS(1601), + [anon_sym_PERCENT_EQ] = ACTIONS(1601), + [anon_sym_PLUS_EQ] = ACTIONS(1601), + [anon_sym_DASH_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_GT_EQ] = ACTIONS(1601), + [anon_sym_AMP_EQ] = ACTIONS(1601), + [anon_sym_CARET_EQ] = ACTIONS(1601), + [anon_sym_PIPE_EQ] = ACTIONS(1601), + [anon_sym_AMP] = ACTIONS(1603), + [anon_sym_PIPE_PIPE] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_CARET] = ACTIONS(1603), + [anon_sym_EQ_EQ] = ACTIONS(1601), + [anon_sym_BANG_EQ] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(1603), + [anon_sym_GT] = ACTIONS(1603), + [anon_sym_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_EQ] = ACTIONS(1601), + [anon_sym_LT_LT] = ACTIONS(1603), + [anon_sym_GT_GT] = ACTIONS(1603), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1071] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1509), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1072] = { + [sym__expression] = STATE(1059), + [sym_conditional_expression] = STATE(1059), + [sym_assignment_expression] = STATE(1059), + [sym_pointer_expression] = STATE(1059), + [sym_logical_expression] = STATE(1059), + [sym_bitwise_expression] = STATE(1059), + [sym_equality_expression] = STATE(1059), + [sym_relational_expression] = STATE(1059), + [sym_shift_expression] = STATE(1059), + [sym_math_expression] = STATE(1059), + [sym_cast_expression] = STATE(1059), + [sym_sizeof_expression] = STATE(1059), + [sym_subscript_expression] = STATE(1059), + [sym_call_expression] = STATE(1059), + [sym_field_expression] = STATE(1059), + [sym_compound_literal_expression] = STATE(1059), + [sym_parenthesized_expression] = STATE(1059), + [sym_initializer_list] = STATE(1060), + [sym_initializer_pair] = STATE(1060), + [sym_subscript_designator] = STATE(723), + [sym_field_designator] = STATE(723), + [sym_char_literal] = STATE(1059), + [sym_concatenated_string] = STATE(1059), + [sym_string_literal] = STATE(722), + [aux_sym_initializer_pair_repeat1] = STATE(723), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(3384), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [anon_sym_DOT] = ACTIONS(1934), + [sym_number_literal] = ACTIONS(3091), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3093), + [sym_false] = ACTIONS(3093), + [sym_null] = ACTIONS(3093), + [sym_identifier] = ACTIONS(3093), + [sym_comment] = ACTIONS(81), + }, + [1073] = { + [aux_sym_initializer_list_repeat1] = STATE(1073), + [anon_sym_COMMA] = ACTIONS(3386), + [anon_sym_RBRACE] = ACTIONS(3380), + [sym_comment] = ACTIONS(81), + }, + [1074] = { + [sym_string_literal] = STATE(1074), + [aux_sym_concatenated_string_repeat1] = STATE(1074), + [anon_sym_COMMA] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_EQ] = ACTIONS(1611), + [anon_sym_QMARK] = ACTIONS(1609), + [anon_sym_STAR_EQ] = ACTIONS(1609), + [anon_sym_SLASH_EQ] = ACTIONS(1609), + [anon_sym_PERCENT_EQ] = ACTIONS(1609), + [anon_sym_PLUS_EQ] = ACTIONS(1609), + [anon_sym_DASH_EQ] = ACTIONS(1609), + [anon_sym_LT_LT_EQ] = ACTIONS(1609), + [anon_sym_GT_GT_EQ] = ACTIONS(1609), + [anon_sym_AMP_EQ] = ACTIONS(1609), + [anon_sym_CARET_EQ] = ACTIONS(1609), + [anon_sym_PIPE_EQ] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_PIPE_PIPE] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1611), + [anon_sym_EQ_EQ] = ACTIONS(1609), + [anon_sym_BANG_EQ] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1611), + [anon_sym_LT_EQ] = ACTIONS(1609), + [anon_sym_GT_EQ] = ACTIONS(1609), + [anon_sym_LT_LT] = ACTIONS(1611), + [anon_sym_GT_GT] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_SLASH] = ACTIONS(1611), + [anon_sym_PERCENT] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_DOT] = ACTIONS(1609), + [anon_sym_DASH_GT] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1613), + [sym_comment] = ACTIONS(81), + }, + [1075] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(2609), + [anon_sym_QMARK] = ACTIONS(2611), + [anon_sym_STAR_EQ] = ACTIONS(2613), + [anon_sym_SLASH_EQ] = ACTIONS(2613), + [anon_sym_PERCENT_EQ] = ACTIONS(2613), + [anon_sym_PLUS_EQ] = ACTIONS(2613), + [anon_sym_DASH_EQ] = ACTIONS(2613), + [anon_sym_LT_LT_EQ] = ACTIONS(2613), + [anon_sym_GT_GT_EQ] = ACTIONS(2613), + [anon_sym_AMP_EQ] = ACTIONS(2613), + [anon_sym_CARET_EQ] = ACTIONS(2613), + [anon_sym_PIPE_EQ] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2623), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1076] = { + [anon_sym_COMMA] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [sym_comment] = ACTIONS(81), + }, + [1077] = { + [sym_preproc_if_in_field_declaration_list] = STATE(1077), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1077), + [sym__declaration_specifiers] = STATE(247), + [sym_storage_class_specifier] = STATE(250), + [sym_type_qualifier] = STATE(250), + [sym__type_specifier] = STATE(248), + [sym_sized_type_specifier] = STATE(248), + [sym_enum_specifier] = STATE(248), + [sym_struct_specifier] = STATE(248), + [sym_union_specifier] = STATE(248), + [sym__field_declaration_list_item] = STATE(1077), + [sym_field_declaration] = STATE(1077), + [sym_macro_type_specifier] = STATE(248), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1077), + [aux_sym__declaration_specifiers_repeat1] = STATE(250), + [aux_sym_sized_type_specifier_repeat1] = STATE(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2005), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1999), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2002), + [anon_sym_auto] = ACTIONS(2002), + [anon_sym_register] = ACTIONS(2002), + [anon_sym_inline] = ACTIONS(2002), + [anon_sym_const] = ACTIONS(2007), + [anon_sym_restrict] = ACTIONS(2007), + [anon_sym_volatile] = ACTIONS(2007), + [anon_sym__Atomic] = ACTIONS(2007), + [anon_sym_unsigned] = ACTIONS(2010), + [anon_sym_long] = ACTIONS(2010), + [anon_sym_short] = ACTIONS(2010), + [sym_primitive_type] = ACTIONS(2013), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2019), + [anon_sym_union] = ACTIONS(2022), + [sym_identifier] = ACTIONS(2025), + [sym_comment] = ACTIONS(81), + }, + [1078] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3391), + [sym_comment] = ACTIONS(81), + }, + [1079] = { + [sym_preproc_if_in_field_declaration_list] = STATE(941), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(941), + [sym_preproc_else_in_field_declaration_list] = STATE(1163), + [sym_preproc_elif_in_field_declaration_list] = STATE(1163), + [sym__declaration_specifiers] = STATE(247), + [sym_storage_class_specifier] = STATE(250), + [sym_type_qualifier] = STATE(250), + [sym__type_specifier] = STATE(248), + [sym_sized_type_specifier] = STATE(248), + [sym_enum_specifier] = STATE(248), + [sym_struct_specifier] = STATE(248), + [sym_union_specifier] = STATE(248), + [sym__field_declaration_list_item] = STATE(941), + [sym_field_declaration] = STATE(941), + [sym_macro_type_specifier] = STATE(248), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(941), + [aux_sym__declaration_specifiers_repeat1] = STATE(250), + [aux_sym_sized_type_specifier_repeat1] = STATE(251), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3391), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1964), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1966), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -46466,288 +45631,424 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), + [anon_sym_unsigned] = ACTIONS(511), + [anon_sym_long] = ACTIONS(511), + [anon_sym_short] = ACTIONS(511), + [sym_primitive_type] = ACTIONS(513), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(2985), - [sym_comment] = ACTIONS(85), + [sym_identifier] = ACTIONS(107), + [sym_comment] = ACTIONS(81), }, - [1066] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(2513), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), + [1080] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3395), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3395), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3395), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3395), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3395), + [anon_sym_extern] = ACTIONS(3393), + [anon_sym_RBRACE] = 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), + [sym_identifier] = ACTIONS(3393), + [sym_comment] = ACTIONS(81), }, - [1067] = { - [sym__expression] = STATE(1167), - [sym_conditional_expression] = STATE(1167), - [sym_assignment_expression] = STATE(1167), - [sym_pointer_expression] = STATE(1167), - [sym_logical_expression] = STATE(1167), - [sym_bitwise_expression] = STATE(1167), - [sym_equality_expression] = STATE(1167), - [sym_relational_expression] = STATE(1167), - [sym_shift_expression] = STATE(1167), - [sym_math_expression] = STATE(1167), - [sym_cast_expression] = STATE(1167), - [sym_sizeof_expression] = STATE(1167), - [sym_subscript_expression] = STATE(1167), - [sym_call_expression] = STATE(1167), - [sym_field_expression] = STATE(1167), - [sym_compound_literal_expression] = STATE(1167), - [sym_parenthesized_expression] = STATE(1167), - [sym_char_literal] = STATE(1167), - [sym_concatenated_string] = STATE(1167), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(3352), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_null] = ACTIONS(3354), - [sym_identifier] = ACTIONS(3354), - [sym_comment] = ACTIONS(85), + [1081] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3399), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3399), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3399), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3399), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3399), + [anon_sym_extern] = ACTIONS(3397), + [anon_sym_RBRACE] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3397), + [anon_sym_auto] = ACTIONS(3397), + [anon_sym_register] = ACTIONS(3397), + [anon_sym_inline] = ACTIONS(3397), + [anon_sym_const] = ACTIONS(3397), + [anon_sym_restrict] = ACTIONS(3397), + [anon_sym_volatile] = ACTIONS(3397), + [anon_sym__Atomic] = ACTIONS(3397), + [anon_sym_unsigned] = ACTIONS(3397), + [anon_sym_long] = ACTIONS(3397), + [anon_sym_short] = ACTIONS(3397), + [sym_primitive_type] = ACTIONS(3397), + [anon_sym_enum] = ACTIONS(3397), + [anon_sym_struct] = ACTIONS(3397), + [anon_sym_union] = ACTIONS(3397), + [sym_identifier] = ACTIONS(3397), + [sym_comment] = ACTIONS(81), }, - [1068] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1082] = { + [anon_sym_COMMA] = ACTIONS(3401), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_LPAREN2] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_COLON] = ACTIONS(3401), + [sym_comment] = ACTIONS(81), }, - [1069] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2853), - [sym_preproc_directive] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_typedef] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_auto] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(2853), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_goto] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_sizeof] = ACTIONS(2853), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2851), - [anon_sym_DQUOTE] = ACTIONS(2851), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [sym_null] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2853), - [sym_comment] = ACTIONS(85), + [1083] = { + [sym__expression] = STATE(78), + [sym_conditional_expression] = STATE(78), + [sym_assignment_expression] = STATE(78), + [sym_pointer_expression] = STATE(78), + [sym_logical_expression] = STATE(78), + [sym_bitwise_expression] = STATE(78), + [sym_equality_expression] = STATE(78), + [sym_relational_expression] = STATE(78), + [sym_shift_expression] = STATE(78), + [sym_math_expression] = STATE(78), + [sym_cast_expression] = STATE(78), + [sym_sizeof_expression] = STATE(78), + [sym_subscript_expression] = STATE(78), + [sym_call_expression] = STATE(78), + [sym_field_expression] = STATE(78), + [sym_compound_literal_expression] = STATE(78), + [sym_parenthesized_expression] = STATE(78), + [sym_char_literal] = STATE(78), + [sym_concatenated_string] = STATE(78), + [sym_string_literal] = STATE(324), + [anon_sym_LPAREN2] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(685), + [anon_sym_PLUS] = ACTIONS(687), + [anon_sym_DASH] = ACTIONS(687), + [anon_sym_DASH_DASH] = ACTIONS(689), + [anon_sym_PLUS_PLUS] = ACTIONS(689), + [anon_sym_sizeof] = ACTIONS(691), + [sym_number_literal] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(151), + [sym_false] = ACTIONS(151), + [sym_null] = ACTIONS(151), + [sym_identifier] = ACTIONS(151), + [sym_comment] = ACTIONS(81), }, - [1070] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(491), - [anon_sym_RPAREN] = ACTIONS(3358), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1084] = { + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(3403), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1071] = { - [anon_sym_RPAREN] = ACTIONS(3358), - [sym_comment] = ACTIONS(85), + [1085] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3407), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3407), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3407), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3407), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3407), + [anon_sym_extern] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3407), + [anon_sym_static] = ACTIONS(3405), + [anon_sym_auto] = ACTIONS(3405), + [anon_sym_register] = ACTIONS(3405), + [anon_sym_inline] = ACTIONS(3405), + [anon_sym_const] = ACTIONS(3405), + [anon_sym_restrict] = ACTIONS(3405), + [anon_sym_volatile] = ACTIONS(3405), + [anon_sym__Atomic] = ACTIONS(3405), + [anon_sym_unsigned] = ACTIONS(3405), + [anon_sym_long] = ACTIONS(3405), + [anon_sym_short] = ACTIONS(3405), + [sym_primitive_type] = ACTIONS(3405), + [anon_sym_enum] = ACTIONS(3405), + [anon_sym_struct] = ACTIONS(3405), + [anon_sym_union] = ACTIONS(3405), + [sym_identifier] = ACTIONS(3405), + [sym_comment] = ACTIONS(81), }, - [1072] = { + [1086] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1087] = { + [sym_compound_statement] = STATE(980), + [sym_labeled_statement] = STATE(980), + [sym_expression_statement] = STATE(980), + [sym_if_statement] = STATE(980), + [sym_switch_statement] = STATE(980), + [sym_while_statement] = STATE(980), + [sym_do_statement] = STATE(980), + [sym_for_statement] = STATE(980), + [sym_return_statement] = STATE(980), + [sym_break_statement] = STATE(980), + [sym_continue_statement] = STATE(980), + [sym_goto_statement] = STATE(980), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(535), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(537), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(539), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(541), + [sym_comment] = ACTIONS(81), + }, + [1088] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1167), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3411), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1089] = { + [sym__expression] = STATE(1168), + [sym_conditional_expression] = STATE(1168), + [sym_assignment_expression] = STATE(1168), + [sym_pointer_expression] = STATE(1168), + [sym_logical_expression] = STATE(1168), + [sym_bitwise_expression] = STATE(1168), + [sym_equality_expression] = STATE(1168), + [sym_relational_expression] = STATE(1168), + [sym_shift_expression] = STATE(1168), + [sym_math_expression] = STATE(1168), + [sym_cast_expression] = STATE(1168), + [sym_sizeof_expression] = STATE(1168), + [sym_subscript_expression] = STATE(1168), + [sym_call_expression] = STATE(1168), + [sym_field_expression] = STATE(1168), + [sym_compound_literal_expression] = STATE(1168), + [sym_parenthesized_expression] = STATE(1168), + [sym_char_literal] = STATE(1168), + [sym_concatenated_string] = STATE(1168), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3411), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3415), + [sym_false] = ACTIONS(3415), + [sym_null] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3415), + [sym_comment] = ACTIONS(81), + }, + [1090] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1091] = { [sym_compound_statement] = STATE(1170), [sym_labeled_statement] = STATE(1170), [sym_expression_statement] = STATE(1170), [sym_if_statement] = STATE(1170), [sym_switch_statement] = STATE(1170), - [sym_case_statement] = STATE(1170), [sym_while_statement] = STATE(1170), [sym_do_statement] = STATE(1170), [sym_for_statement] = STATE(1170), @@ -46755,449 +46056,371 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(1170), [sym_continue_statement] = STATE(1170), [sym_goto_statement] = STATE(1170), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1848), - [sym_comment] = ACTIONS(85), - }, - [1073] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1172), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3360), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [1074] = { - [sym__expression] = STATE(1173), - [sym_conditional_expression] = STATE(1173), - [sym_assignment_expression] = STATE(1173), - [sym_pointer_expression] = STATE(1173), - [sym_logical_expression] = STATE(1173), - [sym_bitwise_expression] = STATE(1173), - [sym_equality_expression] = STATE(1173), - [sym_relational_expression] = STATE(1173), - [sym_shift_expression] = STATE(1173), - [sym_math_expression] = STATE(1173), - [sym_cast_expression] = STATE(1173), - [sym_sizeof_expression] = STATE(1173), - [sym_subscript_expression] = STATE(1173), - [sym_call_expression] = STATE(1173), - [sym_field_expression] = STATE(1173), - [sym_compound_literal_expression] = STATE(1173), - [sym_parenthesized_expression] = STATE(1173), - [sym_char_literal] = STATE(1173), - [sym_concatenated_string] = STATE(1173), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3360), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3364), - [sym_false] = ACTIONS(3364), - [sym_null] = ACTIONS(3364), - [sym_identifier] = ACTIONS(3364), - [sym_comment] = ACTIONS(85), - }, - [1075] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3366), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [1076] = { - [anon_sym_RPAREN] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3368), - [anon_sym_LPAREN2] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [sym_comment] = ACTIONS(85), - }, - [1077] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2594), - [sym_preproc_directive] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_typedef] = ACTIONS(2594), - [anon_sym_extern] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_LPAREN2] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_auto] = ACTIONS(2594), - [anon_sym_register] = ACTIONS(2594), - [anon_sym_inline] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_restrict] = ACTIONS(2594), - [anon_sym_volatile] = ACTIONS(2594), - [anon_sym__Atomic] = ACTIONS(2594), - [anon_sym_unsigned] = ACTIONS(2594), - [anon_sym_long] = ACTIONS(2594), - [anon_sym_short] = ACTIONS(2594), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), - [anon_sym_struct] = ACTIONS(2594), - [anon_sym_union] = ACTIONS(2594), - [anon_sym_if] = ACTIONS(2594), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2594), - [anon_sym_default] = ACTIONS(2594), - [anon_sym_while] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2594), - [anon_sym_return] = ACTIONS(2594), - [anon_sym_break] = ACTIONS(2594), - [anon_sym_continue] = ACTIONS(2594), - [anon_sym_goto] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2596), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DASH_DASH] = ACTIONS(2596), - [anon_sym_PLUS_PLUS] = ACTIONS(2596), - [anon_sym_sizeof] = ACTIONS(2594), - [sym_number_literal] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [sym_true] = ACTIONS(2594), - [sym_false] = ACTIONS(2594), - [sym_null] = ACTIONS(2594), - [sym_identifier] = ACTIONS(2594), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(2712), + [sym_comment] = ACTIONS(81), }, - [1078] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3370), - [sym_comment] = ACTIONS(85), - }, - [1079] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2668), - [sym_preproc_directive] = ACTIONS(2668), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_typedef] = ACTIONS(2668), - [anon_sym_extern] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_LPAREN2] = ACTIONS(2670), - [anon_sym_STAR] = ACTIONS(2670), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_auto] = ACTIONS(2668), - [anon_sym_register] = ACTIONS(2668), - [anon_sym_inline] = ACTIONS(2668), - [anon_sym_const] = ACTIONS(2668), - [anon_sym_restrict] = ACTIONS(2668), - [anon_sym_volatile] = ACTIONS(2668), - [anon_sym__Atomic] = ACTIONS(2668), - [anon_sym_unsigned] = ACTIONS(2668), - [anon_sym_long] = ACTIONS(2668), - [anon_sym_short] = ACTIONS(2668), - [sym_primitive_type] = ACTIONS(2668), - [anon_sym_enum] = ACTIONS(2668), - [anon_sym_struct] = ACTIONS(2668), - [anon_sym_union] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_switch] = ACTIONS(2668), - [anon_sym_case] = ACTIONS(2668), - [anon_sym_default] = ACTIONS(2668), - [anon_sym_while] = ACTIONS(2668), - [anon_sym_do] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_goto] = ACTIONS(2668), - [anon_sym_AMP] = ACTIONS(2670), - [anon_sym_BANG] = ACTIONS(2670), - [anon_sym_TILDE] = ACTIONS(2670), - [anon_sym_PLUS] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), - [anon_sym_DASH_DASH] = ACTIONS(2670), - [anon_sym_PLUS_PLUS] = ACTIONS(2670), - [anon_sym_sizeof] = ACTIONS(2668), - [sym_number_literal] = ACTIONS(2670), - [anon_sym_SQUOTE] = ACTIONS(2670), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym_true] = ACTIONS(2668), - [sym_false] = ACTIONS(2668), - [sym_null] = ACTIONS(2668), - [sym_identifier] = ACTIONS(2668), - [sym_comment] = ACTIONS(85), + [1092] = { + [sym_compound_statement] = STATE(264), + [sym_labeled_statement] = STATE(264), + [sym_expression_statement] = STATE(264), + [sym_if_statement] = STATE(264), + [sym_switch_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_do_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_return_statement] = STATE(264), + [sym_break_statement] = STATE(264), + [sym_continue_statement] = STATE(264), + [sym_goto_statement] = STATE(264), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(2712), + [sym_comment] = ACTIONS(81), }, - [1080] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3372), - [sym_comment] = ACTIONS(85), + [1093] = { + [sym_declaration] = STATE(1171), + [sym__declaration_specifiers] = STATE(273), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [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(107), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(29), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_static] = ACTIONS(29), + [anon_sym_auto] = ACTIONS(29), + [anon_sym_register] = ACTIONS(29), + [anon_sym_inline] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_restrict] = ACTIONS(31), + [anon_sym_volatile] = ACTIONS(31), + [anon_sym__Atomic] = ACTIONS(31), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), + [anon_sym_enum] = ACTIONS(37), + [anon_sym_struct] = ACTIONS(39), + [anon_sym_union] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3423), + [sym_false] = ACTIONS(3423), + [sym_null] = ACTIONS(3423), + [sym_identifier] = ACTIONS(559), + [sym_comment] = ACTIONS(81), }, - [1081] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1982), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1982), - [sym_preproc_directive] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_typedef] = ACTIONS(1982), - [anon_sym_extern] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1984), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1982), - [anon_sym_auto] = ACTIONS(1982), - [anon_sym_register] = ACTIONS(1982), - [anon_sym_inline] = ACTIONS(1982), - [anon_sym_const] = ACTIONS(1982), - [anon_sym_restrict] = ACTIONS(1982), - [anon_sym_volatile] = ACTIONS(1982), - [anon_sym__Atomic] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [sym_primitive_type] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1982), - [anon_sym_struct] = ACTIONS(1982), - [anon_sym_union] = ACTIONS(1982), - [anon_sym_if] = ACTIONS(1982), - [anon_sym_switch] = ACTIONS(1982), - [anon_sym_case] = ACTIONS(1982), - [anon_sym_default] = ACTIONS(1982), - [anon_sym_while] = ACTIONS(1982), - [anon_sym_do] = ACTIONS(1982), - [anon_sym_for] = ACTIONS(1982), - [anon_sym_return] = ACTIONS(1982), - [anon_sym_break] = ACTIONS(1982), - [anon_sym_continue] = ACTIONS(1982), - [anon_sym_goto] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_TILDE] = ACTIONS(1984), - [anon_sym_PLUS] = ACTIONS(1982), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1982), - [sym_number_literal] = ACTIONS(1984), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1984), - [sym_true] = ACTIONS(1982), - [sym_false] = ACTIONS(1982), - [sym_null] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1982), - [sym_comment] = ACTIONS(85), + [1094] = { + [sym_compound_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(2712), + [sym_comment] = ACTIONS(81), }, - [1082] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3374), - [sym_comment] = ACTIONS(85), + [1095] = { + [sym_compound_statement] = STATE(753), + [sym_labeled_statement] = STATE(753), + [sym_expression_statement] = STATE(753), + [sym_if_statement] = STATE(753), + [sym_switch_statement] = STATE(753), + [sym_while_statement] = STATE(753), + [sym_do_statement] = STATE(753), + [sym_for_statement] = STATE(753), + [sym_return_statement] = STATE(753), + [sym_break_statement] = STATE(753), + [sym_continue_statement] = STATE(753), + [sym_goto_statement] = STATE(753), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(81), }, - [1083] = { - [sym_preproc_include] = STATE(733), - [sym_preproc_def] = STATE(733), - [sym_preproc_function_def] = STATE(733), - [sym_preproc_call] = STATE(733), - [sym_preproc_if_in_compound_statement] = STATE(733), - [sym_preproc_ifdef_in_compound_statement] = STATE(733), - [sym_preproc_else_in_compound_statement] = STATE(1178), - [sym_preproc_elif_in_compound_statement] = STATE(1178), - [sym_declaration] = STATE(733), - [sym_type_definition] = STATE(733), - [sym__declaration_specifiers] = STATE(469), - [sym_compound_statement] = STATE(733), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(733), - [sym_expression_statement] = STATE(733), - [sym_if_statement] = STATE(733), - [sym_switch_statement] = STATE(733), - [sym_case_statement] = STATE(733), - [sym_while_statement] = STATE(733), - [sym_do_statement] = STATE(733), - [sym_for_statement] = STATE(733), - [sym_return_statement] = STATE(733), - [sym_break_statement] = STATE(733), - [sym_continue_statement] = STATE(733), - [sym_goto_statement] = STATE(733), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(733), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(733), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), + [1096] = { + [sym_declaration] = STATE(1101), + [sym_type_definition] = STATE(1101), + [sym__declaration_specifiers] = STATE(273), + [sym_compound_statement] = STATE(1101), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym_labeled_statement] = STATE(1101), + [sym_expression_statement] = STATE(1101), + [sym_if_statement] = STATE(1101), + [sym_switch_statement] = STATE(1101), + [sym_while_statement] = STATE(1101), + [sym_do_statement] = STATE(1101), + [sym_for_statement] = STATE(1101), + [sym_return_statement] = STATE(1101), + [sym_break_statement] = STATE(1101), + [sym_continue_statement] = STATE(1101), + [sym_goto_statement] = STATE(1101), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [aux_sym_case_statement_repeat1] = STATE(1101), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(3425), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_static] = ACTIONS(29), @@ -47208,175 +46431,206 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_case] = ACTIONS(3427), + [anon_sym_default] = ACTIONS(3427), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), - }, - [1084] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2002), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2002), - [sym_preproc_directive] = ACTIONS(2002), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_typedef] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_LPAREN2] = ACTIONS(2004), - [anon_sym_STAR] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2002), - [anon_sym_auto] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2002), - [anon_sym_inline] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_restrict] = ACTIONS(2002), - [anon_sym_volatile] = ACTIONS(2002), - [anon_sym__Atomic] = ACTIONS(2002), - [anon_sym_unsigned] = ACTIONS(2002), - [anon_sym_long] = ACTIONS(2002), - [anon_sym_short] = ACTIONS(2002), - [sym_primitive_type] = ACTIONS(2002), - [anon_sym_enum] = ACTIONS(2002), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_switch] = ACTIONS(2002), - [anon_sym_case] = ACTIONS(2002), - [anon_sym_default] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_do] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_goto] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2004), - [anon_sym_PLUS_PLUS] = ACTIONS(2004), - [anon_sym_sizeof] = ACTIONS(2002), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_DQUOTE] = ACTIONS(2004), - [sym_true] = ACTIONS(2002), - [sym_false] = ACTIONS(2002), - [sym_null] = ACTIONS(2002), - [sym_identifier] = ACTIONS(2002), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(2726), + [sym_comment] = ACTIONS(81), }, - [1085] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3378), - [sym_comment] = ACTIONS(85), + [1097] = { + [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_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(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3435), + [sym_comment] = ACTIONS(81), }, - [1086] = { - [sym_preproc_include] = STATE(733), - [sym_preproc_def] = STATE(733), - [sym_preproc_function_def] = STATE(733), - [sym_preproc_call] = STATE(733), - [sym_preproc_if_in_compound_statement] = STATE(733), - [sym_preproc_ifdef_in_compound_statement] = STATE(733), - [sym_preproc_else_in_compound_statement] = STATE(1180), - [sym_preproc_elif_in_compound_statement] = STATE(1180), - [sym_declaration] = STATE(733), - [sym_type_definition] = STATE(733), - [sym__declaration_specifiers] = STATE(469), - [sym_compound_statement] = STATE(733), - [sym_storage_class_specifier] = STATE(43), - [sym_type_qualifier] = STATE(43), - [sym__type_specifier] = STATE(38), - [sym_sized_type_specifier] = STATE(38), - [sym_enum_specifier] = STATE(38), - [sym_struct_specifier] = STATE(38), - [sym_union_specifier] = STATE(38), - [sym_labeled_statement] = STATE(733), - [sym_expression_statement] = STATE(733), - [sym_if_statement] = STATE(733), - [sym_switch_statement] = STATE(733), - [sym_case_statement] = STATE(733), - [sym_while_statement] = STATE(733), - [sym_do_statement] = STATE(733), - [sym_for_statement] = STATE(733), - [sym_return_statement] = STATE(733), - [sym_break_statement] = STATE(733), - [sym_continue_statement] = STATE(733), - [sym_goto_statement] = STATE(733), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [sym__empty_declaration] = STATE(733), - [sym_macro_type_specifier] = STATE(38), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(733), - [aux_sym__declaration_specifiers_repeat1] = STATE(43), - [aux_sym_sized_type_specifier_repeat1] = STATE(44), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1145), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1149), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1151), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1153), - [sym_preproc_directive] = ACTIONS(386), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(394), + [1098] = { + [sym_compound_statement] = STATE(264), + [sym_labeled_statement] = STATE(264), + [sym_expression_statement] = STATE(264), + [sym_if_statement] = STATE(264), + [sym_switch_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_do_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_return_statement] = STATE(264), + [sym_break_statement] = STATE(264), + [sym_continue_statement] = STATE(264), + [sym_goto_statement] = STATE(264), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3437), + [sym_comment] = ACTIONS(81), + }, + [1099] = { + [sym_declaration] = STATE(1179), + [sym__declaration_specifiers] = STATE(273), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym__expression] = STATE(1180), + [sym_conditional_expression] = STATE(1180), + [sym_assignment_expression] = STATE(1180), + [sym_pointer_expression] = STATE(1180), + [sym_logical_expression] = STATE(1180), + [sym_bitwise_expression] = STATE(1180), + [sym_equality_expression] = STATE(1180), + [sym_relational_expression] = STATE(1180), + [sym_shift_expression] = STATE(1180), + [sym_math_expression] = STATE(1180), + [sym_cast_expression] = STATE(1180), + [sym_sizeof_expression] = STATE(1180), + [sym_subscript_expression] = STATE(1180), + [sym_call_expression] = STATE(1180), + [sym_field_expression] = STATE(1180), + [sym_compound_literal_expression] = STATE(1180), + [sym_parenthesized_expression] = STATE(1180), + [sym_char_literal] = STATE(1180), + [sym_concatenated_string] = STATE(1180), + [sym_string_literal] = STATE(107), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_extern] = ACTIONS(29), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), [anon_sym_static] = ACTIONS(29), [anon_sym_auto] = ACTIONS(29), [anon_sym_register] = ACTIONS(29), @@ -47385,113 +46639,193 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(31), [anon_sym_volatile] = ACTIONS(31), [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(33), - [anon_sym_long] = ACTIONS(33), - [anon_sym_short] = ACTIONS(33), - [sym_primitive_type] = ACTIONS(35), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), [anon_sym_enum] = ACTIONS(37), [anon_sym_struct] = ACTIONS(39), [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [sym_comment] = ACTIONS(85), - }, - [1087] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3382), - [sym_comment] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3441), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3443), + [sym_false] = ACTIONS(3443), + [sym_null] = ACTIONS(3443), + [sym_identifier] = ACTIONS(559), + [sym_comment] = ACTIONS(81), }, - [1088] = { - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_case_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [sym_do_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1100] = { + [sym_compound_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1169), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3437), + [sym_comment] = ACTIONS(81), }, - [1089] = { + [1101] = { + [sym_declaration] = STATE(1101), + [sym_type_definition] = STATE(1101), + [sym__declaration_specifiers] = STATE(273), + [sym_compound_statement] = STATE(1101), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [sym_labeled_statement] = STATE(1101), + [sym_expression_statement] = STATE(1101), + [sym_if_statement] = STATE(1101), + [sym_switch_statement] = STATE(1101), + [sym_while_statement] = STATE(1101), + [sym_do_statement] = STATE(1101), + [sym_for_statement] = STATE(1101), + [sym_return_statement] = STATE(1101), + [sym_break_statement] = STATE(1101), + [sym_continue_statement] = STATE(1101), + [sym_goto_statement] = STATE(1101), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [aux_sym_case_statement_repeat1] = STATE(1101), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_typedef] = ACTIONS(3448), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_RBRACE] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3459), + [anon_sym_STAR] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_auto] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3465), + [anon_sym_restrict] = ACTIONS(3465), + [anon_sym_volatile] = ACTIONS(3465), + [anon_sym__Atomic] = ACTIONS(3465), + [anon_sym_unsigned] = ACTIONS(3468), + [anon_sym_long] = ACTIONS(3468), + [anon_sym_short] = ACTIONS(3468), + [sym_primitive_type] = ACTIONS(3471), + [anon_sym_enum] = ACTIONS(3474), + [anon_sym_struct] = ACTIONS(3477), + [anon_sym_union] = ACTIONS(3480), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_case] = ACTIONS(3489), + [anon_sym_default] = ACTIONS(3489), + [anon_sym_while] = ACTIONS(3491), + [anon_sym_do] = ACTIONS(3494), + [anon_sym_for] = ACTIONS(3497), + [anon_sym_return] = ACTIONS(3500), + [anon_sym_break] = ACTIONS(3503), + [anon_sym_continue] = ACTIONS(3506), + [anon_sym_goto] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3515), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3521), + [anon_sym_PLUS_PLUS] = ACTIONS(3521), + [anon_sym_sizeof] = ACTIONS(3524), + [sym_number_literal] = ACTIONS(3527), + [anon_sym_SQUOTE] = ACTIONS(3530), + [anon_sym_DQUOTE] = ACTIONS(3533), + [sym_true] = ACTIONS(3536), + [sym_false] = ACTIONS(3536), + [sym_null] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3539), + [sym_comment] = ACTIONS(81), + }, + [1102] = { [sym__expression] = STATE(1182), [sym_conditional_expression] = STATE(1182), [sym_assignment_expression] = STATE(1182), @@ -47511,69 +46845,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1182), [sym_char_literal] = STATE(1182), [sym_concatenated_string] = STATE(1182), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3386), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [sym_null] = ACTIONS(3388), - [sym_identifier] = ACTIONS(3388), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3546), + [sym_false] = ACTIONS(3546), + [sym_null] = ACTIONS(3546), + [sym_identifier] = ACTIONS(3546), + [sym_comment] = ACTIONS(81), }, - [1090] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3390), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1103] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3548), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1091] = { + [1104] = { [sym__expression] = STATE(1184), [sym_conditional_expression] = STATE(1184), [sym_assignment_expression] = STATE(1184), @@ -47593,1623 +46927,1301 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1184), [sym_char_literal] = STATE(1184), [sym_concatenated_string] = STATE(1184), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(3390), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(3392), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3394), - [sym_false] = ACTIONS(3394), - [sym_null] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3394), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3548), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3550), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3552), + [sym_comment] = ACTIONS(81), }, - [1092] = { - [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(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1105] = { + [sym_compound_statement] = STATE(753), + [sym_labeled_statement] = STATE(753), + [sym_expression_statement] = STATE(753), + [sym_if_statement] = STATE(753), + [sym_switch_statement] = STATE(753), + [sym_while_statement] = STATE(753), + [sym_do_statement] = STATE(753), + [sym_for_statement] = STATE(753), + [sym_return_statement] = STATE(753), + [sym_break_statement] = STATE(753), + [sym_continue_statement] = STATE(753), + [sym_goto_statement] = STATE(753), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(85), - }, - [1093] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3396), - [sym_comment] = ACTIONS(85), - }, - [1094] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1186), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3396), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [1095] = { - [sym__expression] = STATE(1187), - [sym_conditional_expression] = STATE(1187), - [sym_assignment_expression] = STATE(1187), - [sym_pointer_expression] = STATE(1187), - [sym_logical_expression] = STATE(1187), - [sym_bitwise_expression] = STATE(1187), - [sym_equality_expression] = STATE(1187), - [sym_relational_expression] = STATE(1187), - [sym_shift_expression] = STATE(1187), - [sym_math_expression] = STATE(1187), - [sym_cast_expression] = STATE(1187), - [sym_sizeof_expression] = STATE(1187), - [sym_subscript_expression] = STATE(1187), - [sym_call_expression] = STATE(1187), - [sym_field_expression] = STATE(1187), - [sym_compound_literal_expression] = STATE(1187), - [sym_parenthesized_expression] = STATE(1187), - [sym_char_literal] = STATE(1187), - [sym_concatenated_string] = STATE(1187), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3396), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3398), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [sym_null] = ACTIONS(3400), - [sym_identifier] = ACTIONS(3400), - [sym_comment] = ACTIONS(85), - }, - [1096] = { - [sym__declarator] = STATE(598), - [sym__abstract_declarator] = STATE(759), - [sym_pointer_declarator] = STATE(598), - [sym_abstract_pointer_declarator] = STATE(759), - [sym_function_declarator] = STATE(598), - [sym_abstract_function_declarator] = STATE(759), - [sym_array_declarator] = STATE(598), - [sym_abstract_array_declarator] = STATE(759), - [sym_type_qualifier] = STATE(1188), - [sym_parameter_list] = STATE(241), - [aux_sym_type_definition_repeat1] = STATE(1188), - [anon_sym_RPAREN] = ACTIONS(2052), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(489), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [sym_identifier] = ACTIONS(1629), - [sym_comment] = ACTIONS(85), - }, - [1097] = { - [sym_type_qualifier] = STATE(1097), - [aux_sym_type_definition_repeat1] = STATE(1097), - [anon_sym_COMMA] = ACTIONS(2261), - [anon_sym_RPAREN] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_restrict] = ACTIONS(1127), - [anon_sym_volatile] = ACTIONS(1127), - [anon_sym__Atomic] = ACTIONS(1127), - [sym_identifier] = ACTIONS(1130), - [sym_comment] = ACTIONS(85), - }, - [1098] = { - [anon_sym_COMMA] = ACTIONS(3402), - [anon_sym_RPAREN] = ACTIONS(3402), - [anon_sym_LPAREN2] = ACTIONS(3402), - [anon_sym_LBRACK] = ACTIONS(3402), - [sym_comment] = ACTIONS(85), - }, - [1099] = { - [sym__expression] = STATE(518), - [sym_conditional_expression] = STATE(518), - [sym_assignment_expression] = STATE(518), - [sym_pointer_expression] = STATE(518), - [sym_logical_expression] = STATE(518), - [sym_bitwise_expression] = STATE(518), - [sym_equality_expression] = STATE(518), - [sym_relational_expression] = STATE(518), - [sym_shift_expression] = STATE(518), - [sym_math_expression] = STATE(518), - [sym_cast_expression] = STATE(518), - [sym_sizeof_expression] = STATE(518), - [sym_subscript_expression] = STATE(518), - [sym_call_expression] = STATE(518), - [sym_field_expression] = STATE(518), - [sym_compound_literal_expression] = STATE(518), - [sym_parenthesized_expression] = STATE(518), - [sym_initializer_list] = STATE(519), - [sym_char_literal] = STATE(518), - [sym_concatenated_string] = STATE(518), - [sym_string_literal] = STATE(779), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1387), - [sym_comment] = ACTIONS(85), - }, - [1100] = { - [anon_sym_LBRACK] = ACTIONS(3404), - [anon_sym_EQ] = ACTIONS(3404), - [anon_sym_DOT] = ACTIONS(3404), - [sym_comment] = ACTIONS(85), - }, - [1101] = { - [anon_sym_RPAREN] = ACTIONS(3406), - [sym_comment] = ACTIONS(85), - }, - [1102] = { - [anon_sym_COMMA] = ACTIONS(3408), - [anon_sym_RPAREN] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym_RBRACE] = ACTIONS(3408), - [anon_sym_LPAREN2] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3410), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_RBRACK] = ACTIONS(3408), - [anon_sym_EQ] = ACTIONS(3410), - [anon_sym_COLON] = ACTIONS(3408), - [anon_sym_QMARK] = ACTIONS(3408), - [anon_sym_STAR_EQ] = ACTIONS(3408), - [anon_sym_SLASH_EQ] = ACTIONS(3408), - [anon_sym_PERCENT_EQ] = ACTIONS(3408), - [anon_sym_PLUS_EQ] = ACTIONS(3408), - [anon_sym_DASH_EQ] = ACTIONS(3408), - [anon_sym_LT_LT_EQ] = ACTIONS(3408), - [anon_sym_GT_GT_EQ] = ACTIONS(3408), - [anon_sym_AMP_EQ] = ACTIONS(3408), - [anon_sym_CARET_EQ] = ACTIONS(3408), - [anon_sym_PIPE_EQ] = ACTIONS(3408), - [anon_sym_AMP] = ACTIONS(3410), - [anon_sym_PIPE_PIPE] = ACTIONS(3408), - [anon_sym_AMP_AMP] = ACTIONS(3408), - [anon_sym_PIPE] = ACTIONS(3410), - [anon_sym_CARET] = ACTIONS(3410), - [anon_sym_EQ_EQ] = ACTIONS(3408), - [anon_sym_BANG_EQ] = ACTIONS(3408), - [anon_sym_LT] = ACTIONS(3410), - [anon_sym_GT] = ACTIONS(3410), - [anon_sym_LT_EQ] = ACTIONS(3408), - [anon_sym_GT_EQ] = ACTIONS(3408), - [anon_sym_LT_LT] = ACTIONS(3410), - [anon_sym_GT_GT] = ACTIONS(3410), - [anon_sym_PLUS] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(3410), - [anon_sym_SLASH] = ACTIONS(3410), - [anon_sym_PERCENT] = ACTIONS(3410), - [anon_sym_DASH_DASH] = ACTIONS(3408), - [anon_sym_PLUS_PLUS] = ACTIONS(3408), - [anon_sym_DOT] = ACTIONS(3408), - [anon_sym_DASH_GT] = ACTIONS(3408), - [sym_comment] = ACTIONS(85), - }, - [1103] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(3412), - [anon_sym_RBRACE] = ACTIONS(3412), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(2758), - [anon_sym_QMARK] = ACTIONS(2760), - [anon_sym_STAR_EQ] = ACTIONS(2762), - [anon_sym_SLASH_EQ] = ACTIONS(2762), - [anon_sym_PERCENT_EQ] = ACTIONS(2762), - [anon_sym_PLUS_EQ] = ACTIONS(2762), - [anon_sym_DASH_EQ] = ACTIONS(2762), - [anon_sym_LT_LT_EQ] = ACTIONS(2762), - [anon_sym_GT_GT_EQ] = ACTIONS(2762), - [anon_sym_AMP_EQ] = ACTIONS(2762), - [anon_sym_CARET_EQ] = ACTIONS(2762), - [anon_sym_PIPE_EQ] = ACTIONS(2762), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_GT] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [1104] = { - [anon_sym_COMMA] = ACTIONS(3412), - [anon_sym_RBRACE] = ACTIONS(3412), - [sym_comment] = ACTIONS(85), - }, - [1105] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(2758), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_STAR_EQ] = ACTIONS(2762), - [anon_sym_SLASH_EQ] = ACTIONS(2762), - [anon_sym_PERCENT_EQ] = ACTIONS(2762), - [anon_sym_PLUS_EQ] = ACTIONS(2762), - [anon_sym_DASH_EQ] = ACTIONS(2762), - [anon_sym_LT_LT_EQ] = ACTIONS(2762), - [anon_sym_GT_GT_EQ] = ACTIONS(2762), - [anon_sym_AMP_EQ] = ACTIONS(2762), - [anon_sym_CARET_EQ] = ACTIONS(2762), - [anon_sym_PIPE_EQ] = ACTIONS(2762), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_GT] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1370), + [sym_comment] = ACTIONS(81), }, [1106] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(3414), - [anon_sym_QMARK] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(609), - [anon_sym_SLASH_EQ] = ACTIONS(609), - [anon_sym_PERCENT_EQ] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(609), - [anon_sym_DASH_EQ] = ACTIONS(609), - [anon_sym_LT_LT_EQ] = ACTIONS(609), - [anon_sym_GT_GT_EQ] = ACTIONS(609), - [anon_sym_AMP_EQ] = ACTIONS(609), - [anon_sym_CARET_EQ] = ACTIONS(609), - [anon_sym_PIPE_EQ] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS] = ACTIONS(629), - [anon_sym_DASH] = ACTIONS(629), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [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(75), + [anon_sym_RPAREN] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [sym_null] = ACTIONS(3558), + [sym_identifier] = ACTIONS(3558), + [sym_comment] = ACTIONS(81), }, [1107] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_EQ_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_GT] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3560), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1108] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1717), - [anon_sym_STAR_EQ] = ACTIONS(1717), - [anon_sym_SLASH_EQ] = ACTIONS(1717), - [anon_sym_PERCENT_EQ] = ACTIONS(1717), - [anon_sym_PLUS_EQ] = ACTIONS(1717), - [anon_sym_DASH_EQ] = ACTIONS(1717), - [anon_sym_LT_LT_EQ] = ACTIONS(1717), - [anon_sym_GT_GT_EQ] = ACTIONS(1717), - [anon_sym_AMP_EQ] = ACTIONS(1717), - [anon_sym_CARET_EQ] = ACTIONS(1717), - [anon_sym_PIPE_EQ] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_GT] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [sym__expression] = STATE(1188), + [sym_conditional_expression] = STATE(1188), + [sym_assignment_expression] = STATE(1188), + [sym_pointer_expression] = STATE(1188), + [sym_logical_expression] = STATE(1188), + [sym_bitwise_expression] = STATE(1188), + [sym_equality_expression] = STATE(1188), + [sym_relational_expression] = STATE(1188), + [sym_shift_expression] = STATE(1188), + [sym_math_expression] = STATE(1188), + [sym_cast_expression] = STATE(1188), + [sym_sizeof_expression] = STATE(1188), + [sym_subscript_expression] = STATE(1188), + [sym_call_expression] = STATE(1188), + [sym_field_expression] = STATE(1188), + [sym_compound_literal_expression] = STATE(1188), + [sym_parenthesized_expression] = STATE(1188), + [sym_char_literal] = STATE(1188), + [sym_concatenated_string] = STATE(1188), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3560), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3562), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_null] = ACTIONS(3564), + [sym_identifier] = ACTIONS(3564), + [sym_comment] = ACTIONS(81), }, [1109] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1717), - [anon_sym_STAR_EQ] = ACTIONS(1717), - [anon_sym_SLASH_EQ] = ACTIONS(1717), - [anon_sym_PERCENT_EQ] = ACTIONS(1717), - [anon_sym_PLUS_EQ] = ACTIONS(1717), - [anon_sym_DASH_EQ] = ACTIONS(1717), - [anon_sym_LT_LT_EQ] = ACTIONS(1717), - [anon_sym_GT_GT_EQ] = ACTIONS(1717), - [anon_sym_AMP_EQ] = ACTIONS(1717), - [anon_sym_CARET_EQ] = ACTIONS(1717), - [anon_sym_PIPE_EQ] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_GT] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [sym_compound_statement] = STATE(1113), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(173), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(181), + [sym_comment] = ACTIONS(81), }, [1110] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_GT] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3566), + [sym_comment] = ACTIONS(81), }, [1111] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1715), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1713), - [anon_sym_SLASH_EQ] = ACTIONS(1713), - [anon_sym_PERCENT_EQ] = ACTIONS(1713), - [anon_sym_PLUS_EQ] = ACTIONS(1713), - [anon_sym_DASH_EQ] = ACTIONS(1713), - [anon_sym_LT_LT_EQ] = ACTIONS(1713), - [anon_sym_GT_GT_EQ] = ACTIONS(1713), - [anon_sym_AMP_EQ] = ACTIONS(1713), - [anon_sym_CARET_EQ] = ACTIONS(1713), - [anon_sym_PIPE_EQ] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(1713), - [anon_sym_AMP_AMP] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_CARET] = ACTIONS(1715), - [anon_sym_EQ_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_GT] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1190), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3566), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1112] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1723), - [anon_sym_QMARK] = ACTIONS(1721), - [anon_sym_STAR_EQ] = ACTIONS(1721), - [anon_sym_SLASH_EQ] = ACTIONS(1721), - [anon_sym_PERCENT_EQ] = ACTIONS(1721), - [anon_sym_PLUS_EQ] = ACTIONS(1721), - [anon_sym_DASH_EQ] = ACTIONS(1721), - [anon_sym_LT_LT_EQ] = ACTIONS(1721), - [anon_sym_GT_GT_EQ] = ACTIONS(1721), - [anon_sym_AMP_EQ] = ACTIONS(1721), - [anon_sym_CARET_EQ] = ACTIONS(1721), - [anon_sym_PIPE_EQ] = ACTIONS(1721), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_PIPE_PIPE] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1721), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1721), - [anon_sym_BANG_EQ] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_GT] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [sym__expression] = STATE(1191), + [sym_conditional_expression] = STATE(1191), + [sym_assignment_expression] = STATE(1191), + [sym_pointer_expression] = STATE(1191), + [sym_logical_expression] = STATE(1191), + [sym_bitwise_expression] = STATE(1191), + [sym_equality_expression] = STATE(1191), + [sym_relational_expression] = STATE(1191), + [sym_shift_expression] = STATE(1191), + [sym_math_expression] = STATE(1191), + [sym_cast_expression] = STATE(1191), + [sym_sizeof_expression] = STATE(1191), + [sym_subscript_expression] = STATE(1191), + [sym_call_expression] = STATE(1191), + [sym_field_expression] = STATE(1191), + [sym_compound_literal_expression] = STATE(1191), + [sym_parenthesized_expression] = STATE(1191), + [sym_char_literal] = STATE(1191), + [sym_concatenated_string] = STATE(1191), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3566), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3568), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [sym_null] = ACTIONS(3570), + [sym_identifier] = ACTIONS(3570), + [sym_comment] = ACTIONS(81), }, [1113] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1727), - [anon_sym_QMARK] = ACTIONS(1725), - [anon_sym_STAR_EQ] = ACTIONS(1725), - [anon_sym_SLASH_EQ] = ACTIONS(1725), - [anon_sym_PERCENT_EQ] = ACTIONS(1725), - [anon_sym_PLUS_EQ] = ACTIONS(1725), - [anon_sym_DASH_EQ] = ACTIONS(1725), - [anon_sym_LT_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_GT_EQ] = ACTIONS(1725), - [anon_sym_AMP_EQ] = ACTIONS(1725), - [anon_sym_CARET_EQ] = ACTIONS(1725), - [anon_sym_PIPE_EQ] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_PIPE_PIPE] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1725), - [anon_sym_BANG_EQ] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(1725), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [ts_builtin_sym_end] = ACTIONS(3572), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3574), + [sym_preproc_directive] = ACTIONS(3574), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym_typedef] = ACTIONS(3574), + [anon_sym_extern] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_RBRACE] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3574), + [anon_sym_auto] = ACTIONS(3574), + [anon_sym_register] = ACTIONS(3574), + [anon_sym_inline] = ACTIONS(3574), + [anon_sym_const] = ACTIONS(3574), + [anon_sym_restrict] = ACTIONS(3574), + [anon_sym_volatile] = ACTIONS(3574), + [anon_sym__Atomic] = ACTIONS(3574), + [anon_sym_unsigned] = ACTIONS(3574), + [anon_sym_long] = ACTIONS(3574), + [anon_sym_short] = ACTIONS(3574), + [sym_primitive_type] = ACTIONS(3574), + [anon_sym_enum] = ACTIONS(3574), + [anon_sym_struct] = ACTIONS(3574), + [anon_sym_union] = ACTIONS(3574), + [anon_sym_if] = ACTIONS(3574), + [anon_sym_else] = ACTIONS(3574), + [anon_sym_switch] = ACTIONS(3574), + [anon_sym_case] = ACTIONS(3574), + [anon_sym_default] = ACTIONS(3574), + [anon_sym_while] = ACTIONS(3574), + [anon_sym_do] = ACTIONS(3574), + [anon_sym_for] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3574), + [anon_sym_break] = ACTIONS(3574), + [anon_sym_continue] = ACTIONS(3574), + [anon_sym_goto] = ACTIONS(3574), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [sym_number_literal] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [sym_true] = ACTIONS(3574), + [sym_false] = ACTIONS(3574), + [sym_null] = ACTIONS(3574), + [sym_identifier] = ACTIONS(3574), + [sym_comment] = ACTIONS(81), }, [1114] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1729), - [anon_sym_RBRACE] = ACTIONS(1729), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_STAR_EQ] = ACTIONS(1729), - [anon_sym_SLASH_EQ] = ACTIONS(1729), - [anon_sym_PERCENT_EQ] = ACTIONS(1729), - [anon_sym_PLUS_EQ] = ACTIONS(1729), - [anon_sym_DASH_EQ] = ACTIONS(1729), - [anon_sym_LT_LT_EQ] = ACTIONS(1729), - [anon_sym_GT_GT_EQ] = ACTIONS(1729), - [anon_sym_AMP_EQ] = ACTIONS(1729), - [anon_sym_CARET_EQ] = ACTIONS(1729), - [anon_sym_PIPE_EQ] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_CARET] = ACTIONS(1731), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_GT] = ACTIONS(1731), - [anon_sym_LT_EQ] = ACTIONS(1729), - [anon_sym_GT_EQ] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1731), - [anon_sym_GT_GT] = ACTIONS(1731), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [sym_compound_statement] = STATE(1192), + [sym_labeled_statement] = STATE(1192), + [sym_expression_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_break_statement] = STATE(1192), + [sym_continue_statement] = STATE(1192), + [sym_goto_statement] = STATE(1192), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(43), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(81), }, [1115] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1669), - [anon_sym_STAR_EQ] = ACTIONS(1669), - [anon_sym_SLASH_EQ] = ACTIONS(1669), - [anon_sym_PERCENT_EQ] = ACTIONS(1669), - [anon_sym_PLUS_EQ] = ACTIONS(1669), - [anon_sym_DASH_EQ] = ACTIONS(1669), - [anon_sym_LT_LT_EQ] = ACTIONS(1669), - [anon_sym_GT_GT_EQ] = ACTIONS(1669), - [anon_sym_AMP_EQ] = ACTIONS(1669), - [anon_sym_CARET_EQ] = ACTIONS(1669), - [anon_sym_PIPE_EQ] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_PIPE_PIPE] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_CARET] = ACTIONS(1671), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [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(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3576), + [sym_comment] = ACTIONS(81), }, [1116] = { - [sym__expression] = STATE(1103), - [sym_conditional_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1103), - [sym_pointer_expression] = STATE(1103), - [sym_logical_expression] = STATE(1103), - [sym_bitwise_expression] = STATE(1103), - [sym_equality_expression] = STATE(1103), - [sym_relational_expression] = STATE(1103), - [sym_shift_expression] = STATE(1103), - [sym_math_expression] = STATE(1103), - [sym_cast_expression] = STATE(1103), - [sym_sizeof_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_call_expression] = STATE(1103), - [sym_field_expression] = STATE(1103), - [sym_compound_literal_expression] = STATE(1103), - [sym_parenthesized_expression] = STATE(1103), - [sym_initializer_list] = STATE(1104), - [sym_initializer_pair] = STATE(1104), - [sym_subscript_designator] = STATE(780), - [sym_field_designator] = STATE(780), - [sym_char_literal] = STATE(1103), - [sym_concatenated_string] = STATE(1103), - [sym_string_literal] = STATE(779), - [aux_sym_initializer_pair_repeat1] = STATE(780), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(3416), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [anon_sym_DOT] = ACTIONS(2088), - [sym_number_literal] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3153), - [sym_false] = ACTIONS(3153), - [sym_null] = ACTIONS(3153), - [sym_identifier] = ACTIONS(3153), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1194), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3576), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1117] = { - [aux_sym_initializer_list_repeat1] = STATE(1117), - [anon_sym_COMMA] = ACTIONS(3418), - [anon_sym_RBRACE] = ACTIONS(3412), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_EQ_EQ] = ACTIONS(1537), + [anon_sym_BANG_EQ] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1118] = { - [sym_string_literal] = STATE(1118), - [aux_sym_concatenated_string_repeat1] = STATE(1118), - [anon_sym_COMMA] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1739), - [anon_sym_QMARK] = ACTIONS(1737), - [anon_sym_STAR_EQ] = ACTIONS(1737), - [anon_sym_SLASH_EQ] = ACTIONS(1737), - [anon_sym_PERCENT_EQ] = ACTIONS(1737), - [anon_sym_PLUS_EQ] = ACTIONS(1737), - [anon_sym_DASH_EQ] = ACTIONS(1737), - [anon_sym_LT_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_GT_EQ] = ACTIONS(1737), - [anon_sym_AMP_EQ] = ACTIONS(1737), - [anon_sym_CARET_EQ] = ACTIONS(1737), - [anon_sym_PIPE_EQ] = ACTIONS(1737), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_PIPE_PIPE] = ACTIONS(1737), - [anon_sym_AMP_AMP] = ACTIONS(1737), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_CARET] = ACTIONS(1739), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_GT] = ACTIONS(1739), - [anon_sym_LT_EQ] = ACTIONS(1737), - [anon_sym_GT_EQ] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1739), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_PERCENT] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DOT] = ACTIONS(1737), - [anon_sym_DASH_GT] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_COLON] = ACTIONS(2868), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_LT_LT_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_AMP_EQ] = ACTIONS(1563), + [anon_sym_CARET_EQ] = ACTIONS(1563), + [anon_sym_PIPE_EQ] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1119] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(2758), - [anon_sym_QMARK] = ACTIONS(2760), - [anon_sym_STAR_EQ] = ACTIONS(2762), - [anon_sym_SLASH_EQ] = ACTIONS(2762), - [anon_sym_PERCENT_EQ] = ACTIONS(2762), - [anon_sym_PLUS_EQ] = ACTIONS(2762), - [anon_sym_DASH_EQ] = ACTIONS(2762), - [anon_sym_LT_LT_EQ] = ACTIONS(2762), - [anon_sym_GT_GT_EQ] = ACTIONS(2762), - [anon_sym_AMP_EQ] = ACTIONS(2762), - [anon_sym_CARET_EQ] = ACTIONS(2762), - [anon_sym_PIPE_EQ] = ACTIONS(2762), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_GT] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2244), + [sym_preproc_directive] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_typedef] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_LPAREN2] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_auto] = ACTIONS(2244), + [anon_sym_register] = ACTIONS(2244), + [anon_sym_inline] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_restrict] = ACTIONS(2244), + [anon_sym_volatile] = ACTIONS(2244), + [anon_sym__Atomic] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [anon_sym_struct] = ACTIONS(2244), + [anon_sym_union] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_switch] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_goto] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_PLUS] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_sizeof] = ACTIONS(2244), + [sym_number_literal] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym_true] = ACTIONS(2244), + [sym_false] = ACTIONS(2244), + [sym_null] = ACTIONS(2244), + [sym_identifier] = ACTIONS(2244), + [sym_comment] = ACTIONS(81), }, [1120] = { - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2401), + [sym_preproc_directive] = ACTIONS(2401), + [anon_sym_SEMI] = ACTIONS(2399), + [anon_sym_typedef] = ACTIONS(2401), + [anon_sym_extern] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2399), + [anon_sym_LPAREN2] = ACTIONS(2399), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_auto] = ACTIONS(2401), + [anon_sym_register] = ACTIONS(2401), + [anon_sym_inline] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_restrict] = ACTIONS(2401), + [anon_sym_volatile] = ACTIONS(2401), + [anon_sym__Atomic] = ACTIONS(2401), + [anon_sym_unsigned] = ACTIONS(2401), + [anon_sym_long] = ACTIONS(2401), + [anon_sym_short] = ACTIONS(2401), + [sym_primitive_type] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_switch] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [anon_sym_do] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_goto] = ACTIONS(2401), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_BANG] = ACTIONS(2399), + [anon_sym_TILDE] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(2401), + [anon_sym_DASH] = ACTIONS(2401), + [anon_sym_DASH_DASH] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(2399), + [anon_sym_sizeof] = ACTIONS(2401), + [sym_number_literal] = ACTIONS(2399), + [anon_sym_SQUOTE] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2399), + [sym_true] = ACTIONS(2401), + [sym_false] = ACTIONS(2401), + [sym_null] = ACTIONS(2401), + [sym_identifier] = ACTIONS(2401), + [sym_comment] = ACTIONS(81), }, [1121] = { - [sym_preproc_if_in_field_declaration_list] = STATE(1121), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1121), - [sym__declaration_specifiers] = STATE(268), - [sym_storage_class_specifier] = STATE(271), - [sym_type_qualifier] = STATE(271), - [sym__type_specifier] = STATE(269), - [sym_sized_type_specifier] = STATE(269), - [sym_enum_specifier] = STATE(269), - [sym_struct_specifier] = STATE(269), - [sym_union_specifier] = STATE(269), - [sym__field_declaration_list_item] = STATE(1121), - [sym_field_declaration] = STATE(1121), - [sym_macro_type_specifier] = STATE(269), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1121), - [aux_sym__declaration_specifiers_repeat1] = STATE(271), - [aux_sym_sized_type_specifier_repeat1] = STATE(272), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2150), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2159), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2153), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2153), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_auto] = ACTIONS(2156), - [anon_sym_register] = ACTIONS(2156), - [anon_sym_inline] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_restrict] = ACTIONS(2161), - [anon_sym_volatile] = ACTIONS(2161), - [anon_sym__Atomic] = ACTIONS(2161), - [anon_sym_unsigned] = ACTIONS(2164), - [anon_sym_long] = ACTIONS(2164), - [anon_sym_short] = ACTIONS(2164), - [sym_primitive_type] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2170), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_union] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2179), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2403), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_LPAREN2] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_auto] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_AMP] = ACTIONS(2403), + [anon_sym_BANG] = ACTIONS(2403), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2403), + [anon_sym_PLUS_PLUS] = ACTIONS(2403), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(2403), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_identifier] = ACTIONS(2405), + [sym_comment] = ACTIONS(81), }, [1122] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3423), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2423), + [sym_preproc_directive] = ACTIONS(2423), + [anon_sym_SEMI] = ACTIONS(2421), + [anon_sym_typedef] = ACTIONS(2423), + [anon_sym_extern] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2421), + [anon_sym_LPAREN2] = ACTIONS(2421), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2423), + [anon_sym_auto] = ACTIONS(2423), + [anon_sym_register] = ACTIONS(2423), + [anon_sym_inline] = ACTIONS(2423), + [anon_sym_const] = ACTIONS(2423), + [anon_sym_restrict] = ACTIONS(2423), + [anon_sym_volatile] = ACTIONS(2423), + [anon_sym__Atomic] = ACTIONS(2423), + [anon_sym_unsigned] = ACTIONS(2423), + [anon_sym_long] = ACTIONS(2423), + [anon_sym_short] = ACTIONS(2423), + [sym_primitive_type] = ACTIONS(2423), + [anon_sym_enum] = ACTIONS(2423), + [anon_sym_struct] = ACTIONS(2423), + [anon_sym_union] = ACTIONS(2423), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_switch] = ACTIONS(2423), + [anon_sym_while] = ACTIONS(2423), + [anon_sym_do] = ACTIONS(2423), + [anon_sym_for] = ACTIONS(2423), + [anon_sym_return] = ACTIONS(2423), + [anon_sym_break] = ACTIONS(2423), + [anon_sym_continue] = ACTIONS(2423), + [anon_sym_goto] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2421), + [anon_sym_BANG] = ACTIONS(2421), + [anon_sym_TILDE] = ACTIONS(2421), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(2421), + [anon_sym_PLUS_PLUS] = ACTIONS(2421), + [anon_sym_sizeof] = ACTIONS(2423), + [sym_number_literal] = ACTIONS(2421), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [sym_true] = ACTIONS(2423), + [sym_false] = ACTIONS(2423), + [sym_null] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2423), + [sym_comment] = ACTIONS(81), }, [1123] = { - [sym_preproc_if_in_field_declaration_list] = STATE(994), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(994), - [sym_preproc_else_in_field_declaration_list] = STATE(1193), - [sym_preproc_elif_in_field_declaration_list] = STATE(1193), - [sym__declaration_specifiers] = STATE(268), - [sym_storage_class_specifier] = STATE(271), - [sym_type_qualifier] = STATE(271), - [sym__type_specifier] = STATE(269), - [sym_sized_type_specifier] = STATE(269), - [sym_enum_specifier] = STATE(269), - [sym_struct_specifier] = STATE(269), - [sym_union_specifier] = STATE(269), - [sym__field_declaration_list_item] = STATE(994), - [sym_field_declaration] = STATE(994), - [sym_macro_type_specifier] = STATE(269), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(994), - [aux_sym__declaration_specifiers_repeat1] = STATE(271), - [aux_sym_sized_type_specifier_repeat1] = STATE(272), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(549), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3423), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(551), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2118), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2120), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [sym_primitive_type] = ACTIONS(557), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [sym_identifier] = ACTIONS(111), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2427), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2427), + [sym_preproc_directive] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2425), + [anon_sym_typedef] = ACTIONS(2427), + [anon_sym_extern] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2425), + [anon_sym_LPAREN2] = ACTIONS(2425), + [anon_sym_STAR] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2427), + [anon_sym_auto] = ACTIONS(2427), + [anon_sym_register] = ACTIONS(2427), + [anon_sym_inline] = ACTIONS(2427), + [anon_sym_const] = ACTIONS(2427), + [anon_sym_restrict] = ACTIONS(2427), + [anon_sym_volatile] = ACTIONS(2427), + [anon_sym__Atomic] = ACTIONS(2427), + [anon_sym_unsigned] = ACTIONS(2427), + [anon_sym_long] = ACTIONS(2427), + [anon_sym_short] = ACTIONS(2427), + [sym_primitive_type] = ACTIONS(2427), + [anon_sym_enum] = ACTIONS(2427), + [anon_sym_struct] = ACTIONS(2427), + [anon_sym_union] = ACTIONS(2427), + [anon_sym_if] = ACTIONS(2427), + [anon_sym_switch] = ACTIONS(2427), + [anon_sym_while] = ACTIONS(2427), + [anon_sym_do] = ACTIONS(2427), + [anon_sym_for] = ACTIONS(2427), + [anon_sym_return] = ACTIONS(2427), + [anon_sym_break] = ACTIONS(2427), + [anon_sym_continue] = ACTIONS(2427), + [anon_sym_goto] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2425), + [anon_sym_BANG] = ACTIONS(2425), + [anon_sym_TILDE] = ACTIONS(2425), + [anon_sym_PLUS] = ACTIONS(2427), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_DASH_DASH] = ACTIONS(2425), + [anon_sym_PLUS_PLUS] = ACTIONS(2425), + [anon_sym_sizeof] = ACTIONS(2427), + [sym_number_literal] = ACTIONS(2425), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2425), + [sym_true] = ACTIONS(2427), + [sym_false] = ACTIONS(2427), + [sym_null] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2427), + [sym_comment] = ACTIONS(81), }, [1124] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3425), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3427), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3427), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3427), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3427), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3427), - [anon_sym_extern] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_auto] = ACTIONS(3425), - [anon_sym_register] = ACTIONS(3425), - [anon_sym_inline] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3425), - [anon_sym_restrict] = ACTIONS(3425), - [anon_sym_volatile] = ACTIONS(3425), - [anon_sym__Atomic] = ACTIONS(3425), - [anon_sym_unsigned] = ACTIONS(3425), - [anon_sym_long] = ACTIONS(3425), - [anon_sym_short] = ACTIONS(3425), - [sym_primitive_type] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), - [anon_sym_struct] = ACTIONS(3425), - [anon_sym_union] = ACTIONS(3425), - [sym_identifier] = ACTIONS(3425), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(3578), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_null] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1338), + [sym_comment] = ACTIONS(81), }, [1125] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3429), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3431), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3431), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3431), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3431), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3431), - [anon_sym_extern] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3431), - [anon_sym_static] = ACTIONS(3429), - [anon_sym_auto] = ACTIONS(3429), - [anon_sym_register] = ACTIONS(3429), - [anon_sym_inline] = ACTIONS(3429), - [anon_sym_const] = ACTIONS(3429), - [anon_sym_restrict] = ACTIONS(3429), - [anon_sym_volatile] = ACTIONS(3429), - [anon_sym__Atomic] = ACTIONS(3429), - [anon_sym_unsigned] = ACTIONS(3429), - [anon_sym_long] = ACTIONS(3429), - [anon_sym_short] = ACTIONS(3429), - [sym_primitive_type] = ACTIONS(3429), - [anon_sym_enum] = ACTIONS(3429), - [anon_sym_struct] = ACTIONS(3429), - [anon_sym_union] = ACTIONS(3429), - [sym_identifier] = ACTIONS(3429), - [sym_comment] = ACTIONS(85), + [sym__expression] = STATE(1197), + [sym_conditional_expression] = STATE(1197), + [sym_assignment_expression] = STATE(1197), + [sym_pointer_expression] = STATE(1197), + [sym_logical_expression] = STATE(1197), + [sym_bitwise_expression] = STATE(1197), + [sym_equality_expression] = STATE(1197), + [sym_relational_expression] = STATE(1197), + [sym_shift_expression] = STATE(1197), + [sym_math_expression] = STATE(1197), + [sym_cast_expression] = STATE(1197), + [sym_sizeof_expression] = STATE(1197), + [sym_subscript_expression] = STATE(1197), + [sym_call_expression] = STATE(1197), + [sym_field_expression] = STATE(1197), + [sym_compound_literal_expression] = STATE(1197), + [sym_parenthesized_expression] = STATE(1197), + [sym_char_literal] = STATE(1197), + [sym_concatenated_string] = STATE(1197), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3584), + [sym_false] = ACTIONS(3584), + [sym_null] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3584), + [sym_comment] = ACTIONS(81), }, [1126] = { - [anon_sym_COMMA] = ACTIONS(3433), - [anon_sym_RPAREN] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_LPAREN2] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_COLON] = ACTIONS(3433), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1127] = { - [sym__expression] = STATE(83), - [sym_conditional_expression] = STATE(83), - [sym_assignment_expression] = STATE(83), - [sym_pointer_expression] = STATE(83), - [sym_logical_expression] = STATE(83), - [sym_bitwise_expression] = STATE(83), - [sym_equality_expression] = STATE(83), - [sym_relational_expression] = STATE(83), - [sym_shift_expression] = STATE(83), - [sym_math_expression] = STATE(83), - [sym_cast_expression] = STATE(83), - [sym_sizeof_expression] = STATE(83), - [sym_subscript_expression] = STATE(83), - [sym_call_expression] = STATE(83), - [sym_field_expression] = STATE(83), - [sym_compound_literal_expression] = STATE(83), - [sym_parenthesized_expression] = STATE(83), - [sym_char_literal] = STATE(83), - [sym_concatenated_string] = STATE(83), - [sym_string_literal] = STATE(369), - [anon_sym_LPAREN2] = ACTIONS(771), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_sizeof] = ACTIONS(783), - [sym_number_literal] = ACTIONS(159), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(161), - [sym_false] = ACTIONS(161), - [sym_null] = ACTIONS(161), - [sym_identifier] = ACTIONS(161), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2704), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2704), + [sym_preproc_directive] = ACTIONS(2704), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_typedef] = ACTIONS(2704), + [anon_sym_extern] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2702), + [anon_sym_LPAREN2] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2702), + [anon_sym_static] = ACTIONS(2704), + [anon_sym_auto] = ACTIONS(2704), + [anon_sym_register] = ACTIONS(2704), + [anon_sym_inline] = ACTIONS(2704), + [anon_sym_const] = ACTIONS(2704), + [anon_sym_restrict] = ACTIONS(2704), + [anon_sym_volatile] = ACTIONS(2704), + [anon_sym__Atomic] = ACTIONS(2704), + [anon_sym_unsigned] = ACTIONS(2704), + [anon_sym_long] = ACTIONS(2704), + [anon_sym_short] = ACTIONS(2704), + [sym_primitive_type] = ACTIONS(2704), + [anon_sym_enum] = ACTIONS(2704), + [anon_sym_struct] = ACTIONS(2704), + [anon_sym_union] = ACTIONS(2704), + [anon_sym_if] = ACTIONS(2704), + [anon_sym_else] = ACTIONS(2704), + [anon_sym_switch] = ACTIONS(2704), + [anon_sym_while] = ACTIONS(2704), + [anon_sym_do] = ACTIONS(2704), + [anon_sym_for] = ACTIONS(2704), + [anon_sym_return] = ACTIONS(2704), + [anon_sym_break] = ACTIONS(2704), + [anon_sym_continue] = ACTIONS(2704), + [anon_sym_goto] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(2702), + [anon_sym_BANG] = ACTIONS(2702), + [anon_sym_TILDE] = ACTIONS(2702), + [anon_sym_PLUS] = ACTIONS(2704), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_DASH_DASH] = ACTIONS(2702), + [anon_sym_PLUS_PLUS] = ACTIONS(2702), + [anon_sym_sizeof] = ACTIONS(2704), + [sym_number_literal] = ACTIONS(2702), + [anon_sym_SQUOTE] = ACTIONS(2702), + [anon_sym_DQUOTE] = ACTIONS(2702), + [sym_true] = ACTIONS(2704), + [sym_false] = ACTIONS(2704), + [sym_null] = ACTIONS(2704), + [sym_identifier] = ACTIONS(2704), + [sym_comment] = ACTIONS(81), }, [1128] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(3435), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1685), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PERCENT_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_CARET_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2736), + [sym_preproc_directive] = ACTIONS(2736), + [anon_sym_SEMI] = ACTIONS(2734), + [anon_sym_typedef] = ACTIONS(2736), + [anon_sym_extern] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(2734), + [anon_sym_static] = ACTIONS(2736), + [anon_sym_auto] = ACTIONS(2736), + [anon_sym_register] = ACTIONS(2736), + [anon_sym_inline] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2736), + [anon_sym_restrict] = ACTIONS(2736), + [anon_sym_volatile] = ACTIONS(2736), + [anon_sym__Atomic] = ACTIONS(2736), + [anon_sym_unsigned] = ACTIONS(2736), + [anon_sym_long] = ACTIONS(2736), + [anon_sym_short] = ACTIONS(2736), + [sym_primitive_type] = ACTIONS(2736), + [anon_sym_enum] = ACTIONS(2736), + [anon_sym_struct] = ACTIONS(2736), + [anon_sym_union] = ACTIONS(2736), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_else] = ACTIONS(2736), + [anon_sym_switch] = ACTIONS(2736), + [anon_sym_while] = ACTIONS(2736), + [anon_sym_do] = ACTIONS(2736), + [anon_sym_for] = ACTIONS(2736), + [anon_sym_return] = ACTIONS(2736), + [anon_sym_break] = ACTIONS(2736), + [anon_sym_continue] = ACTIONS(2736), + [anon_sym_goto] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2734), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_DASH_DASH] = ACTIONS(2734), + [anon_sym_PLUS_PLUS] = ACTIONS(2734), + [anon_sym_sizeof] = ACTIONS(2736), + [sym_number_literal] = ACTIONS(2734), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_DQUOTE] = ACTIONS(2734), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_null] = ACTIONS(2736), + [sym_identifier] = ACTIONS(2736), + [sym_comment] = ACTIONS(81), }, [1129] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3437), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3439), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3439), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3439), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3439), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3439), - [anon_sym_extern] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3439), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_auto] = ACTIONS(3437), - [anon_sym_register] = ACTIONS(3437), - [anon_sym_inline] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_restrict] = ACTIONS(3437), - [anon_sym_volatile] = ACTIONS(3437), - [anon_sym__Atomic] = ACTIONS(3437), - [anon_sym_unsigned] = ACTIONS(3437), - [anon_sym_long] = ACTIONS(3437), - [anon_sym_short] = ACTIONS(3437), - [sym_primitive_type] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_union] = ACTIONS(3437), - [sym_identifier] = ACTIONS(3437), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(447), + [anon_sym_RPAREN] = ACTIONS(3588), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1130] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(3588), + [sym_comment] = ACTIONS(81), }, [1131] = { - [sym_compound_statement] = STATE(1023), - [sym_labeled_statement] = STATE(1023), - [sym_expression_statement] = STATE(1023), - [sym_if_statement] = STATE(1023), - [sym_switch_statement] = STATE(1023), - [sym_case_statement] = STATE(1023), - [sym_while_statement] = STATE(1023), - [sym_do_statement] = STATE(1023), - [sym_for_statement] = STATE(1023), - [sym_return_statement] = STATE(1023), - [sym_break_statement] = STATE(1023), - [sym_continue_statement] = STATE(1023), - [sym_goto_statement] = STATE(1023), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), + [sym_compound_statement] = STATE(1200), + [sym_labeled_statement] = STATE(1200), + [sym_expression_statement] = STATE(1200), + [sym_if_statement] = STATE(1200), + [sym_switch_statement] = STATE(1200), + [sym_while_statement] = STATE(1200), + [sym_do_statement] = STATE(1200), + [sym_for_statement] = STATE(1200), + [sym_return_statement] = STATE(1200), + [sym_break_statement] = STATE(1200), + [sym_continue_statement] = STATE(1200), + [sym_goto_statement] = STATE(1200), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(589), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2292), + [sym_comment] = ACTIONS(81), }, [1132] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1197), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1202), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3590), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, [1133] = { - [sym__expression] = STATE(1198), - [sym_conditional_expression] = STATE(1198), - [sym_assignment_expression] = STATE(1198), - [sym_pointer_expression] = STATE(1198), - [sym_logical_expression] = STATE(1198), - [sym_bitwise_expression] = STATE(1198), - [sym_equality_expression] = STATE(1198), - [sym_relational_expression] = STATE(1198), - [sym_shift_expression] = STATE(1198), - [sym_math_expression] = STATE(1198), - [sym_cast_expression] = STATE(1198), - [sym_sizeof_expression] = STATE(1198), - [sym_subscript_expression] = STATE(1198), - [sym_call_expression] = STATE(1198), - [sym_field_expression] = STATE(1198), - [sym_compound_literal_expression] = STATE(1198), - [sym_parenthesized_expression] = STATE(1198), - [sym_char_literal] = STATE(1198), - [sym_concatenated_string] = STATE(1198), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3447), - [sym_false] = ACTIONS(3447), - [sym_null] = ACTIONS(3447), - [sym_identifier] = ACTIONS(3447), - [sym_comment] = ACTIONS(85), - }, - [1134] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [1135] = { - [sym_compound_statement] = STATE(812), - [sym_labeled_statement] = STATE(812), - [sym_expression_statement] = STATE(812), - [sym_if_statement] = STATE(812), - [sym_switch_statement] = STATE(812), - [sym_case_statement] = STATE(812), - [sym_while_statement] = STATE(812), - [sym_do_statement] = STATE(812), - [sym_for_statement] = STATE(812), - [sym_return_statement] = STATE(812), - [sym_break_statement] = STATE(812), - [sym_continue_statement] = STATE(812), - [sym_goto_statement] = STATE(812), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1528), - [sym_comment] = ACTIONS(85), - }, - [1136] = { - [sym__expression] = STATE(1201), - [sym_conditional_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1201), - [sym_pointer_expression] = STATE(1201), - [sym_logical_expression] = STATE(1201), - [sym_bitwise_expression] = STATE(1201), - [sym_equality_expression] = STATE(1201), - [sym_relational_expression] = STATE(1201), - [sym_shift_expression] = STATE(1201), - [sym_math_expression] = STATE(1201), - [sym_cast_expression] = STATE(1201), - [sym_sizeof_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_call_expression] = STATE(1201), - [sym_field_expression] = STATE(1201), - [sym_compound_literal_expression] = STATE(1201), - [sym_parenthesized_expression] = STATE(1201), - [sym_char_literal] = STATE(1201), - [sym_concatenated_string] = STATE(1201), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3451), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3453), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3455), - [sym_false] = ACTIONS(3455), - [sym_null] = ACTIONS(3455), - [sym_identifier] = ACTIONS(3455), - [sym_comment] = ACTIONS(85), - }, - [1137] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [1138] = { [sym__expression] = STATE(1203), [sym_conditional_expression] = STATE(1203), [sym_assignment_expression] = STATE(1203), @@ -49229,144 +48241,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1203), [sym_char_literal] = STATE(1203), [sym_concatenated_string] = STATE(1203), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3461), - [sym_false] = ACTIONS(3461), - [sym_null] = ACTIONS(3461), - [sym_identifier] = ACTIONS(3461), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3590), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3592), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3594), + [sym_false] = ACTIONS(3594), + [sym_null] = ACTIONS(3594), + [sym_identifier] = ACTIONS(3594), + [sym_comment] = ACTIONS(81), }, - [1139] = { - [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(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), + [1134] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3596), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1135] = { + [sym_compound_statement] = STATE(1024), + [sym_labeled_statement] = STATE(1024), + [sym_expression_statement] = STATE(1024), + [sym_if_statement] = STATE(1024), + [sym_switch_statement] = STATE(1024), + [sym_while_statement] = STATE(1024), + [sym_do_statement] = STATE(1024), + [sym_for_statement] = STATE(1024), + [sym_return_statement] = STATE(1024), + [sym_break_statement] = STATE(1024), + [sym_continue_statement] = STATE(1024), + [sym_goto_statement] = STATE(1024), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(201), - [anon_sym_switch] = ACTIONS(203), - [anon_sym_case] = ACTIONS(205), - [anon_sym_default] = ACTIONS(207), - [anon_sym_while] = ACTIONS(209), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(213), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(215), - [sym_comment] = ACTIONS(85), - }, - [1140] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3463), - [sym_comment] = ACTIONS(85), - }, - [1141] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1205), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3463), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1706), + [sym_comment] = ACTIONS(81), }, - [1142] = { + [1136] = { [sym__expression] = STATE(1206), [sym_conditional_expression] = STATE(1206), [sym_assignment_expression] = STATE(1206), @@ -49386,737 +48387,339 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1206), [sym_char_literal] = STATE(1206), [sym_concatenated_string] = STATE(1206), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3463), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3465), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3467), - [sym_false] = ACTIONS(3467), - [sym_null] = ACTIONS(3467), - [sym_identifier] = ACTIONS(3467), - [sym_comment] = ACTIONS(85), - }, - [1143] = { - [ts_builtin_sym_end] = ACTIONS(3469), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3471), - [sym_preproc_directive] = ACTIONS(3471), - [anon_sym_SEMI] = ACTIONS(3469), - [anon_sym_typedef] = ACTIONS(3471), - [anon_sym_extern] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_RBRACE] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3469), - [anon_sym_STAR] = ACTIONS(3469), - [anon_sym_static] = ACTIONS(3471), - [anon_sym_auto] = ACTIONS(3471), - [anon_sym_register] = ACTIONS(3471), - [anon_sym_inline] = ACTIONS(3471), - [anon_sym_const] = ACTIONS(3471), - [anon_sym_restrict] = ACTIONS(3471), - [anon_sym_volatile] = ACTIONS(3471), - [anon_sym__Atomic] = ACTIONS(3471), - [anon_sym_unsigned] = ACTIONS(3471), - [anon_sym_long] = ACTIONS(3471), - [anon_sym_short] = ACTIONS(3471), - [sym_primitive_type] = ACTIONS(3471), - [anon_sym_enum] = ACTIONS(3471), - [anon_sym_struct] = ACTIONS(3471), - [anon_sym_union] = ACTIONS(3471), - [anon_sym_if] = ACTIONS(3471), - [anon_sym_else] = ACTIONS(3471), - [anon_sym_switch] = ACTIONS(3471), - [anon_sym_case] = ACTIONS(3471), - [anon_sym_default] = ACTIONS(3471), - [anon_sym_while] = ACTIONS(3471), - [anon_sym_do] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3471), - [anon_sym_return] = ACTIONS(3471), - [anon_sym_break] = ACTIONS(3471), - [anon_sym_continue] = ACTIONS(3471), - [anon_sym_goto] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3471), - [anon_sym_DASH] = ACTIONS(3471), - [anon_sym_DASH_DASH] = ACTIONS(3469), - [anon_sym_PLUS_PLUS] = ACTIONS(3469), - [anon_sym_sizeof] = ACTIONS(3471), - [sym_number_literal] = ACTIONS(3469), - [anon_sym_SQUOTE] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [sym_true] = ACTIONS(3471), - [sym_false] = ACTIONS(3471), - [sym_null] = ACTIONS(3471), - [sym_identifier] = ACTIONS(3471), - [sym_comment] = ACTIONS(85), - }, - [1144] = { - [sym_compound_statement] = STATE(1207), - [sym_labeled_statement] = STATE(1207), - [sym_expression_statement] = STATE(1207), - [sym_if_statement] = STATE(1207), - [sym_switch_statement] = STATE(1207), - [sym_case_statement] = STATE(1207), - [sym_while_statement] = STATE(1207), - [sym_do_statement] = STATE(1207), - [sym_for_statement] = STATE(1207), - [sym_return_statement] = STATE(1207), - [sym_break_statement] = STATE(1207), - [sym_continue_statement] = STATE(1207), - [sym_goto_statement] = STATE(1207), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_LPAREN2] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(43), - [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_while] = ACTIONS(51), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(85), - }, - [1145] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3473), - [sym_comment] = ACTIONS(85), - }, - [1146] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1209), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3473), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [1147] = { - [sym_argument_list] = STATE(161), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(2918), - [anon_sym_EQ] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1685), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PERCENT_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_CARET_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1699), - [anon_sym_BANG_EQ] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_LT_EQ] = ACTIONS(1703), - [anon_sym_GT_EQ] = ACTIONS(1703), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1679), - [anon_sym_PERCENT] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [1148] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2356), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2356), - [sym_preproc_directive] = ACTIONS(2356), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_typedef] = ACTIONS(2356), - [anon_sym_extern] = ACTIONS(2356), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_LPAREN2] = ACTIONS(2354), - [anon_sym_STAR] = ACTIONS(2354), - [anon_sym_static] = ACTIONS(2356), - [anon_sym_auto] = ACTIONS(2356), - [anon_sym_register] = ACTIONS(2356), - [anon_sym_inline] = ACTIONS(2356), - [anon_sym_const] = ACTIONS(2356), - [anon_sym_restrict] = ACTIONS(2356), - [anon_sym_volatile] = ACTIONS(2356), - [anon_sym__Atomic] = ACTIONS(2356), - [anon_sym_unsigned] = ACTIONS(2356), - [anon_sym_long] = ACTIONS(2356), - [anon_sym_short] = ACTIONS(2356), - [sym_primitive_type] = ACTIONS(2356), - [anon_sym_enum] = ACTIONS(2356), - [anon_sym_struct] = ACTIONS(2356), - [anon_sym_union] = ACTIONS(2356), - [anon_sym_if] = ACTIONS(2356), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2356), - [anon_sym_default] = ACTIONS(2356), - [anon_sym_while] = ACTIONS(2356), - [anon_sym_do] = ACTIONS(2356), - [anon_sym_for] = ACTIONS(2356), - [anon_sym_return] = ACTIONS(2356), - [anon_sym_break] = ACTIONS(2356), - [anon_sym_continue] = ACTIONS(2356), - [anon_sym_goto] = ACTIONS(2356), - [anon_sym_AMP] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2354), - [anon_sym_TILDE] = ACTIONS(2354), - [anon_sym_PLUS] = ACTIONS(2356), - [anon_sym_DASH] = ACTIONS(2356), - [anon_sym_DASH_DASH] = ACTIONS(2354), - [anon_sym_PLUS_PLUS] = ACTIONS(2354), - [anon_sym_sizeof] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2354), - [sym_true] = ACTIONS(2356), - [sym_false] = ACTIONS(2356), - [sym_null] = ACTIONS(2356), - [sym_identifier] = ACTIONS(2356), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3598), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3600), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3602), + [sym_false] = ACTIONS(3602), + [sym_null] = ACTIONS(3602), + [sym_identifier] = ACTIONS(3602), + [sym_comment] = ACTIONS(81), }, - [1149] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2531), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2531), - [sym_preproc_directive] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2529), - [anon_sym_typedef] = ACTIONS(2531), - [anon_sym_extern] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2531), - [anon_sym_auto] = ACTIONS(2531), - [anon_sym_register] = ACTIONS(2531), - [anon_sym_inline] = ACTIONS(2531), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_restrict] = ACTIONS(2531), - [anon_sym_volatile] = ACTIONS(2531), - [anon_sym__Atomic] = ACTIONS(2531), - [anon_sym_unsigned] = ACTIONS(2531), - [anon_sym_long] = ACTIONS(2531), - [anon_sym_short] = ACTIONS(2531), - [sym_primitive_type] = ACTIONS(2531), - [anon_sym_enum] = ACTIONS(2531), - [anon_sym_struct] = ACTIONS(2531), - [anon_sym_union] = ACTIONS(2531), - [anon_sym_if] = ACTIONS(2531), - [anon_sym_switch] = ACTIONS(2531), - [anon_sym_case] = ACTIONS(2531), - [anon_sym_default] = ACTIONS(2531), - [anon_sym_while] = ACTIONS(2531), - [anon_sym_do] = ACTIONS(2531), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2531), - [anon_sym_break] = ACTIONS(2531), - [anon_sym_continue] = ACTIONS(2531), - [anon_sym_goto] = ACTIONS(2531), - [anon_sym_AMP] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2529), - [anon_sym_TILDE] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_DASH_DASH] = ACTIONS(2529), - [anon_sym_PLUS_PLUS] = ACTIONS(2529), - [anon_sym_sizeof] = ACTIONS(2531), - [sym_number_literal] = ACTIONS(2529), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2529), - [sym_true] = ACTIONS(2531), - [sym_false] = ACTIONS(2531), - [sym_null] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2531), - [sym_comment] = ACTIONS(85), - }, - [1150] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2535), - [sym_preproc_directive] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_typedef] = ACTIONS(2535), - [anon_sym_extern] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_LPAREN2] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(2533), - [anon_sym_static] = ACTIONS(2535), - [anon_sym_auto] = ACTIONS(2535), - [anon_sym_register] = ACTIONS(2535), - [anon_sym_inline] = ACTIONS(2535), - [anon_sym_const] = ACTIONS(2535), - [anon_sym_restrict] = ACTIONS(2535), - [anon_sym_volatile] = ACTIONS(2535), - [anon_sym__Atomic] = ACTIONS(2535), - [anon_sym_unsigned] = ACTIONS(2535), - [anon_sym_long] = ACTIONS(2535), - [anon_sym_short] = ACTIONS(2535), - [sym_primitive_type] = ACTIONS(2535), - [anon_sym_enum] = ACTIONS(2535), - [anon_sym_struct] = ACTIONS(2535), - [anon_sym_union] = ACTIONS(2535), - [anon_sym_if] = ACTIONS(2535), - [anon_sym_switch] = ACTIONS(2535), - [anon_sym_case] = ACTIONS(2535), - [anon_sym_default] = ACTIONS(2535), - [anon_sym_while] = ACTIONS(2535), - [anon_sym_do] = ACTIONS(2535), - [anon_sym_for] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2535), - [anon_sym_continue] = ACTIONS(2535), - [anon_sym_goto] = ACTIONS(2535), - [anon_sym_AMP] = ACTIONS(2533), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_DASH_DASH] = ACTIONS(2533), - [anon_sym_PLUS_PLUS] = ACTIONS(2533), - [anon_sym_sizeof] = ACTIONS(2535), - [sym_number_literal] = ACTIONS(2533), - [anon_sym_SQUOTE] = ACTIONS(2533), - [anon_sym_DQUOTE] = ACTIONS(2533), - [sym_true] = ACTIONS(2535), - [sym_false] = ACTIONS(2535), - [sym_null] = ACTIONS(2535), - [sym_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(85), + [1137] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3604), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1151] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2553), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2553), - [sym_preproc_directive] = ACTIONS(2553), - [anon_sym_SEMI] = ACTIONS(2551), - [anon_sym_typedef] = ACTIONS(2553), - [anon_sym_extern] = ACTIONS(2553), - [anon_sym_LBRACE] = ACTIONS(2551), - [anon_sym_LPAREN2] = ACTIONS(2551), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_static] = ACTIONS(2553), - [anon_sym_auto] = ACTIONS(2553), - [anon_sym_register] = ACTIONS(2553), - [anon_sym_inline] = ACTIONS(2553), - [anon_sym_const] = ACTIONS(2553), - [anon_sym_restrict] = ACTIONS(2553), - [anon_sym_volatile] = ACTIONS(2553), - [anon_sym__Atomic] = ACTIONS(2553), - [anon_sym_unsigned] = ACTIONS(2553), - [anon_sym_long] = ACTIONS(2553), - [anon_sym_short] = ACTIONS(2553), - [sym_primitive_type] = ACTIONS(2553), - [anon_sym_enum] = ACTIONS(2553), - [anon_sym_struct] = ACTIONS(2553), - [anon_sym_union] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2553), - [anon_sym_else] = ACTIONS(2553), - [anon_sym_switch] = ACTIONS(2553), - [anon_sym_case] = ACTIONS(2553), - [anon_sym_default] = ACTIONS(2553), - [anon_sym_while] = ACTIONS(2553), - [anon_sym_do] = ACTIONS(2553), - [anon_sym_for] = ACTIONS(2553), - [anon_sym_return] = ACTIONS(2553), - [anon_sym_break] = ACTIONS(2553), - [anon_sym_continue] = ACTIONS(2553), - [anon_sym_goto] = ACTIONS(2553), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_BANG] = ACTIONS(2551), - [anon_sym_TILDE] = ACTIONS(2551), - [anon_sym_PLUS] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_DASH_DASH] = ACTIONS(2551), - [anon_sym_PLUS_PLUS] = ACTIONS(2551), - [anon_sym_sizeof] = ACTIONS(2553), - [sym_number_literal] = ACTIONS(2551), - [anon_sym_SQUOTE] = ACTIONS(2551), - [anon_sym_DQUOTE] = ACTIONS(2551), - [sym_true] = ACTIONS(2553), - [sym_false] = ACTIONS(2553), - [sym_null] = ACTIONS(2553), - [sym_identifier] = ACTIONS(2553), - [sym_comment] = ACTIONS(85), + [1138] = { + [sym__expression] = STATE(1208), + [sym_conditional_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1208), + [sym_pointer_expression] = STATE(1208), + [sym_logical_expression] = STATE(1208), + [sym_bitwise_expression] = STATE(1208), + [sym_equality_expression] = STATE(1208), + [sym_relational_expression] = STATE(1208), + [sym_shift_expression] = STATE(1208), + [sym_math_expression] = STATE(1208), + [sym_cast_expression] = STATE(1208), + [sym_sizeof_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_call_expression] = STATE(1208), + [sym_field_expression] = STATE(1208), + [sym_compound_literal_expression] = STATE(1208), + [sym_parenthesized_expression] = STATE(1208), + [sym_char_literal] = STATE(1208), + [sym_concatenated_string] = STATE(1208), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3604), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3608), + [sym_false] = ACTIONS(3608), + [sym_null] = ACTIONS(3608), + [sym_identifier] = ACTIONS(3608), + [sym_comment] = ACTIONS(81), }, - [1152] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2557), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2557), - [sym_preproc_directive] = ACTIONS(2557), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_typedef] = ACTIONS(2557), - [anon_sym_extern] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_LPAREN2] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2557), - [anon_sym_auto] = ACTIONS(2557), - [anon_sym_register] = ACTIONS(2557), - [anon_sym_inline] = ACTIONS(2557), - [anon_sym_const] = ACTIONS(2557), - [anon_sym_restrict] = ACTIONS(2557), - [anon_sym_volatile] = ACTIONS(2557), - [anon_sym__Atomic] = ACTIONS(2557), - [anon_sym_unsigned] = ACTIONS(2557), - [anon_sym_long] = ACTIONS(2557), - [anon_sym_short] = ACTIONS(2557), - [sym_primitive_type] = ACTIONS(2557), - [anon_sym_enum] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(2557), - [anon_sym_union] = ACTIONS(2557), - [anon_sym_if] = ACTIONS(2557), - [anon_sym_switch] = ACTIONS(2557), - [anon_sym_case] = ACTIONS(2557), - [anon_sym_default] = ACTIONS(2557), - [anon_sym_while] = ACTIONS(2557), - [anon_sym_do] = ACTIONS(2557), - [anon_sym_for] = ACTIONS(2557), - [anon_sym_return] = ACTIONS(2557), - [anon_sym_break] = ACTIONS(2557), - [anon_sym_continue] = ACTIONS(2557), - [anon_sym_goto] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2555), - [anon_sym_BANG] = ACTIONS(2555), - [anon_sym_TILDE] = ACTIONS(2555), - [anon_sym_PLUS] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_DASH_DASH] = ACTIONS(2555), - [anon_sym_PLUS_PLUS] = ACTIONS(2555), - [anon_sym_sizeof] = ACTIONS(2557), - [sym_number_literal] = ACTIONS(2555), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_DQUOTE] = ACTIONS(2555), - [sym_true] = ACTIONS(2557), - [sym_false] = ACTIONS(2557), - [sym_null] = ACTIONS(2557), - [sym_identifier] = ACTIONS(2557), - [sym_comment] = ACTIONS(85), + [1139] = { + [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_else] = ACTIONS(1227), + [anon_sym_switch] = 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(81), }, - [1153] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1454), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_else] = ACTIONS(3475), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [sym_null] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1454), - [sym_comment] = ACTIONS(85), + [1140] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3256), + [sym_preproc_directive] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_typedef] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_auto] = ACTIONS(3256), + [anon_sym_register] = ACTIONS(3256), + [anon_sym_inline] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym_unsigned] = ACTIONS(3256), + [anon_sym_long] = ACTIONS(3256), + [anon_sym_short] = ACTIONS(3256), + [sym_primitive_type] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_union] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_else] = ACTIONS(3256), + [anon_sym_switch] = ACTIONS(3256), + [anon_sym_while] = ACTIONS(3256), + [anon_sym_do] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_goto] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_sizeof] = ACTIONS(3256), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [sym_null] = ACTIONS(3256), + [sym_identifier] = ACTIONS(3256), + [sym_comment] = ACTIONS(81), }, - [1154] = { - [sym_declaration] = STATE(1055), - [sym_type_definition] = STATE(1055), - [sym__declaration_specifiers] = STATE(896), - [sym_compound_statement] = STATE(1055), - [sym_storage_class_specifier] = STATE(219), - [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(218), - [sym_sized_type_specifier] = STATE(218), - [sym_enum_specifier] = STATE(218), - [sym_struct_specifier] = STATE(218), - [sym_union_specifier] = STATE(218), - [sym_labeled_statement] = STATE(1055), - [sym_expression_statement] = STATE(1055), - [sym_if_statement] = STATE(1055), - [sym_switch_statement] = STATE(1055), - [sym_case_statement] = STATE(1055), - [sym_while_statement] = STATE(1055), - [sym_do_statement] = STATE(1055), - [sym_for_statement] = STATE(1055), - [sym_return_statement] = STATE(1055), - [sym_break_statement] = STATE(1055), - [sym_continue_statement] = STATE(1055), - [sym_goto_statement] = STATE(1055), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [sym_macro_type_specifier] = STATE(218), - [aux_sym__declaration_specifiers_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(220), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_typedef] = ACTIONS(1029), - [anon_sym_extern] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(1033), + [1141] = { + [sym_compound_statement] = STATE(1209), + [sym_labeled_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_if_statement] = STATE(1209), + [sym_switch_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_static] = ACTIONS(29), - [anon_sym_auto] = ACTIONS(29), - [anon_sym_register] = ACTIONS(29), - [anon_sym_inline] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_restrict] = ACTIONS(31), - [anon_sym_volatile] = ACTIONS(31), - [anon_sym__Atomic] = ACTIONS(31), - [anon_sym_unsigned] = ACTIONS(449), - [anon_sym_long] = ACTIONS(449), - [anon_sym_short] = ACTIONS(449), - [sym_primitive_type] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(37), - [anon_sym_struct] = ACTIONS(39), - [anon_sym_union] = ACTIONS(41), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_case] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(3324), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1710), + [sym_comment] = ACTIONS(81), }, - [1155] = { - [anon_sym_COMMA] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(276), - [anon_sym_LPAREN2] = ACTIONS(278), - [anon_sym_STAR] = ACTIONS(282), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(285), - [anon_sym_static] = ACTIONS(276), - [anon_sym_auto] = ACTIONS(276), - [anon_sym_register] = ACTIONS(276), - [anon_sym_inline] = ACTIONS(276), - [anon_sym_const] = ACTIONS(276), - [anon_sym_restrict] = ACTIONS(276), - [anon_sym_volatile] = ACTIONS(276), - [anon_sym__Atomic] = ACTIONS(276), - [anon_sym_COLON] = ACTIONS(2961), - [anon_sym_QMARK] = ACTIONS(271), - [anon_sym_STAR_EQ] = ACTIONS(271), - [anon_sym_SLASH_EQ] = ACTIONS(271), - [anon_sym_PERCENT_EQ] = ACTIONS(271), - [anon_sym_PLUS_EQ] = ACTIONS(271), - [anon_sym_DASH_EQ] = ACTIONS(271), - [anon_sym_LT_LT_EQ] = ACTIONS(271), - [anon_sym_GT_GT_EQ] = ACTIONS(271), - [anon_sym_AMP_EQ] = ACTIONS(271), - [anon_sym_CARET_EQ] = ACTIONS(271), - [anon_sym_PIPE_EQ] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(285), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE] = ACTIONS(285), - [anon_sym_CARET] = ACTIONS(285), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(285), - [anon_sym_GT] = ACTIONS(285), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_LT_LT] = ACTIONS(285), - [anon_sym_GT_GT] = ACTIONS(285), - [anon_sym_PLUS] = ACTIONS(285), - [anon_sym_DASH] = ACTIONS(285), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_PERCENT] = ACTIONS(285), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DOT] = ACTIONS(271), - [anon_sym_DASH_GT] = ACTIONS(271), - [sym_identifier] = ACTIONS(276), - [sym_comment] = ACTIONS(85), + [1142] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3610), + [sym_comment] = ACTIONS(81), }, - [1156] = { + [1143] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1211), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3610), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1144] = { [sym__expression] = STATE(1212), [sym_conditional_expression] = STATE(1212), [sym_assignment_expression] = STATE(1212), @@ -50136,432 +48739,649 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1212), [sym_char_literal] = STATE(1212), [sym_concatenated_string] = STATE(1212), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(3477), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(3479), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3481), - [sym_false] = ACTIONS(3481), - [sym_null] = ACTIONS(3481), - [sym_identifier] = ACTIONS(3481), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3610), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3612), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [sym_null] = ACTIONS(3614), + [sym_identifier] = ACTIONS(3614), + [sym_comment] = ACTIONS(81), }, - [1157] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3483), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1145] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(3037), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_auto] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_switch] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_sizeof] = ACTIONS(3035), + [sym_number_literal] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(3037), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [sym_null] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3035), + [sym_comment] = ACTIONS(81), }, - [1158] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2853), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2853), - [sym_preproc_directive] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_typedef] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_LPAREN2] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_auto] = ACTIONS(2853), - [anon_sym_register] = ACTIONS(2853), - [anon_sym_inline] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_restrict] = ACTIONS(2853), - [anon_sym_volatile] = ACTIONS(2853), - [anon_sym__Atomic] = ACTIONS(2853), - [anon_sym_unsigned] = ACTIONS(2853), - [anon_sym_long] = ACTIONS(2853), - [anon_sym_short] = ACTIONS(2853), - [sym_primitive_type] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(2853), - [anon_sym_switch] = ACTIONS(2853), - [anon_sym_case] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_goto] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_PLUS] = ACTIONS(2853), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2851), - [anon_sym_sizeof] = ACTIONS(2853), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2851), - [anon_sym_DQUOTE] = ACTIONS(2851), - [sym_true] = ACTIONS(2853), - [sym_false] = ACTIONS(2853), - [sym_null] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2853), - [sym_comment] = ACTIONS(85), + [1146] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3039), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym_typedef] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_auto] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym__Atomic] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_switch] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_goto] = ACTIONS(3039), + [anon_sym_AMP] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3039), + [sym_number_literal] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3039), + [sym_comment] = ACTIONS(81), }, - [1159] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(491), - [anon_sym_RPAREN] = ACTIONS(3485), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1147] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2455), + [sym_preproc_directive] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2457), + [anon_sym_typedef] = ACTIONS(2455), + [anon_sym_extern] = ACTIONS(2455), + [anon_sym_LBRACE] = ACTIONS(2457), + [anon_sym_LPAREN2] = ACTIONS(2457), + [anon_sym_STAR] = ACTIONS(2457), + [anon_sym_static] = ACTIONS(2455), + [anon_sym_auto] = ACTIONS(2455), + [anon_sym_register] = ACTIONS(2455), + [anon_sym_inline] = ACTIONS(2455), + [anon_sym_const] = ACTIONS(2455), + [anon_sym_restrict] = ACTIONS(2455), + [anon_sym_volatile] = ACTIONS(2455), + [anon_sym__Atomic] = ACTIONS(2455), + [anon_sym_unsigned] = ACTIONS(2455), + [anon_sym_long] = ACTIONS(2455), + [anon_sym_short] = ACTIONS(2455), + [sym_primitive_type] = ACTIONS(2455), + [anon_sym_enum] = ACTIONS(2455), + [anon_sym_struct] = ACTIONS(2455), + [anon_sym_union] = ACTIONS(2455), + [anon_sym_if] = ACTIONS(2455), + [anon_sym_switch] = ACTIONS(2455), + [anon_sym_while] = ACTIONS(2455), + [anon_sym_do] = ACTIONS(2455), + [anon_sym_for] = ACTIONS(2455), + [anon_sym_return] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2455), + [anon_sym_continue] = ACTIONS(2455), + [anon_sym_goto] = ACTIONS(2455), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_BANG] = ACTIONS(2457), + [anon_sym_TILDE] = ACTIONS(2457), + [anon_sym_PLUS] = ACTIONS(2455), + [anon_sym_DASH] = ACTIONS(2455), + [anon_sym_DASH_DASH] = ACTIONS(2457), + [anon_sym_PLUS_PLUS] = ACTIONS(2457), + [anon_sym_sizeof] = ACTIONS(2455), + [sym_number_literal] = ACTIONS(2457), + [anon_sym_SQUOTE] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [sym_true] = ACTIONS(2455), + [sym_false] = ACTIONS(2455), + [sym_null] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2455), + [sym_comment] = ACTIONS(81), }, - [1160] = { - [anon_sym_RPAREN] = ACTIONS(3485), - [sym_comment] = ACTIONS(85), + [1148] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3616), + [sym_comment] = ACTIONS(81), }, - [1161] = { - [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(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), + [1149] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2523), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2523), + [sym_preproc_directive] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_typedef] = ACTIONS(2523), + [anon_sym_extern] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2523), + [anon_sym_auto] = ACTIONS(2523), + [anon_sym_register] = ACTIONS(2523), + [anon_sym_inline] = ACTIONS(2523), + [anon_sym_const] = ACTIONS(2523), + [anon_sym_restrict] = ACTIONS(2523), + [anon_sym_volatile] = ACTIONS(2523), + [anon_sym__Atomic] = ACTIONS(2523), + [anon_sym_unsigned] = ACTIONS(2523), + [anon_sym_long] = ACTIONS(2523), + [anon_sym_short] = ACTIONS(2523), + [sym_primitive_type] = ACTIONS(2523), + [anon_sym_enum] = ACTIONS(2523), + [anon_sym_struct] = ACTIONS(2523), + [anon_sym_union] = ACTIONS(2523), + [anon_sym_if] = ACTIONS(2523), + [anon_sym_switch] = ACTIONS(2523), + [anon_sym_while] = ACTIONS(2523), + [anon_sym_do] = ACTIONS(2523), + [anon_sym_for] = ACTIONS(2523), + [anon_sym_return] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2523), + [anon_sym_continue] = ACTIONS(2523), + [anon_sym_goto] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2525), + [anon_sym_TILDE] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_DASH_DASH] = ACTIONS(2525), + [anon_sym_PLUS_PLUS] = ACTIONS(2525), + [anon_sym_sizeof] = ACTIONS(2523), + [sym_number_literal] = ACTIONS(2525), + [anon_sym_SQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2523), + [sym_false] = ACTIONS(2523), + [sym_null] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2523), + [sym_comment] = ACTIONS(81), + }, + [1150] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3618), + [sym_comment] = ACTIONS(81), + }, + [1151] = { + [sym_compound_statement] = STATE(980), + [sym_labeled_statement] = STATE(980), + [sym_expression_statement] = STATE(980), + [sym_if_statement] = STATE(980), + [sym_switch_statement] = STATE(980), + [sym_while_statement] = STATE(980), + [sym_do_statement] = STATE(980), + [sym_for_statement] = STATE(980), + [sym_return_statement] = STATE(980), + [sym_break_statement] = STATE(980), + [sym_continue_statement] = STATE(980), + [sym_goto_statement] = STATE(980), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2408), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1069), + [sym_comment] = ACTIONS(81), }, - [1162] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1217), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3487), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1152] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1216), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1163] = { - [sym__expression] = STATE(1218), - [sym_conditional_expression] = STATE(1218), - [sym_assignment_expression] = STATE(1218), - [sym_pointer_expression] = STATE(1218), - [sym_logical_expression] = STATE(1218), - [sym_bitwise_expression] = STATE(1218), - [sym_equality_expression] = STATE(1218), - [sym_relational_expression] = STATE(1218), - [sym_shift_expression] = STATE(1218), - [sym_math_expression] = STATE(1218), - [sym_cast_expression] = STATE(1218), - [sym_sizeof_expression] = STATE(1218), - [sym_subscript_expression] = STATE(1218), - [sym_call_expression] = STATE(1218), - [sym_field_expression] = STATE(1218), - [sym_compound_literal_expression] = STATE(1218), - [sym_parenthesized_expression] = STATE(1218), - [sym_char_literal] = STATE(1218), - [sym_concatenated_string] = STATE(1218), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3487), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3489), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3491), - [sym_false] = ACTIONS(3491), - [sym_null] = ACTIONS(3491), - [sym_identifier] = ACTIONS(3491), - [sym_comment] = ACTIONS(85), + [1153] = { + [sym__expression] = STATE(1217), + [sym_conditional_expression] = STATE(1217), + [sym_assignment_expression] = STATE(1217), + [sym_pointer_expression] = STATE(1217), + [sym_logical_expression] = STATE(1217), + [sym_bitwise_expression] = STATE(1217), + [sym_equality_expression] = STATE(1217), + [sym_relational_expression] = STATE(1217), + [sym_shift_expression] = STATE(1217), + [sym_math_expression] = STATE(1217), + [sym_cast_expression] = STATE(1217), + [sym_sizeof_expression] = STATE(1217), + [sym_subscript_expression] = STATE(1217), + [sym_call_expression] = STATE(1217), + [sym_field_expression] = STATE(1217), + [sym_compound_literal_expression] = STATE(1217), + [sym_parenthesized_expression] = STATE(1217), + [sym_char_literal] = STATE(1217), + [sym_concatenated_string] = STATE(1217), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [sym_null] = ACTIONS(3624), + [sym_identifier] = ACTIONS(3624), + [sym_comment] = ACTIONS(81), }, - [1164] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3493), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1154] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1165] = { - [sym_compound_statement] = STATE(1069), - [sym_labeled_statement] = STATE(1069), - [sym_expression_statement] = STATE(1069), - [sym_if_statement] = STATE(1069), - [sym_switch_statement] = STATE(1069), - [sym_case_statement] = STATE(1069), - [sym_while_statement] = STATE(1069), - [sym_do_statement] = STATE(1069), - [sym_for_statement] = STATE(1069), - [sym_return_statement] = STATE(1069), - [sym_break_statement] = STATE(1069), - [sym_continue_statement] = STATE(1069), - [sym_goto_statement] = STATE(1069), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [1155] = { + [sym_compound_statement] = STATE(1192), + [sym_labeled_statement] = STATE(1192), + [sym_expression_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_break_statement] = STATE(1192), + [sym_continue_statement] = STATE(1192), + [sym_goto_statement] = STATE(1192), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1846), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1071), + [sym_comment] = ACTIONS(81), }, - [1166] = { + [1156] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3628), + [sym_comment] = ACTIONS(81), + }, + [1157] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1220), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3628), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1158] = { + [sym_type_qualifier] = STATE(1158), + [aux_sym_type_definition_repeat1] = STATE(1158), + [anon_sym_RPAREN] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_restrict] = ACTIONS(1033), + [anon_sym_volatile] = ACTIONS(1033), + [anon_sym__Atomic] = ACTIONS(1033), + [sym_identifier] = ACTIONS(1036), + [sym_comment] = ACTIONS(81), + }, + [1159] = { + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_pointer_expression] = STATE(471), + [sym_logical_expression] = STATE(471), + [sym_bitwise_expression] = STATE(471), + [sym_equality_expression] = STATE(471), + [sym_relational_expression] = STATE(471), + [sym_shift_expression] = STATE(471), + [sym_math_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(471), + [sym_call_expression] = STATE(471), + [sym_field_expression] = STATE(471), + [sym_compound_literal_expression] = STATE(471), + [sym_parenthesized_expression] = STATE(471), + [sym_initializer_list] = STATE(472), + [sym_char_literal] = STATE(471), + [sym_concatenated_string] = STATE(471), + [sym_string_literal] = STATE(722), + [anon_sym_COMMA] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_EQ] = ACTIONS(2091), + [anon_sym_QMARK] = ACTIONS(2087), + [anon_sym_STAR_EQ] = ACTIONS(2087), + [anon_sym_SLASH_EQ] = ACTIONS(2087), + [anon_sym_PERCENT_EQ] = ACTIONS(2087), + [anon_sym_PLUS_EQ] = ACTIONS(2087), + [anon_sym_DASH_EQ] = ACTIONS(2087), + [anon_sym_LT_LT_EQ] = ACTIONS(2087), + [anon_sym_GT_GT_EQ] = ACTIONS(2087), + [anon_sym_AMP_EQ] = ACTIONS(2087), + [anon_sym_CARET_EQ] = ACTIONS(2087), + [anon_sym_PIPE_EQ] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_PIPE_PIPE] = ACTIONS(2087), + [anon_sym_AMP_AMP] = ACTIONS(2087), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_PIPE] = ACTIONS(2091), + [anon_sym_CARET] = ACTIONS(2091), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_EQ_EQ] = ACTIONS(2087), + [anon_sym_BANG_EQ] = ACTIONS(2087), + [anon_sym_LT] = ACTIONS(2091), + [anon_sym_GT] = ACTIONS(2091), + [anon_sym_LT_EQ] = ACTIONS(2087), + [anon_sym_GT_EQ] = ACTIONS(2087), + [anon_sym_LT_LT] = ACTIONS(2091), + [anon_sym_GT_GT] = ACTIONS(2091), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_SLASH] = ACTIONS(2091), + [anon_sym_PERCENT] = ACTIONS(2091), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [anon_sym_DOT] = ACTIONS(2087), + [anon_sym_DASH_GT] = ACTIONS(2087), + [sym_number_literal] = ACTIONS(1275), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(1277), + [sym_false] = ACTIONS(1277), + [sym_null] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1277), + [sym_comment] = ACTIONS(81), + }, + [1160] = { [sym__expression] = STATE(1221), [sym_conditional_expression] = STATE(1221), [sym_assignment_expression] = STATE(1221), @@ -50581,346 +49401,349 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1221), [sym_char_literal] = STATE(1221), [sym_concatenated_string] = STATE(1221), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3495), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3497), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3499), - [sym_false] = ACTIONS(3499), - [sym_null] = ACTIONS(3499), - [sym_identifier] = ACTIONS(3499), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(722), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(3634), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [sym_null] = ACTIONS(3636), + [sym_identifier] = ACTIONS(3636), + [sym_comment] = ACTIONS(81), }, - [1167] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1161] = { + [anon_sym_COMMA] = ACTIONS(3638), + [anon_sym_RPAREN] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_LPAREN2] = ACTIONS(3638), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_RBRACK] = ACTIONS(3638), + [anon_sym_EQ] = ACTIONS(3640), + [anon_sym_COLON] = ACTIONS(3638), + [anon_sym_QMARK] = ACTIONS(3638), + [anon_sym_STAR_EQ] = ACTIONS(3638), + [anon_sym_SLASH_EQ] = ACTIONS(3638), + [anon_sym_PERCENT_EQ] = ACTIONS(3638), + [anon_sym_PLUS_EQ] = ACTIONS(3638), + [anon_sym_DASH_EQ] = ACTIONS(3638), + [anon_sym_LT_LT_EQ] = ACTIONS(3638), + [anon_sym_GT_GT_EQ] = ACTIONS(3638), + [anon_sym_AMP_EQ] = ACTIONS(3638), + [anon_sym_CARET_EQ] = ACTIONS(3638), + [anon_sym_PIPE_EQ] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_PIPE_PIPE] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE] = ACTIONS(3640), + [anon_sym_CARET] = ACTIONS(3640), + [anon_sym_EQ_EQ] = ACTIONS(3638), + [anon_sym_BANG_EQ] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_GT] = ACTIONS(3640), + [anon_sym_LT_EQ] = ACTIONS(3638), + [anon_sym_GT_EQ] = ACTIONS(3638), + [anon_sym_LT_LT] = ACTIONS(3640), + [anon_sym_GT_GT] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3640), + [anon_sym_PERCENT] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_DOT] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3638), + [sym_comment] = ACTIONS(81), }, - [1168] = { - [sym__expression] = STATE(1223), - [sym_conditional_expression] = STATE(1223), - [sym_assignment_expression] = STATE(1223), - [sym_pointer_expression] = STATE(1223), - [sym_logical_expression] = STATE(1223), - [sym_bitwise_expression] = STATE(1223), - [sym_equality_expression] = STATE(1223), - [sym_relational_expression] = STATE(1223), - [sym_shift_expression] = STATE(1223), - [sym_math_expression] = STATE(1223), - [sym_cast_expression] = STATE(1223), - [sym_sizeof_expression] = STATE(1223), - [sym_subscript_expression] = STATE(1223), - [sym_call_expression] = STATE(1223), - [sym_field_expression] = STATE(1223), - [sym_compound_literal_expression] = STATE(1223), - [sym_parenthesized_expression] = STATE(1223), - [sym_char_literal] = STATE(1223), - [sym_concatenated_string] = STATE(1223), - [sym_string_literal] = STATE(123), - [anon_sym_SEMI] = ACTIONS(3501), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(3503), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3505), - [sym_false] = ACTIONS(3505), - [sym_null] = ACTIONS(3505), - [sym_identifier] = ACTIONS(3505), - [sym_comment] = ACTIONS(85), + [1162] = { + [sym__expression] = STATE(1059), + [sym_conditional_expression] = STATE(1059), + [sym_assignment_expression] = STATE(1059), + [sym_pointer_expression] = STATE(1059), + [sym_logical_expression] = STATE(1059), + [sym_bitwise_expression] = STATE(1059), + [sym_equality_expression] = STATE(1059), + [sym_relational_expression] = STATE(1059), + [sym_shift_expression] = STATE(1059), + [sym_math_expression] = STATE(1059), + [sym_cast_expression] = STATE(1059), + [sym_sizeof_expression] = STATE(1059), + [sym_subscript_expression] = STATE(1059), + [sym_call_expression] = STATE(1059), + [sym_field_expression] = STATE(1059), + [sym_compound_literal_expression] = STATE(1059), + [sym_parenthesized_expression] = STATE(1059), + [sym_initializer_list] = STATE(1060), + [sym_initializer_pair] = STATE(1060), + [sym_subscript_designator] = STATE(723), + [sym_field_designator] = STATE(723), + [sym_char_literal] = STATE(1059), + [sym_concatenated_string] = STATE(1059), + [sym_string_literal] = STATE(722), + [aux_sym_initializer_pair_repeat1] = STATE(723), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1932), + [anon_sym_DOT] = ACTIONS(1934), + [sym_number_literal] = ACTIONS(3091), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3093), + [sym_false] = ACTIONS(3093), + [sym_null] = ACTIONS(3093), + [sym_identifier] = ACTIONS(3093), + [sym_comment] = ACTIONS(81), }, - [1169] = { - [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(85), + [1163] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3642), + [sym_comment] = ACTIONS(81), }, - [1170] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3294), - [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(3292), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_LPAREN2] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [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_else] = 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(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_sizeof] = ACTIONS(3294), - [sym_number_literal] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3294), - [sym_comment] = ACTIONS(85), + [1164] = { + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_RPAREN] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_COLON] = ACTIONS(3644), + [sym_comment] = ACTIONS(81), }, - [1171] = { - [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(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [1165] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3646), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_auto] = ACTIONS(3646), + [anon_sym_register] = ACTIONS(3646), + [anon_sym_inline] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_restrict] = ACTIONS(3646), + [anon_sym_volatile] = ACTIONS(3646), + [anon_sym__Atomic] = ACTIONS(3646), + [anon_sym_unsigned] = ACTIONS(3646), + [anon_sym_long] = ACTIONS(3646), + [anon_sym_short] = ACTIONS(3646), + [sym_primitive_type] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), + [anon_sym_struct] = ACTIONS(3646), + [anon_sym_union] = ACTIONS(3646), + [sym_identifier] = ACTIONS(3646), + [sym_comment] = ACTIONS(81), + }, + [1166] = { + [sym_compound_statement] = STATE(1113), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(535), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(537), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(539), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1848), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(541), + [sym_comment] = ACTIONS(81), }, - [1172] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3507), - [sym_comment] = ACTIONS(85), + [1167] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3650), + [sym_comment] = ACTIONS(81), }, - [1173] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1226), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3507), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1168] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1223), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3650), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1174] = { + [1169] = { + [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(75), + [anon_sym_RPAREN] = ACTIONS(3650), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3654), + [sym_false] = ACTIONS(3654), + [sym_null] = ACTIONS(3654), + [sym_identifier] = ACTIONS(3654), + [sym_comment] = ACTIONS(81), + }, + [1170] = { + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_null] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1338), + [sym_comment] = ACTIONS(81), + }, + [1171] = { [sym__expression] = STATE(1227), [sym_conditional_expression] = STATE(1227), [sym_assignment_expression] = STATE(1227), @@ -50940,5791 +49763,8280 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_parenthesized_expression] = STATE(1227), [sym_char_literal] = STATE(1227), [sym_concatenated_string] = STATE(1227), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3507), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3509), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3511), - [sym_false] = ACTIONS(3511), - [sym_null] = ACTIONS(3511), - [sym_identifier] = ACTIONS(3511), - [sym_comment] = ACTIONS(85), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [sym_null] = ACTIONS(3662), + [sym_identifier] = ACTIONS(3662), + [sym_comment] = ACTIONS(81), + }, + [1172] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1173] = { + [sym_parenthesized_expression] = STATE(1229), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), + }, + [1174] = { + [sym_parenthesized_expression] = STATE(1230), + [anon_sym_LPAREN2] = ACTIONS(169), + [sym_comment] = ACTIONS(81), }, [1175] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3095), - [sym_preproc_directive] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_typedef] = ACTIONS(3095), - [anon_sym_extern] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_LPAREN2] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_auto] = ACTIONS(3095), - [anon_sym_register] = ACTIONS(3095), - [anon_sym_inline] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_restrict] = ACTIONS(3095), - [anon_sym_volatile] = ACTIONS(3095), - [anon_sym__Atomic] = ACTIONS(3095), - [anon_sym_unsigned] = ACTIONS(3095), - [anon_sym_long] = ACTIONS(3095), - [anon_sym_short] = ACTIONS(3095), - [sym_primitive_type] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_union] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_switch] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_default] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_do] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_sizeof] = ACTIONS(3095), - [sym_number_literal] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_true] = ACTIONS(3095), - [sym_false] = ACTIONS(3095), - [sym_null] = ACTIONS(3095), - [sym_identifier] = ACTIONS(3095), - [sym_comment] = ACTIONS(85), + [anon_sym_LPAREN2] = ACTIONS(3666), + [sym_comment] = ACTIONS(81), }, [1176] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3099), - [sym_preproc_directive] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3099), - [anon_sym_extern] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_auto] = ACTIONS(3099), - [anon_sym_register] = ACTIONS(3099), - [anon_sym_inline] = ACTIONS(3099), - [anon_sym_const] = ACTIONS(3099), - [anon_sym_restrict] = ACTIONS(3099), - [anon_sym_volatile] = ACTIONS(3099), - [anon_sym__Atomic] = ACTIONS(3099), - [anon_sym_unsigned] = ACTIONS(3099), - [anon_sym_long] = ACTIONS(3099), - [anon_sym_short] = ACTIONS(3099), - [sym_primitive_type] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_union] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_switch] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_default] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_break] = ACTIONS(3099), - [anon_sym_continue] = ACTIONS(3099), - [anon_sym_goto] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_sizeof] = ACTIONS(3099), - [sym_number_literal] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_identifier] = ACTIONS(3099), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(3668), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_comment] = ACTIONS(81), }, [1177] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2594), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2594), - [sym_preproc_directive] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_typedef] = ACTIONS(2594), - [anon_sym_extern] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_LPAREN2] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_auto] = ACTIONS(2594), - [anon_sym_register] = ACTIONS(2594), - [anon_sym_inline] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_restrict] = ACTIONS(2594), - [anon_sym_volatile] = ACTIONS(2594), - [anon_sym__Atomic] = ACTIONS(2594), - [anon_sym_unsigned] = ACTIONS(2594), - [anon_sym_long] = ACTIONS(2594), - [anon_sym_short] = ACTIONS(2594), - [sym_primitive_type] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), - [anon_sym_struct] = ACTIONS(2594), - [anon_sym_union] = ACTIONS(2594), - [anon_sym_if] = ACTIONS(2594), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_case] = ACTIONS(2594), - [anon_sym_default] = ACTIONS(2594), - [anon_sym_while] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2594), - [anon_sym_return] = ACTIONS(2594), - [anon_sym_break] = ACTIONS(2594), - [anon_sym_continue] = ACTIONS(2594), - [anon_sym_goto] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2596), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DASH_DASH] = ACTIONS(2596), - [anon_sym_PLUS_PLUS] = ACTIONS(2596), - [anon_sym_sizeof] = ACTIONS(2594), - [sym_number_literal] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [sym_true] = ACTIONS(2594), - [sym_false] = ACTIONS(2594), - [sym_null] = ACTIONS(2594), - [sym_identifier] = ACTIONS(2594), - [sym_comment] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_null] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1338), + [sym_comment] = ACTIONS(81), }, [1178] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3513), - [sym_comment] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(237), + [anon_sym_SEMI] = ACTIONS(237), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(251), + [anon_sym_COLON] = ACTIONS(3226), + [anon_sym_QMARK] = ACTIONS(237), + [anon_sym_STAR_EQ] = ACTIONS(237), + [anon_sym_SLASH_EQ] = ACTIONS(237), + [anon_sym_PERCENT_EQ] = ACTIONS(237), + [anon_sym_PLUS_EQ] = ACTIONS(237), + [anon_sym_DASH_EQ] = ACTIONS(237), + [anon_sym_LT_LT_EQ] = ACTIONS(237), + [anon_sym_GT_GT_EQ] = ACTIONS(237), + [anon_sym_AMP_EQ] = ACTIONS(237), + [anon_sym_CARET_EQ] = ACTIONS(237), + [anon_sym_PIPE_EQ] = ACTIONS(237), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_PIPE_PIPE] = ACTIONS(237), + [anon_sym_AMP_AMP] = ACTIONS(237), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(237), + [anon_sym_BANG_EQ] = ACTIONS(237), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_GT_EQ] = ACTIONS(237), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_SLASH] = ACTIONS(251), + [anon_sym_PERCENT] = ACTIONS(251), + [anon_sym_DASH_DASH] = ACTIONS(237), + [anon_sym_PLUS_PLUS] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(237), + [anon_sym_DASH_GT] = ACTIONS(237), + [sym_comment] = ACTIONS(81), }, [1179] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2668), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2668), - [sym_preproc_directive] = ACTIONS(2668), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_typedef] = ACTIONS(2668), - [anon_sym_extern] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_LPAREN2] = ACTIONS(2670), - [anon_sym_STAR] = ACTIONS(2670), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_auto] = ACTIONS(2668), - [anon_sym_register] = ACTIONS(2668), - [anon_sym_inline] = ACTIONS(2668), - [anon_sym_const] = ACTIONS(2668), - [anon_sym_restrict] = ACTIONS(2668), - [anon_sym_volatile] = ACTIONS(2668), - [anon_sym__Atomic] = ACTIONS(2668), - [anon_sym_unsigned] = ACTIONS(2668), - [anon_sym_long] = ACTIONS(2668), - [anon_sym_short] = ACTIONS(2668), - [sym_primitive_type] = ACTIONS(2668), - [anon_sym_enum] = ACTIONS(2668), - [anon_sym_struct] = ACTIONS(2668), - [anon_sym_union] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_switch] = ACTIONS(2668), - [anon_sym_case] = ACTIONS(2668), - [anon_sym_default] = ACTIONS(2668), - [anon_sym_while] = ACTIONS(2668), - [anon_sym_do] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_goto] = ACTIONS(2668), - [anon_sym_AMP] = ACTIONS(2670), - [anon_sym_BANG] = ACTIONS(2670), - [anon_sym_TILDE] = ACTIONS(2670), - [anon_sym_PLUS] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2668), - [anon_sym_DASH_DASH] = ACTIONS(2670), - [anon_sym_PLUS_PLUS] = ACTIONS(2670), - [anon_sym_sizeof] = ACTIONS(2668), - [sym_number_literal] = ACTIONS(2670), - [anon_sym_SQUOTE] = ACTIONS(2670), - [anon_sym_DQUOTE] = ACTIONS(2670), - [sym_true] = ACTIONS(2668), - [sym_false] = ACTIONS(2668), - [sym_null] = ACTIONS(2668), - [sym_identifier] = ACTIONS(2668), - [sym_comment] = ACTIONS(85), + [sym__expression] = STATE(1235), + [sym_conditional_expression] = STATE(1235), + [sym_assignment_expression] = STATE(1235), + [sym_pointer_expression] = STATE(1235), + [sym_logical_expression] = STATE(1235), + [sym_bitwise_expression] = STATE(1235), + [sym_equality_expression] = STATE(1235), + [sym_relational_expression] = STATE(1235), + [sym_shift_expression] = STATE(1235), + [sym_math_expression] = STATE(1235), + [sym_cast_expression] = STATE(1235), + [sym_sizeof_expression] = STATE(1235), + [sym_subscript_expression] = STATE(1235), + [sym_call_expression] = STATE(1235), + [sym_field_expression] = STATE(1235), + [sym_compound_literal_expression] = STATE(1235), + [sym_parenthesized_expression] = STATE(1235), + [sym_char_literal] = STATE(1235), + [sym_concatenated_string] = STATE(1235), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3676), + [sym_false] = ACTIONS(3676), + [sym_null] = ACTIONS(3676), + [sym_identifier] = ACTIONS(3676), + [sym_comment] = ACTIONS(81), + }, + [1180] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1181] = { + [sym_compound_statement] = STATE(980), + [sym_labeled_statement] = STATE(980), + [sym_expression_statement] = STATE(980), + [sym_if_statement] = STATE(980), + [sym_switch_statement] = STATE(980), + [sym_while_statement] = STATE(980), + [sym_do_statement] = STATE(980), + [sym_for_statement] = STATE(980), + [sym_return_statement] = STATE(980), + [sym_break_statement] = STATE(980), + [sym_continue_statement] = STATE(980), + [sym_goto_statement] = STATE(980), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(81), + }, + [1182] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1238), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1183] = { + [sym__expression] = STATE(1239), + [sym_conditional_expression] = STATE(1239), + [sym_assignment_expression] = STATE(1239), + [sym_pointer_expression] = STATE(1239), + [sym_logical_expression] = STATE(1239), + [sym_bitwise_expression] = STATE(1239), + [sym_equality_expression] = STATE(1239), + [sym_relational_expression] = STATE(1239), + [sym_shift_expression] = STATE(1239), + [sym_math_expression] = STATE(1239), + [sym_cast_expression] = STATE(1239), + [sym_sizeof_expression] = STATE(1239), + [sym_subscript_expression] = STATE(1239), + [sym_call_expression] = STATE(1239), + [sym_field_expression] = STATE(1239), + [sym_compound_literal_expression] = STATE(1239), + [sym_parenthesized_expression] = STATE(1239), + [sym_char_literal] = STATE(1239), + [sym_concatenated_string] = STATE(1239), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3680), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_identifier] = ACTIONS(3684), + [sym_comment] = ACTIONS(81), + }, + [1184] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1185] = { + [sym_compound_statement] = STATE(980), + [sym_labeled_statement] = STATE(980), + [sym_expression_statement] = STATE(980), + [sym_if_statement] = STATE(980), + [sym_switch_statement] = STATE(980), + [sym_while_statement] = STATE(980), + [sym_do_statement] = STATE(980), + [sym_for_statement] = STATE(980), + [sym_return_statement] = STATE(980), + [sym_break_statement] = STATE(980), + [sym_continue_statement] = STATE(980), + [sym_goto_statement] = STATE(980), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1370), + [sym_comment] = ACTIONS(81), + }, + [1186] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1242), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3688), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1187] = { + [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(75), + [anon_sym_RPAREN] = ACTIONS(3688), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3690), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3692), + [sym_false] = ACTIONS(3692), + [sym_null] = ACTIONS(3692), + [sym_identifier] = ACTIONS(3692), + [sym_comment] = ACTIONS(81), + }, + [1188] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1189] = { + [sym_compound_statement] = STATE(1192), + [sym_labeled_statement] = STATE(1192), + [sym_expression_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_break_statement] = STATE(1192), + [sym_continue_statement] = STATE(1192), + [sym_goto_statement] = STATE(1192), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(173), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(181), + [sym_comment] = ACTIONS(81), + }, + [1190] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3696), + [sym_comment] = ACTIONS(81), + }, + [1191] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1246), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3696), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1192] = { + [ts_builtin_sym_end] = ACTIONS(3698), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3700), + [sym_preproc_directive] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_typedef] = ACTIONS(3700), + [anon_sym_extern] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3698), + [anon_sym_RBRACE] = ACTIONS(3698), + [anon_sym_LPAREN2] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3700), + [anon_sym_auto] = ACTIONS(3700), + [anon_sym_register] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3700), + [anon_sym_volatile] = ACTIONS(3700), + [anon_sym__Atomic] = ACTIONS(3700), + [anon_sym_unsigned] = ACTIONS(3700), + [anon_sym_long] = ACTIONS(3700), + [anon_sym_short] = ACTIONS(3700), + [sym_primitive_type] = ACTIONS(3700), + [anon_sym_enum] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(3700), + [anon_sym_else] = ACTIONS(3700), + [anon_sym_switch] = ACTIONS(3700), + [anon_sym_case] = ACTIONS(3700), + [anon_sym_default] = ACTIONS(3700), + [anon_sym_while] = ACTIONS(3700), + [anon_sym_do] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3700), + [anon_sym_return] = ACTIONS(3700), + [anon_sym_break] = ACTIONS(3700), + [anon_sym_continue] = ACTIONS(3700), + [anon_sym_goto] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_sizeof] = ACTIONS(3700), + [sym_number_literal] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3698), + [sym_true] = ACTIONS(3700), + [sym_false] = ACTIONS(3700), + [sym_null] = ACTIONS(3700), + [sym_identifier] = ACTIONS(3700), + [sym_comment] = ACTIONS(81), + }, + [1193] = { + [sym_compound_statement] = STATE(1247), + [sym_labeled_statement] = STATE(1247), + [sym_expression_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_break_statement] = STATE(1247), + [sym_continue_statement] = STATE(1247), + [sym_goto_statement] = STATE(1247), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(43), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(81), + }, + [1194] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3702), + [sym_comment] = ACTIONS(81), + }, + [1195] = { + [sym_compound_statement] = STATE(1127), + [sym_labeled_statement] = STATE(1127), + [sym_expression_statement] = STATE(1127), + [sym_if_statement] = STATE(1127), + [sym_switch_statement] = STATE(1127), + [sym_while_statement] = STATE(1127), + [sym_do_statement] = STATE(1127), + [sym_for_statement] = STATE(1127), + [sym_return_statement] = STATE(1127), + [sym_break_statement] = STATE(1127), + [sym_continue_statement] = STATE(1127), + [sym_goto_statement] = STATE(1127), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(2282), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2288), + [sym_comment] = ACTIONS(81), + }, + [1196] = { + [sym__expression] = STATE(1250), + [sym_conditional_expression] = STATE(1250), + [sym_assignment_expression] = STATE(1250), + [sym_pointer_expression] = STATE(1250), + [sym_logical_expression] = STATE(1250), + [sym_bitwise_expression] = STATE(1250), + [sym_equality_expression] = STATE(1250), + [sym_relational_expression] = STATE(1250), + [sym_shift_expression] = STATE(1250), + [sym_math_expression] = STATE(1250), + [sym_cast_expression] = STATE(1250), + [sym_sizeof_expression] = STATE(1250), + [sym_subscript_expression] = STATE(1250), + [sym_call_expression] = STATE(1250), + [sym_field_expression] = STATE(1250), + [sym_compound_literal_expression] = STATE(1250), + [sym_parenthesized_expression] = STATE(1250), + [sym_char_literal] = STATE(1250), + [sym_concatenated_string] = STATE(1250), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [sym_null] = ACTIONS(3708), + [sym_identifier] = ACTIONS(3708), + [sym_comment] = ACTIONS(81), + }, + [1197] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1198] = { + [sym__expression] = STATE(1252), + [sym_conditional_expression] = STATE(1252), + [sym_assignment_expression] = STATE(1252), + [sym_pointer_expression] = STATE(1252), + [sym_logical_expression] = STATE(1252), + [sym_bitwise_expression] = STATE(1252), + [sym_equality_expression] = STATE(1252), + [sym_relational_expression] = STATE(1252), + [sym_shift_expression] = STATE(1252), + [sym_math_expression] = STATE(1252), + [sym_cast_expression] = STATE(1252), + [sym_sizeof_expression] = STATE(1252), + [sym_subscript_expression] = STATE(1252), + [sym_call_expression] = STATE(1252), + [sym_field_expression] = STATE(1252), + [sym_compound_literal_expression] = STATE(1252), + [sym_parenthesized_expression] = STATE(1252), + [sym_char_literal] = STATE(1252), + [sym_concatenated_string] = STATE(1252), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3712), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3714), + [sym_false] = ACTIONS(3714), + [sym_null] = ACTIONS(3714), + [sym_identifier] = ACTIONS(3714), + [sym_comment] = ACTIONS(81), + }, + [1199] = { + [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_else] = ACTIONS(1227), + [anon_sym_switch] = 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(81), + }, + [1200] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3256), + [sym_preproc_directive] = ACTIONS(3256), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_typedef] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3256), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_LPAREN2] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3256), + [anon_sym_auto] = ACTIONS(3256), + [anon_sym_register] = ACTIONS(3256), + [anon_sym_inline] = ACTIONS(3256), + [anon_sym_const] = ACTIONS(3256), + [anon_sym_restrict] = ACTIONS(3256), + [anon_sym_volatile] = ACTIONS(3256), + [anon_sym__Atomic] = ACTIONS(3256), + [anon_sym_unsigned] = ACTIONS(3256), + [anon_sym_long] = ACTIONS(3256), + [anon_sym_short] = ACTIONS(3256), + [sym_primitive_type] = ACTIONS(3256), + [anon_sym_enum] = ACTIONS(3256), + [anon_sym_struct] = ACTIONS(3256), + [anon_sym_union] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3256), + [anon_sym_else] = ACTIONS(3256), + [anon_sym_switch] = ACTIONS(3256), + [anon_sym_while] = ACTIONS(3256), + [anon_sym_do] = ACTIONS(3256), + [anon_sym_for] = ACTIONS(3256), + [anon_sym_return] = ACTIONS(3256), + [anon_sym_break] = ACTIONS(3256), + [anon_sym_continue] = ACTIONS(3256), + [anon_sym_goto] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3256), + [anon_sym_DASH] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_sizeof] = ACTIONS(3256), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [sym_true] = ACTIONS(3256), + [sym_false] = ACTIONS(3256), + [sym_null] = ACTIONS(3256), + [sym_identifier] = ACTIONS(3256), + [sym_comment] = ACTIONS(81), + }, + [1201] = { + [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_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(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2292), + [sym_comment] = ACTIONS(81), + }, + [1202] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3716), + [sym_comment] = ACTIONS(81), + }, + [1203] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1255), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3716), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1204] = { + [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(75), + [anon_sym_RPAREN] = ACTIONS(3716), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3718), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3720), + [sym_false] = ACTIONS(3720), + [sym_null] = ACTIONS(3720), + [sym_identifier] = ACTIONS(3720), + [sym_comment] = ACTIONS(81), + }, + [1205] = { + [sym_compound_statement] = STATE(1140), + [sym_labeled_statement] = STATE(1140), + [sym_expression_statement] = STATE(1140), + [sym_if_statement] = STATE(1140), + [sym_switch_statement] = STATE(1140), + [sym_while_statement] = STATE(1140), + [sym_do_statement] = STATE(1140), + [sym_for_statement] = STATE(1140), + [sym_return_statement] = STATE(1140), + [sym_break_statement] = STATE(1140), + [sym_continue_statement] = STATE(1140), + [sym_goto_statement] = STATE(1140), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1706), + [sym_comment] = ACTIONS(81), + }, + [1206] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1258), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1207] = { + [sym__expression] = STATE(1259), + [sym_conditional_expression] = STATE(1259), + [sym_assignment_expression] = STATE(1259), + [sym_pointer_expression] = STATE(1259), + [sym_logical_expression] = STATE(1259), + [sym_bitwise_expression] = STATE(1259), + [sym_equality_expression] = STATE(1259), + [sym_relational_expression] = STATE(1259), + [sym_shift_expression] = STATE(1259), + [sym_math_expression] = STATE(1259), + [sym_cast_expression] = STATE(1259), + [sym_sizeof_expression] = STATE(1259), + [sym_subscript_expression] = STATE(1259), + [sym_call_expression] = STATE(1259), + [sym_field_expression] = STATE(1259), + [sym_compound_literal_expression] = STATE(1259), + [sym_parenthesized_expression] = STATE(1259), + [sym_char_literal] = STATE(1259), + [sym_concatenated_string] = STATE(1259), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3724), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3726), + [sym_false] = ACTIONS(3726), + [sym_null] = ACTIONS(3726), + [sym_identifier] = ACTIONS(3726), + [sym_comment] = ACTIONS(81), + }, + [1208] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1209] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3574), + [sym_preproc_directive] = ACTIONS(3574), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym_typedef] = ACTIONS(3574), + [anon_sym_extern] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3574), + [anon_sym_auto] = ACTIONS(3574), + [anon_sym_register] = ACTIONS(3574), + [anon_sym_inline] = ACTIONS(3574), + [anon_sym_const] = ACTIONS(3574), + [anon_sym_restrict] = ACTIONS(3574), + [anon_sym_volatile] = ACTIONS(3574), + [anon_sym__Atomic] = ACTIONS(3574), + [anon_sym_unsigned] = ACTIONS(3574), + [anon_sym_long] = ACTIONS(3574), + [anon_sym_short] = ACTIONS(3574), + [sym_primitive_type] = ACTIONS(3574), + [anon_sym_enum] = ACTIONS(3574), + [anon_sym_struct] = ACTIONS(3574), + [anon_sym_union] = ACTIONS(3574), + [anon_sym_if] = ACTIONS(3574), + [anon_sym_else] = ACTIONS(3574), + [anon_sym_switch] = ACTIONS(3574), + [anon_sym_while] = ACTIONS(3574), + [anon_sym_do] = ACTIONS(3574), + [anon_sym_for] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3574), + [anon_sym_break] = ACTIONS(3574), + [anon_sym_continue] = ACTIONS(3574), + [anon_sym_goto] = ACTIONS(3574), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [sym_number_literal] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [sym_true] = ACTIONS(3574), + [sym_false] = ACTIONS(3574), + [sym_null] = ACTIONS(3574), + [sym_identifier] = ACTIONS(3574), + [sym_comment] = ACTIONS(81), + }, + [1210] = { + [sym_compound_statement] = STATE(1261), + [sym_labeled_statement] = STATE(1261), + [sym_expression_statement] = STATE(1261), + [sym_if_statement] = STATE(1261), + [sym_switch_statement] = STATE(1261), + [sym_while_statement] = STATE(1261), + [sym_do_statement] = STATE(1261), + [sym_for_statement] = STATE(1261), + [sym_return_statement] = STATE(1261), + [sym_break_statement] = STATE(1261), + [sym_continue_statement] = STATE(1261), + [sym_goto_statement] = STATE(1261), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1710), + [sym_comment] = ACTIONS(81), + }, + [1211] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3730), + [sym_comment] = ACTIONS(81), + }, + [1212] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1263), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1213] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3035), + [sym_preproc_directive] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(3037), + [anon_sym_typedef] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_LPAREN2] = ACTIONS(3037), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_auto] = ACTIONS(3035), + [anon_sym_register] = ACTIONS(3035), + [anon_sym_inline] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_restrict] = ACTIONS(3035), + [anon_sym_volatile] = ACTIONS(3035), + [anon_sym__Atomic] = ACTIONS(3035), + [anon_sym_unsigned] = ACTIONS(3035), + [anon_sym_long] = ACTIONS(3035), + [anon_sym_short] = ACTIONS(3035), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_switch] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_do] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3037), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3037), + [anon_sym_sizeof] = ACTIONS(3035), + [sym_number_literal] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(3037), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [sym_null] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3035), + [sym_comment] = ACTIONS(81), + }, + [1214] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3039), + [sym_preproc_directive] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym_typedef] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_LPAREN2] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_auto] = ACTIONS(3039), + [anon_sym_register] = ACTIONS(3039), + [anon_sym_inline] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_restrict] = ACTIONS(3039), + [anon_sym_volatile] = ACTIONS(3039), + [anon_sym__Atomic] = ACTIONS(3039), + [anon_sym_unsigned] = ACTIONS(3039), + [anon_sym_long] = ACTIONS(3039), + [anon_sym_short] = ACTIONS(3039), + [sym_primitive_type] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_switch] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_do] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_goto] = ACTIONS(3039), + [anon_sym_AMP] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), + [anon_sym_PLUS] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3041), + [anon_sym_sizeof] = ACTIONS(3039), + [sym_number_literal] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3041), + [sym_true] = ACTIONS(3039), + [sym_false] = ACTIONS(3039), + [sym_null] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3039), + [sym_comment] = ACTIONS(81), + }, + [1215] = { + [sym_compound_statement] = STATE(1113), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1069), + [sym_comment] = ACTIONS(81), + }, + [1216] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3732), + [sym_comment] = ACTIONS(81), + }, + [1217] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1265), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3732), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1218] = { + [sym__expression] = STATE(1266), + [sym_conditional_expression] = STATE(1266), + [sym_assignment_expression] = STATE(1266), + [sym_pointer_expression] = STATE(1266), + [sym_logical_expression] = STATE(1266), + [sym_bitwise_expression] = STATE(1266), + [sym_equality_expression] = STATE(1266), + [sym_relational_expression] = STATE(1266), + [sym_shift_expression] = STATE(1266), + [sym_math_expression] = STATE(1266), + [sym_cast_expression] = STATE(1266), + [sym_sizeof_expression] = STATE(1266), + [sym_subscript_expression] = STATE(1266), + [sym_call_expression] = STATE(1266), + [sym_field_expression] = STATE(1266), + [sym_compound_literal_expression] = STATE(1266), + [sym_parenthesized_expression] = STATE(1266), + [sym_char_literal] = STATE(1266), + [sym_concatenated_string] = STATE(1266), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3732), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3734), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3736), + [sym_false] = ACTIONS(3736), + [sym_null] = ACTIONS(3736), + [sym_identifier] = ACTIONS(3736), + [sym_comment] = ACTIONS(81), + }, + [1219] = { + [sym_compound_statement] = STATE(1247), + [sym_labeled_statement] = STATE(1247), + [sym_expression_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_break_statement] = STATE(1247), + [sym_continue_statement] = STATE(1247), + [sym_goto_statement] = STATE(1247), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1071), + [sym_comment] = ACTIONS(81), + }, + [1220] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3738), + [sym_comment] = ACTIONS(81), }, - [1180] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3515), - [sym_comment] = ACTIONS(85), + [1221] = { + [sym_argument_list] = STATE(145), + [anon_sym_COMMA] = ACTIONS(2868), + [anon_sym_RBRACE] = ACTIONS(2868), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(2609), + [anon_sym_QMARK] = ACTIONS(2611), + [anon_sym_STAR_EQ] = ACTIONS(2613), + [anon_sym_SLASH_EQ] = ACTIONS(2613), + [anon_sym_PERCENT_EQ] = ACTIONS(2613), + [anon_sym_PLUS_EQ] = ACTIONS(2613), + [anon_sym_DASH_EQ] = ACTIONS(2613), + [anon_sym_LT_LT_EQ] = ACTIONS(2613), + [anon_sym_GT_GT_EQ] = ACTIONS(2613), + [anon_sym_AMP_EQ] = ACTIONS(2613), + [anon_sym_CARET_EQ] = ACTIONS(2613), + [anon_sym_PIPE_EQ] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_PIPE] = ACTIONS(2621), + [anon_sym_CARET] = ACTIONS(2623), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1181] = { - [sym_compound_statement] = STATE(1023), - [sym_labeled_statement] = STATE(1023), - [sym_expression_statement] = STATE(1023), - [sym_if_statement] = STATE(1023), - [sym_switch_statement] = STATE(1023), - [sym_case_statement] = STATE(1023), - [sym_while_statement] = STATE(1023), - [sym_do_statement] = STATE(1023), - [sym_for_statement] = STATE(1023), - [sym_return_statement] = STATE(1023), - [sym_break_statement] = STATE(1023), - [sym_continue_statement] = STATE(1023), - [sym_goto_statement] = STATE(1023), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1222] = { + [sym_compound_statement] = STATE(1192), + [sym_labeled_statement] = STATE(1192), + [sym_expression_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_break_statement] = STATE(1192), + [sym_continue_statement] = STATE(1192), + [sym_goto_statement] = STATE(1192), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(535), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(537), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(539), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1169), - [sym_comment] = ACTIONS(85), - }, - [1182] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1231), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3517), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(541), + [sym_comment] = ACTIONS(81), }, - [1183] = { - [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(80), - [anon_sym_RPAREN] = ACTIONS(3517), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3519), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3521), - [sym_false] = ACTIONS(3521), - [sym_null] = ACTIONS(3521), - [sym_identifier] = ACTIONS(3521), - [sym_comment] = ACTIONS(85), + [1223] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3740), + [sym_comment] = ACTIONS(81), }, - [1184] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3523), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1224] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1269), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3740), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1185] = { - [sym_compound_statement] = STATE(1207), - [sym_labeled_statement] = STATE(1207), - [sym_expression_statement] = STATE(1207), - [sym_if_statement] = STATE(1207), - [sym_switch_statement] = STATE(1207), - [sym_case_statement] = STATE(1207), - [sym_while_statement] = STATE(1207), - [sym_do_statement] = STATE(1207), - [sym_for_statement] = STATE(1207), - [sym_return_statement] = STATE(1207), - [sym_break_statement] = STATE(1207), - [sym_continue_statement] = STATE(1207), - [sym_goto_statement] = STATE(1207), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1225] = { + [sym_compound_statement] = STATE(753), + [sym_labeled_statement] = STATE(753), + [sym_expression_statement] = STATE(753), + [sym_if_statement] = STATE(753), + [sym_switch_statement] = STATE(753), + [sym_while_statement] = STATE(753), + [sym_do_statement] = STATE(753), + [sym_for_statement] = STATE(753), + [sym_return_statement] = STATE(753), + [sym_break_statement] = STATE(753), + [sym_continue_statement] = STATE(753), + [sym_goto_statement] = STATE(753), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(2712), + [sym_comment] = ACTIONS(81), }, - [1186] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3525), - [sym_comment] = ACTIONS(85), + [1226] = { + [sym__expression] = STATE(1271), + [sym_conditional_expression] = STATE(1271), + [sym_assignment_expression] = STATE(1271), + [sym_pointer_expression] = STATE(1271), + [sym_logical_expression] = STATE(1271), + [sym_bitwise_expression] = STATE(1271), + [sym_equality_expression] = STATE(1271), + [sym_relational_expression] = STATE(1271), + [sym_shift_expression] = STATE(1271), + [sym_math_expression] = STATE(1271), + [sym_cast_expression] = STATE(1271), + [sym_sizeof_expression] = STATE(1271), + [sym_subscript_expression] = STATE(1271), + [sym_call_expression] = STATE(1271), + [sym_field_expression] = STATE(1271), + [sym_compound_literal_expression] = STATE(1271), + [sym_parenthesized_expression] = STATE(1271), + [sym_char_literal] = STATE(1271), + [sym_concatenated_string] = STATE(1271), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3744), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3746), + [sym_false] = ACTIONS(3746), + [sym_null] = ACTIONS(3746), + [sym_identifier] = ACTIONS(3746), + [sym_comment] = ACTIONS(81), }, - [1187] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1235), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3525), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1227] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1188] = { - [sym_type_qualifier] = STATE(1188), - [aux_sym_type_definition_repeat1] = STATE(1188), - [anon_sym_RPAREN] = ACTIONS(2261), - [anon_sym_LPAREN2] = ACTIONS(2261), - [anon_sym_STAR] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_restrict] = ACTIONS(1127), - [anon_sym_volatile] = ACTIONS(1127), - [anon_sym__Atomic] = ACTIONS(1127), - [sym_identifier] = ACTIONS(1130), - [sym_comment] = ACTIONS(85), + [1228] = { + [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(107), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3750), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3752), + [sym_false] = ACTIONS(3752), + [sym_null] = ACTIONS(3752), + [sym_identifier] = ACTIONS(3752), + [sym_comment] = ACTIONS(81), }, - [1189] = { - [sym__expression] = STATE(518), - [sym_conditional_expression] = STATE(518), - [sym_assignment_expression] = STATE(518), - [sym_pointer_expression] = STATE(518), - [sym_logical_expression] = STATE(518), - [sym_bitwise_expression] = STATE(518), - [sym_equality_expression] = STATE(518), - [sym_relational_expression] = STATE(518), - [sym_shift_expression] = STATE(518), - [sym_math_expression] = STATE(518), - [sym_cast_expression] = STATE(518), - [sym_sizeof_expression] = STATE(518), - [sym_subscript_expression] = STATE(518), - [sym_call_expression] = STATE(518), - [sym_field_expression] = STATE(518), - [sym_compound_literal_expression] = STATE(518), - [sym_parenthesized_expression] = STATE(518), - [sym_initializer_list] = STATE(519), - [sym_char_literal] = STATE(518), - [sym_concatenated_string] = STATE(518), - [sym_string_literal] = STATE(779), - [anon_sym_COMMA] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(3527), - [anon_sym_LBRACK] = ACTIONS(2245), - [anon_sym_EQ] = ACTIONS(2249), - [anon_sym_QMARK] = ACTIONS(2245), - [anon_sym_STAR_EQ] = ACTIONS(2245), - [anon_sym_SLASH_EQ] = ACTIONS(2245), - [anon_sym_PERCENT_EQ] = ACTIONS(2245), - [anon_sym_PLUS_EQ] = ACTIONS(2245), - [anon_sym_DASH_EQ] = ACTIONS(2245), - [anon_sym_LT_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_GT_EQ] = ACTIONS(2245), - [anon_sym_AMP_EQ] = ACTIONS(2245), - [anon_sym_CARET_EQ] = ACTIONS(2245), - [anon_sym_PIPE_EQ] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(3527), - [anon_sym_PIPE_PIPE] = ACTIONS(2245), - [anon_sym_AMP_AMP] = ACTIONS(2245), - [anon_sym_BANG] = ACTIONS(3529), - [anon_sym_PIPE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_EQ_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ] = ACTIONS(2245), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_GT] = ACTIONS(2249), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_GT_GT] = ACTIONS(2249), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2249), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [anon_sym_DOT] = ACTIONS(2245), - [anon_sym_DASH_GT] = ACTIONS(2245), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [sym_identifier] = ACTIONS(1387), - [sym_comment] = ACTIONS(85), + [1229] = { + [sym_compound_statement] = STATE(1274), + [sym_labeled_statement] = STATE(1274), + [sym_expression_statement] = STATE(1274), + [sym_if_statement] = STATE(1274), + [sym_switch_statement] = STATE(1274), + [sym_while_statement] = STATE(1274), + [sym_do_statement] = STATE(1274), + [sym_for_statement] = STATE(1274), + [sym_return_statement] = STATE(1274), + [sym_break_statement] = STATE(1274), + [sym_continue_statement] = STATE(1274), + [sym_goto_statement] = STATE(1274), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3435), + [sym_comment] = ACTIONS(81), }, - [1190] = { - [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(779), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(3531), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3533), - [sym_false] = ACTIONS(3533), - [sym_null] = ACTIONS(3533), - [sym_identifier] = ACTIONS(3533), - [sym_comment] = ACTIONS(85), + [1230] = { + [sym_compound_statement] = STATE(264), + [sym_labeled_statement] = STATE(264), + [sym_expression_statement] = STATE(264), + [sym_if_statement] = STATE(264), + [sym_switch_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_do_statement] = STATE(264), + [sym_for_statement] = STATE(264), + [sym_return_statement] = STATE(264), + [sym_break_statement] = STATE(264), + [sym_continue_statement] = STATE(264), + [sym_goto_statement] = STATE(264), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3435), + [sym_comment] = ACTIONS(81), }, - [1191] = { - [anon_sym_COMMA] = ACTIONS(3535), - [anon_sym_RPAREN] = ACTIONS(3535), - [anon_sym_SEMI] = ACTIONS(3535), - [anon_sym_RBRACE] = ACTIONS(3535), - [anon_sym_LPAREN2] = ACTIONS(3535), - [anon_sym_STAR] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3535), - [anon_sym_RBRACK] = ACTIONS(3535), - [anon_sym_EQ] = ACTIONS(3537), - [anon_sym_COLON] = ACTIONS(3535), - [anon_sym_QMARK] = ACTIONS(3535), - [anon_sym_STAR_EQ] = ACTIONS(3535), - [anon_sym_SLASH_EQ] = ACTIONS(3535), - [anon_sym_PERCENT_EQ] = ACTIONS(3535), - [anon_sym_PLUS_EQ] = ACTIONS(3535), - [anon_sym_DASH_EQ] = ACTIONS(3535), - [anon_sym_LT_LT_EQ] = ACTIONS(3535), - [anon_sym_GT_GT_EQ] = ACTIONS(3535), - [anon_sym_AMP_EQ] = ACTIONS(3535), - [anon_sym_CARET_EQ] = ACTIONS(3535), - [anon_sym_PIPE_EQ] = ACTIONS(3535), - [anon_sym_AMP] = ACTIONS(3537), - [anon_sym_PIPE_PIPE] = ACTIONS(3535), - [anon_sym_AMP_AMP] = ACTIONS(3535), - [anon_sym_PIPE] = ACTIONS(3537), - [anon_sym_CARET] = ACTIONS(3537), - [anon_sym_EQ_EQ] = ACTIONS(3535), - [anon_sym_BANG_EQ] = ACTIONS(3535), - [anon_sym_LT] = ACTIONS(3537), - [anon_sym_GT] = ACTIONS(3537), - [anon_sym_LT_EQ] = ACTIONS(3535), - [anon_sym_GT_EQ] = ACTIONS(3535), - [anon_sym_LT_LT] = ACTIONS(3537), - [anon_sym_GT_GT] = ACTIONS(3537), - [anon_sym_PLUS] = ACTIONS(3537), - [anon_sym_DASH] = ACTIONS(3537), - [anon_sym_SLASH] = ACTIONS(3537), - [anon_sym_PERCENT] = ACTIONS(3537), - [anon_sym_DASH_DASH] = ACTIONS(3535), - [anon_sym_PLUS_PLUS] = ACTIONS(3535), - [anon_sym_DOT] = ACTIONS(3535), - [anon_sym_DASH_GT] = ACTIONS(3535), - [sym_comment] = ACTIONS(85), + [1231] = { + [sym_declaration] = STATE(1275), + [sym__declaration_specifiers] = STATE(273), + [sym_storage_class_specifier] = STATE(201), + [sym_type_qualifier] = STATE(201), + [sym__type_specifier] = STATE(200), + [sym_sized_type_specifier] = STATE(200), + [sym_enum_specifier] = STATE(200), + [sym_struct_specifier] = STATE(200), + [sym_union_specifier] = STATE(200), + [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(107), + [sym_macro_type_specifier] = STATE(200), + [aux_sym__declaration_specifiers_repeat1] = STATE(201), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), + [anon_sym_SEMI] = ACTIONS(3754), + [anon_sym_extern] = ACTIONS(29), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_static] = ACTIONS(29), + [anon_sym_auto] = ACTIONS(29), + [anon_sym_register] = ACTIONS(29), + [anon_sym_inline] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_restrict] = ACTIONS(31), + [anon_sym_volatile] = ACTIONS(31), + [anon_sym__Atomic] = ACTIONS(31), + [anon_sym_unsigned] = ACTIONS(411), + [anon_sym_long] = ACTIONS(411), + [anon_sym_short] = ACTIONS(411), + [sym_primitive_type] = ACTIONS(413), + [anon_sym_enum] = ACTIONS(37), + [anon_sym_struct] = ACTIONS(39), + [anon_sym_union] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3758), + [sym_false] = ACTIONS(3758), + [sym_null] = ACTIONS(3758), + [sym_identifier] = ACTIONS(559), + [sym_comment] = ACTIONS(81), }, - [1192] = { - [sym__expression] = STATE(1103), - [sym_conditional_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1103), - [sym_pointer_expression] = STATE(1103), - [sym_logical_expression] = STATE(1103), - [sym_bitwise_expression] = STATE(1103), - [sym_equality_expression] = STATE(1103), - [sym_relational_expression] = STATE(1103), - [sym_shift_expression] = STATE(1103), - [sym_math_expression] = STATE(1103), - [sym_cast_expression] = STATE(1103), - [sym_sizeof_expression] = STATE(1103), - [sym_subscript_expression] = STATE(1103), - [sym_call_expression] = STATE(1103), - [sym_field_expression] = STATE(1103), - [sym_compound_literal_expression] = STATE(1103), - [sym_parenthesized_expression] = STATE(1103), - [sym_initializer_list] = STATE(1104), - [sym_initializer_pair] = STATE(1104), - [sym_subscript_designator] = STATE(780), - [sym_field_designator] = STATE(780), - [sym_char_literal] = STATE(1103), - [sym_concatenated_string] = STATE(1103), - [sym_string_literal] = STATE(779), - [aux_sym_initializer_pair_repeat1] = STATE(780), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2078), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2086), - [anon_sym_DOT] = ACTIONS(2088), - [sym_number_literal] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3153), - [sym_false] = ACTIONS(3153), - [sym_null] = ACTIONS(3153), - [sym_identifier] = ACTIONS(3153), - [sym_comment] = ACTIONS(85), + [1232] = { + [sym_compound_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3435), + [sym_comment] = ACTIONS(81), }, - [1193] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3539), - [sym_comment] = ACTIONS(85), + [1233] = { + [sym_compound_statement] = STATE(753), + [sym_labeled_statement] = STATE(753), + [sym_expression_statement] = STATE(753), + [sym_if_statement] = STATE(753), + [sym_switch_statement] = STATE(753), + [sym_while_statement] = STATE(753), + [sym_do_statement] = STATE(753), + [sym_for_statement] = STATE(753), + [sym_return_statement] = STATE(753), + [sym_break_statement] = STATE(753), + [sym_continue_statement] = STATE(753), + [sym_goto_statement] = STATE(753), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3437), + [sym_comment] = ACTIONS(81), }, - [1194] = { - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_RPAREN] = ACTIONS(3541), - [anon_sym_SEMI] = ACTIONS(3541), - [anon_sym_LPAREN2] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_COLON] = ACTIONS(3541), - [sym_comment] = ACTIONS(85), + [1234] = { + [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(75), + [anon_sym_RPAREN] = ACTIONS(3760), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3762), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3764), + [sym_false] = ACTIONS(3764), + [sym_null] = ACTIONS(3764), + [sym_identifier] = ACTIONS(3764), + [sym_comment] = ACTIONS(81), }, - [1195] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3543), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3545), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3545), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3545), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3545), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3545), - [anon_sym_extern] = ACTIONS(3543), - [anon_sym_RBRACE] = ACTIONS(3545), - [anon_sym_static] = ACTIONS(3543), - [anon_sym_auto] = ACTIONS(3543), - [anon_sym_register] = ACTIONS(3543), - [anon_sym_inline] = ACTIONS(3543), - [anon_sym_const] = ACTIONS(3543), - [anon_sym_restrict] = ACTIONS(3543), - [anon_sym_volatile] = ACTIONS(3543), - [anon_sym__Atomic] = ACTIONS(3543), - [anon_sym_unsigned] = ACTIONS(3543), - [anon_sym_long] = ACTIONS(3543), - [anon_sym_short] = ACTIONS(3543), - [sym_primitive_type] = ACTIONS(3543), - [anon_sym_enum] = ACTIONS(3543), - [anon_sym_struct] = ACTIONS(3543), - [anon_sym_union] = ACTIONS(3543), - [sym_identifier] = ACTIONS(3543), - [sym_comment] = ACTIONS(85), + [1235] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1196] = { - [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(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1236] = { + [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(107), + [anon_sym_SEMI] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3768), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3770), + [sym_false] = ACTIONS(3770), + [sym_null] = ACTIONS(3770), + [sym_identifier] = ACTIONS(3770), + [sym_comment] = ACTIONS(81), + }, + [1237] = { + [sym_compound_statement] = STATE(1113), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(589), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(81), }, - [1197] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3547), - [sym_comment] = ACTIONS(85), + [1238] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3772), + [sym_comment] = ACTIONS(81), }, - [1198] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1238), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3547), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1239] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1282), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3772), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1199] = { - [sym__expression] = STATE(1239), - [sym_conditional_expression] = STATE(1239), - [sym_assignment_expression] = STATE(1239), - [sym_pointer_expression] = STATE(1239), - [sym_logical_expression] = STATE(1239), - [sym_bitwise_expression] = STATE(1239), - [sym_equality_expression] = STATE(1239), - [sym_relational_expression] = STATE(1239), - [sym_shift_expression] = STATE(1239), - [sym_math_expression] = STATE(1239), - [sym_cast_expression] = STATE(1239), - [sym_sizeof_expression] = STATE(1239), - [sym_subscript_expression] = STATE(1239), - [sym_call_expression] = STATE(1239), - [sym_field_expression] = STATE(1239), - [sym_compound_literal_expression] = STATE(1239), - [sym_parenthesized_expression] = STATE(1239), - [sym_char_literal] = STATE(1239), - [sym_concatenated_string] = STATE(1239), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3547), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3549), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3551), - [sym_false] = ACTIONS(3551), - [sym_null] = ACTIONS(3551), - [sym_identifier] = ACTIONS(3551), - [sym_comment] = ACTIONS(85), + [1240] = { + [sym__expression] = STATE(1283), + [sym_conditional_expression] = STATE(1283), + [sym_assignment_expression] = STATE(1283), + [sym_pointer_expression] = STATE(1283), + [sym_logical_expression] = STATE(1283), + [sym_bitwise_expression] = STATE(1283), + [sym_equality_expression] = STATE(1283), + [sym_relational_expression] = STATE(1283), + [sym_shift_expression] = STATE(1283), + [sym_math_expression] = STATE(1283), + [sym_cast_expression] = STATE(1283), + [sym_sizeof_expression] = STATE(1283), + [sym_subscript_expression] = STATE(1283), + [sym_call_expression] = STATE(1283), + [sym_field_expression] = STATE(1283), + [sym_compound_literal_expression] = STATE(1283), + [sym_parenthesized_expression] = STATE(1283), + [sym_char_literal] = STATE(1283), + [sym_concatenated_string] = STATE(1283), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3772), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3774), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3776), + [sym_false] = ACTIONS(3776), + [sym_null] = ACTIONS(3776), + [sym_identifier] = ACTIONS(3776), + [sym_comment] = ACTIONS(81), }, - [1200] = { - [sym_compound_statement] = STATE(1023), - [sym_labeled_statement] = STATE(1023), - [sym_expression_statement] = STATE(1023), - [sym_if_statement] = STATE(1023), - [sym_switch_statement] = STATE(1023), - [sym_case_statement] = STATE(1023), - [sym_while_statement] = STATE(1023), - [sym_do_statement] = STATE(1023), - [sym_for_statement] = STATE(1023), - [sym_return_statement] = STATE(1023), - [sym_break_statement] = STATE(1023), - [sym_continue_statement] = STATE(1023), - [sym_goto_statement] = STATE(1023), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1241] = { + [sym_compound_statement] = STATE(1113), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1528), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1370), + [sym_comment] = ACTIONS(81), }, - [1201] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1241), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3553), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1242] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3778), + [sym_comment] = ACTIONS(81), }, - [1202] = { - [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(80), - [anon_sym_RPAREN] = ACTIONS(3553), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3555), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3557), - [sym_false] = ACTIONS(3557), - [sym_null] = ACTIONS(3557), - [sym_identifier] = ACTIONS(3557), - [sym_comment] = ACTIONS(85), + [1243] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1285), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1203] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3559), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1244] = { + [sym__expression] = STATE(1286), + [sym_conditional_expression] = STATE(1286), + [sym_assignment_expression] = STATE(1286), + [sym_pointer_expression] = STATE(1286), + [sym_logical_expression] = STATE(1286), + [sym_bitwise_expression] = STATE(1286), + [sym_equality_expression] = STATE(1286), + [sym_relational_expression] = STATE(1286), + [sym_shift_expression] = STATE(1286), + [sym_math_expression] = STATE(1286), + [sym_cast_expression] = STATE(1286), + [sym_sizeof_expression] = STATE(1286), + [sym_subscript_expression] = STATE(1286), + [sym_call_expression] = STATE(1286), + [sym_field_expression] = STATE(1286), + [sym_compound_literal_expression] = STATE(1286), + [sym_parenthesized_expression] = STATE(1286), + [sym_char_literal] = STATE(1286), + [sym_concatenated_string] = STATE(1286), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3782), + [sym_false] = ACTIONS(3782), + [sym_null] = ACTIONS(3782), + [sym_identifier] = ACTIONS(3782), + [sym_comment] = ACTIONS(81), }, - [1204] = { - [sym_compound_statement] = STATE(1207), - [sym_labeled_statement] = STATE(1207), - [sym_expression_statement] = STATE(1207), - [sym_if_statement] = STATE(1207), - [sym_switch_statement] = STATE(1207), - [sym_case_statement] = STATE(1207), - [sym_while_statement] = STATE(1207), - [sym_do_statement] = STATE(1207), - [sym_for_statement] = STATE(1207), - [sym_return_statement] = STATE(1207), - [sym_break_statement] = STATE(1207), - [sym_continue_statement] = STATE(1207), - [sym_goto_statement] = STATE(1207), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1245] = { + [sym_compound_statement] = STATE(1247), + [sym_labeled_statement] = STATE(1247), + [sym_expression_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_break_statement] = STATE(1247), + [sym_continue_statement] = STATE(1247), + [sym_goto_statement] = STATE(1247), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(201), - [anon_sym_switch] = ACTIONS(203), - [anon_sym_case] = ACTIONS(205), - [anon_sym_default] = ACTIONS(207), - [anon_sym_while] = ACTIONS(209), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(213), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(173), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(215), - [sym_comment] = ACTIONS(85), - }, - [1205] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3561), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(181), + [sym_comment] = ACTIONS(81), }, - [1206] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1245), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3561), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1246] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3784), + [sym_comment] = ACTIONS(81), }, - [1207] = { - [ts_builtin_sym_end] = ACTIONS(3563), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3565), - [sym_preproc_directive] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3563), - [anon_sym_typedef] = ACTIONS(3565), - [anon_sym_extern] = ACTIONS(3565), - [anon_sym_LBRACE] = ACTIONS(3563), - [anon_sym_RBRACE] = ACTIONS(3563), - [anon_sym_LPAREN2] = ACTIONS(3563), - [anon_sym_STAR] = ACTIONS(3563), - [anon_sym_static] = ACTIONS(3565), - [anon_sym_auto] = ACTIONS(3565), - [anon_sym_register] = ACTIONS(3565), - [anon_sym_inline] = ACTIONS(3565), - [anon_sym_const] = ACTIONS(3565), - [anon_sym_restrict] = ACTIONS(3565), - [anon_sym_volatile] = ACTIONS(3565), - [anon_sym__Atomic] = ACTIONS(3565), - [anon_sym_unsigned] = ACTIONS(3565), - [anon_sym_long] = ACTIONS(3565), - [anon_sym_short] = ACTIONS(3565), - [sym_primitive_type] = ACTIONS(3565), - [anon_sym_enum] = ACTIONS(3565), - [anon_sym_struct] = ACTIONS(3565), - [anon_sym_union] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_else] = ACTIONS(3565), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_case] = ACTIONS(3565), - [anon_sym_default] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_break] = ACTIONS(3565), - [anon_sym_continue] = ACTIONS(3565), - [anon_sym_goto] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3563), - [anon_sym_BANG] = ACTIONS(3563), - [anon_sym_TILDE] = ACTIONS(3563), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_DASH_DASH] = ACTIONS(3563), - [anon_sym_PLUS_PLUS] = ACTIONS(3563), - [anon_sym_sizeof] = ACTIONS(3565), - [sym_number_literal] = ACTIONS(3563), - [anon_sym_SQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE] = ACTIONS(3563), - [sym_true] = ACTIONS(3565), - [sym_false] = ACTIONS(3565), - [sym_null] = ACTIONS(3565), - [sym_identifier] = ACTIONS(3565), - [sym_comment] = ACTIONS(85), + [1247] = { + [ts_builtin_sym_end] = ACTIONS(3786), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3788), + [sym_preproc_directive] = ACTIONS(3788), + [anon_sym_SEMI] = ACTIONS(3786), + [anon_sym_typedef] = ACTIONS(3788), + [anon_sym_extern] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_RBRACE] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3786), + [anon_sym_STAR] = ACTIONS(3786), + [anon_sym_static] = ACTIONS(3788), + [anon_sym_auto] = ACTIONS(3788), + [anon_sym_register] = ACTIONS(3788), + [anon_sym_inline] = ACTIONS(3788), + [anon_sym_const] = ACTIONS(3788), + [anon_sym_restrict] = ACTIONS(3788), + [anon_sym_volatile] = ACTIONS(3788), + [anon_sym__Atomic] = ACTIONS(3788), + [anon_sym_unsigned] = ACTIONS(3788), + [anon_sym_long] = ACTIONS(3788), + [anon_sym_short] = ACTIONS(3788), + [sym_primitive_type] = ACTIONS(3788), + [anon_sym_enum] = ACTIONS(3788), + [anon_sym_struct] = ACTIONS(3788), + [anon_sym_union] = ACTIONS(3788), + [anon_sym_if] = ACTIONS(3788), + [anon_sym_else] = ACTIONS(3788), + [anon_sym_switch] = ACTIONS(3788), + [anon_sym_case] = ACTIONS(3788), + [anon_sym_default] = ACTIONS(3788), + [anon_sym_while] = ACTIONS(3788), + [anon_sym_do] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3788), + [anon_sym_return] = ACTIONS(3788), + [anon_sym_break] = ACTIONS(3788), + [anon_sym_continue] = ACTIONS(3788), + [anon_sym_goto] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_BANG] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3788), + [anon_sym_DASH] = ACTIONS(3788), + [anon_sym_DASH_DASH] = ACTIONS(3786), + [anon_sym_PLUS_PLUS] = ACTIONS(3786), + [anon_sym_sizeof] = ACTIONS(3788), + [sym_number_literal] = ACTIONS(3786), + [anon_sym_SQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [sym_true] = ACTIONS(3788), + [sym_false] = ACTIONS(3788), + [sym_null] = ACTIONS(3788), + [sym_identifier] = ACTIONS(3788), + [sym_comment] = ACTIONS(81), }, - [1208] = { - [sym_compound_statement] = STATE(1246), - [sym_labeled_statement] = STATE(1246), - [sym_expression_statement] = STATE(1246), - [sym_if_statement] = STATE(1246), - [sym_switch_statement] = STATE(1246), - [sym_case_statement] = STATE(1246), - [sym_while_statement] = STATE(1246), - [sym_do_statement] = STATE(1246), - [sym_for_statement] = STATE(1246), - [sym_return_statement] = STATE(1246), - [sym_break_statement] = STATE(1246), - [sym_continue_statement] = STATE(1246), - [sym_goto_statement] = STATE(1246), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1248] = { + [sym_compound_statement] = STATE(1288), + [sym_labeled_statement] = STATE(1288), + [sym_expression_statement] = STATE(1288), + [sym_if_statement] = STATE(1288), + [sym_switch_statement] = STATE(1288), + [sym_while_statement] = STATE(1288), + [sym_do_statement] = STATE(1288), + [sym_for_statement] = STATE(1288), + [sym_return_statement] = STATE(1288), + [sym_break_statement] = STATE(1288), + [sym_continue_statement] = STATE(1288), + [sym_goto_statement] = STATE(1288), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), [anon_sym_if] = ACTIONS(43), [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_while] = ACTIONS(51), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_while] = ACTIONS(47), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(85), - }, - [1209] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3567), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(545), + [sym_comment] = ACTIONS(81), }, - [1210] = { - [sym_compound_statement] = STATE(1158), - [sym_labeled_statement] = STATE(1158), - [sym_expression_statement] = STATE(1158), - [sym_if_statement] = STATE(1158), - [sym_switch_statement] = STATE(1158), - [sym_case_statement] = STATE(1158), - [sym_while_statement] = STATE(1158), - [sym_do_statement] = STATE(1158), - [sym_for_statement] = STATE(1158), - [sym_return_statement] = STATE(1158), - [sym_break_statement] = STATE(1158), - [sym_continue_statement] = STATE(1158), - [sym_goto_statement] = STATE(1158), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), + [1249] = { + [sym_compound_statement] = STATE(1200), + [sym_labeled_statement] = STATE(1200), + [sym_expression_statement] = STATE(1200), + [sym_if_statement] = STATE(1200), + [sym_switch_statement] = STATE(1200), + [sym_while_statement] = STATE(1200), + [sym_do_statement] = STATE(1200), + [sym_for_statement] = STATE(1200), + [sym_return_statement] = STATE(1200), + [sym_break_statement] = STATE(1200), + [sym_continue_statement] = STATE(1200), + [sym_goto_statement] = STATE(1200), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_case] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(2282), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2406), - [sym_comment] = ACTIONS(85), - }, - [1211] = { - [sym__expression] = STATE(1249), - [sym_conditional_expression] = STATE(1249), - [sym_assignment_expression] = STATE(1249), - [sym_pointer_expression] = STATE(1249), - [sym_logical_expression] = STATE(1249), - [sym_bitwise_expression] = STATE(1249), - [sym_equality_expression] = STATE(1249), - [sym_relational_expression] = STATE(1249), - [sym_shift_expression] = STATE(1249), - [sym_math_expression] = STATE(1249), - [sym_cast_expression] = STATE(1249), - [sym_sizeof_expression] = STATE(1249), - [sym_subscript_expression] = STATE(1249), - [sym_call_expression] = STATE(1249), - [sym_field_expression] = STATE(1249), - [sym_compound_literal_expression] = STATE(1249), - [sym_parenthesized_expression] = STATE(1249), - [sym_char_literal] = STATE(1249), - [sym_concatenated_string] = STATE(1249), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3571), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3573), - [sym_false] = ACTIONS(3573), - [sym_null] = ACTIONS(3573), - [sym_identifier] = ACTIONS(3573), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2288), + [sym_comment] = ACTIONS(81), }, - [1212] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3575), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1250] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1290), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3790), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1213] = { - [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(123), - [anon_sym_SEMI] = ACTIONS(3575), - [anon_sym_LPAREN2] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(225), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_DASH_DASH] = ACTIONS(231), - [anon_sym_PLUS_PLUS] = ACTIONS(231), - [anon_sym_sizeof] = ACTIONS(233), - [sym_number_literal] = ACTIONS(3577), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3579), - [sym_false] = ACTIONS(3579), - [sym_null] = ACTIONS(3579), - [sym_identifier] = ACTIONS(3579), - [sym_comment] = ACTIONS(85), + [1251] = { + [sym__expression] = STATE(1291), + [sym_conditional_expression] = STATE(1291), + [sym_assignment_expression] = STATE(1291), + [sym_pointer_expression] = STATE(1291), + [sym_logical_expression] = STATE(1291), + [sym_bitwise_expression] = STATE(1291), + [sym_equality_expression] = STATE(1291), + [sym_relational_expression] = STATE(1291), + [sym_shift_expression] = STATE(1291), + [sym_math_expression] = STATE(1291), + [sym_cast_expression] = STATE(1291), + [sym_sizeof_expression] = STATE(1291), + [sym_subscript_expression] = STATE(1291), + [sym_call_expression] = STATE(1291), + [sym_field_expression] = STATE(1291), + [sym_compound_literal_expression] = STATE(1291), + [sym_parenthesized_expression] = STATE(1291), + [sym_char_literal] = STATE(1291), + [sym_concatenated_string] = STATE(1291), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3790), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3792), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3794), + [sym_false] = ACTIONS(3794), + [sym_null] = ACTIONS(3794), + [sym_identifier] = ACTIONS(3794), + [sym_comment] = ACTIONS(81), }, - [1214] = { - [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(85), + [1252] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3796), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1215] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3294), - [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(3292), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_LPAREN2] = ACTIONS(3292), - [anon_sym_STAR] = ACTIONS(3292), - [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_else] = 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(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_sizeof] = ACTIONS(3294), - [sym_number_literal] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3294), - [sym_comment] = ACTIONS(85), + [1253] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3574), + [sym_preproc_directive] = ACTIONS(3574), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym_typedef] = ACTIONS(3574), + [anon_sym_extern] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3574), + [anon_sym_auto] = ACTIONS(3574), + [anon_sym_register] = ACTIONS(3574), + [anon_sym_inline] = ACTIONS(3574), + [anon_sym_const] = ACTIONS(3574), + [anon_sym_restrict] = ACTIONS(3574), + [anon_sym_volatile] = ACTIONS(3574), + [anon_sym__Atomic] = ACTIONS(3574), + [anon_sym_unsigned] = ACTIONS(3574), + [anon_sym_long] = ACTIONS(3574), + [anon_sym_short] = ACTIONS(3574), + [sym_primitive_type] = ACTIONS(3574), + [anon_sym_enum] = ACTIONS(3574), + [anon_sym_struct] = ACTIONS(3574), + [anon_sym_union] = ACTIONS(3574), + [anon_sym_if] = ACTIONS(3574), + [anon_sym_else] = ACTIONS(3574), + [anon_sym_switch] = ACTIONS(3574), + [anon_sym_while] = ACTIONS(3574), + [anon_sym_do] = ACTIONS(3574), + [anon_sym_for] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3574), + [anon_sym_break] = ACTIONS(3574), + [anon_sym_continue] = ACTIONS(3574), + [anon_sym_goto] = ACTIONS(3574), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3574), + [sym_number_literal] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [sym_true] = ACTIONS(3574), + [sym_false] = ACTIONS(3574), + [sym_null] = ACTIONS(3574), + [sym_identifier] = ACTIONS(3574), + [sym_comment] = ACTIONS(81), }, - [1216] = { - [sym_compound_statement] = STATE(1252), - [sym_labeled_statement] = STATE(1252), - [sym_expression_statement] = STATE(1252), - [sym_if_statement] = STATE(1252), - [sym_switch_statement] = STATE(1252), - [sym_case_statement] = STATE(1252), - [sym_while_statement] = STATE(1252), - [sym_do_statement] = STATE(1252), - [sym_for_statement] = STATE(1252), - [sym_return_statement] = STATE(1252), - [sym_break_statement] = STATE(1252), - [sym_continue_statement] = STATE(1252), - [sym_goto_statement] = STATE(1252), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), + [1254] = { + [sym_compound_statement] = STATE(1293), + [sym_labeled_statement] = STATE(1293), + [sym_expression_statement] = STATE(1293), + [sym_if_statement] = STATE(1293), + [sym_switch_statement] = STATE(1293), + [sym_while_statement] = STATE(1293), + [sym_do_statement] = STATE(1293), + [sym_for_statement] = STATE(1293), + [sym_return_statement] = STATE(1293), + [sym_break_statement] = STATE(1293), + [sym_continue_statement] = STATE(1293), + [sym_goto_statement] = STATE(1293), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2408), - [sym_comment] = ACTIONS(85), - }, - [1217] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3581), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2292), + [sym_comment] = ACTIONS(81), }, - [1218] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1254), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3581), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1255] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3798), + [sym_comment] = ACTIONS(81), }, - [1219] = { - [sym__expression] = STATE(1255), - [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(80), - [anon_sym_RPAREN] = ACTIONS(3581), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3583), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3585), - [sym_false] = ACTIONS(3585), - [sym_null] = ACTIONS(3585), - [sym_identifier] = ACTIONS(3585), - [sym_comment] = ACTIONS(85), + [1256] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1295), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3798), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1220] = { - [sym_compound_statement] = STATE(1170), - [sym_labeled_statement] = STATE(1170), - [sym_expression_statement] = STATE(1170), - [sym_if_statement] = STATE(1170), - [sym_switch_statement] = STATE(1170), - [sym_case_statement] = STATE(1170), - [sym_while_statement] = STATE(1170), - [sym_do_statement] = STATE(1170), - [sym_for_statement] = STATE(1170), - [sym_return_statement] = STATE(1170), - [sym_break_statement] = STATE(1170), - [sym_continue_statement] = STATE(1170), - [sym_goto_statement] = STATE(1170), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [1257] = { + [sym_compound_statement] = STATE(1209), + [sym_labeled_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_if_statement] = STATE(1209), + [sym_switch_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1846), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1706), + [sym_comment] = ACTIONS(81), }, - [1221] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1257), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3587), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1258] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3800), + [sym_comment] = ACTIONS(81), }, - [1222] = { - [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(80), - [anon_sym_RPAREN] = ACTIONS(3587), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3589), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3591), - [sym_false] = ACTIONS(3591), - [sym_null] = ACTIONS(3591), - [sym_identifier] = ACTIONS(3591), - [sym_comment] = ACTIONS(85), + [1259] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1297), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3800), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1223] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3593), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1260] = { + [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(75), + [anon_sym_RPAREN] = ACTIONS(3800), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3802), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3804), + [sym_false] = ACTIONS(3804), + [sym_null] = ACTIONS(3804), + [sym_identifier] = ACTIONS(3804), + [sym_comment] = ACTIONS(81), }, - [1224] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3471), - [sym_preproc_directive] = ACTIONS(3471), - [anon_sym_SEMI] = ACTIONS(3469), - [anon_sym_typedef] = ACTIONS(3471), - [anon_sym_extern] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3469), - [anon_sym_STAR] = ACTIONS(3469), - [anon_sym_static] = ACTIONS(3471), - [anon_sym_auto] = ACTIONS(3471), - [anon_sym_register] = ACTIONS(3471), - [anon_sym_inline] = ACTIONS(3471), - [anon_sym_const] = ACTIONS(3471), - [anon_sym_restrict] = ACTIONS(3471), - [anon_sym_volatile] = ACTIONS(3471), - [anon_sym__Atomic] = ACTIONS(3471), - [anon_sym_unsigned] = ACTIONS(3471), - [anon_sym_long] = ACTIONS(3471), - [anon_sym_short] = ACTIONS(3471), - [sym_primitive_type] = ACTIONS(3471), - [anon_sym_enum] = ACTIONS(3471), - [anon_sym_struct] = ACTIONS(3471), - [anon_sym_union] = ACTIONS(3471), - [anon_sym_if] = ACTIONS(3471), - [anon_sym_else] = ACTIONS(3471), - [anon_sym_switch] = ACTIONS(3471), - [anon_sym_case] = ACTIONS(3471), - [anon_sym_default] = ACTIONS(3471), - [anon_sym_while] = ACTIONS(3471), - [anon_sym_do] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3471), - [anon_sym_return] = ACTIONS(3471), - [anon_sym_break] = ACTIONS(3471), - [anon_sym_continue] = ACTIONS(3471), - [anon_sym_goto] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3471), - [anon_sym_DASH] = ACTIONS(3471), - [anon_sym_DASH_DASH] = ACTIONS(3469), - [anon_sym_PLUS_PLUS] = ACTIONS(3469), - [anon_sym_sizeof] = ACTIONS(3471), - [sym_number_literal] = ACTIONS(3469), - [anon_sym_SQUOTE] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [sym_true] = ACTIONS(3471), - [sym_false] = ACTIONS(3471), - [sym_null] = ACTIONS(3471), - [sym_identifier] = ACTIONS(3471), - [sym_comment] = ACTIONS(85), + [1261] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3700), + [sym_preproc_directive] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_typedef] = ACTIONS(3700), + [anon_sym_extern] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3698), + [anon_sym_LPAREN2] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3700), + [anon_sym_auto] = ACTIONS(3700), + [anon_sym_register] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3700), + [anon_sym_volatile] = ACTIONS(3700), + [anon_sym__Atomic] = ACTIONS(3700), + [anon_sym_unsigned] = ACTIONS(3700), + [anon_sym_long] = ACTIONS(3700), + [anon_sym_short] = ACTIONS(3700), + [sym_primitive_type] = ACTIONS(3700), + [anon_sym_enum] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(3700), + [anon_sym_else] = ACTIONS(3700), + [anon_sym_switch] = ACTIONS(3700), + [anon_sym_while] = ACTIONS(3700), + [anon_sym_do] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3700), + [anon_sym_return] = ACTIONS(3700), + [anon_sym_break] = ACTIONS(3700), + [anon_sym_continue] = ACTIONS(3700), + [anon_sym_goto] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_sizeof] = ACTIONS(3700), + [sym_number_literal] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3698), + [sym_true] = ACTIONS(3700), + [sym_false] = ACTIONS(3700), + [sym_null] = ACTIONS(3700), + [sym_identifier] = ACTIONS(3700), + [sym_comment] = ACTIONS(81), }, - [1225] = { - [sym_compound_statement] = STATE(1260), - [sym_labeled_statement] = STATE(1260), - [sym_expression_statement] = STATE(1260), - [sym_if_statement] = STATE(1260), - [sym_switch_statement] = STATE(1260), - [sym_case_statement] = STATE(1260), - [sym_while_statement] = STATE(1260), - [sym_do_statement] = STATE(1260), - [sym_for_statement] = STATE(1260), - [sym_return_statement] = STATE(1260), - [sym_break_statement] = STATE(1260), - [sym_continue_statement] = STATE(1260), - [sym_goto_statement] = STATE(1260), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [1262] = { + [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_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1848), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1710), + [sym_comment] = ACTIONS(81), }, - [1226] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3595), - [sym_comment] = ACTIONS(85), + [1263] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3806), + [sym_comment] = ACTIONS(81), }, - [1227] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1262), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1264] = { + [sym_compound_statement] = STATE(1192), + [sym_labeled_statement] = STATE(1192), + [sym_expression_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_break_statement] = STATE(1192), + [sym_continue_statement] = STATE(1192), + [sym_goto_statement] = STATE(1192), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1069), + [sym_comment] = ACTIONS(81), }, - [1228] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3095), - [sym_preproc_directive] = ACTIONS(3095), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_typedef] = ACTIONS(3095), - [anon_sym_extern] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_LPAREN2] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_auto] = ACTIONS(3095), - [anon_sym_register] = ACTIONS(3095), - [anon_sym_inline] = ACTIONS(3095), - [anon_sym_const] = ACTIONS(3095), - [anon_sym_restrict] = ACTIONS(3095), - [anon_sym_volatile] = ACTIONS(3095), - [anon_sym__Atomic] = ACTIONS(3095), - [anon_sym_unsigned] = ACTIONS(3095), - [anon_sym_long] = ACTIONS(3095), - [anon_sym_short] = ACTIONS(3095), - [sym_primitive_type] = ACTIONS(3095), - [anon_sym_enum] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3095), - [anon_sym_union] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3095), - [anon_sym_switch] = ACTIONS(3095), - [anon_sym_case] = ACTIONS(3095), - [anon_sym_default] = ACTIONS(3095), - [anon_sym_while] = ACTIONS(3095), - [anon_sym_do] = ACTIONS(3095), - [anon_sym_for] = ACTIONS(3095), - [anon_sym_return] = ACTIONS(3095), - [anon_sym_break] = ACTIONS(3095), - [anon_sym_continue] = ACTIONS(3095), - [anon_sym_goto] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_sizeof] = ACTIONS(3095), - [sym_number_literal] = ACTIONS(3097), - [anon_sym_SQUOTE] = ACTIONS(3097), - [anon_sym_DQUOTE] = ACTIONS(3097), - [sym_true] = ACTIONS(3095), - [sym_false] = ACTIONS(3095), - [sym_null] = ACTIONS(3095), - [sym_identifier] = ACTIONS(3095), - [sym_comment] = ACTIONS(85), + [1265] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3808), + [sym_comment] = ACTIONS(81), }, - [1229] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3099), - [sym_preproc_directive] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3101), - [anon_sym_typedef] = ACTIONS(3099), - [anon_sym_extern] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_LPAREN2] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_auto] = ACTIONS(3099), - [anon_sym_register] = ACTIONS(3099), - [anon_sym_inline] = ACTIONS(3099), - [anon_sym_const] = ACTIONS(3099), - [anon_sym_restrict] = ACTIONS(3099), - [anon_sym_volatile] = ACTIONS(3099), - [anon_sym__Atomic] = ACTIONS(3099), - [anon_sym_unsigned] = ACTIONS(3099), - [anon_sym_long] = ACTIONS(3099), - [anon_sym_short] = ACTIONS(3099), - [sym_primitive_type] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3099), - [anon_sym_union] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3099), - [anon_sym_switch] = ACTIONS(3099), - [anon_sym_case] = ACTIONS(3099), - [anon_sym_default] = ACTIONS(3099), - [anon_sym_while] = ACTIONS(3099), - [anon_sym_do] = ACTIONS(3099), - [anon_sym_for] = ACTIONS(3099), - [anon_sym_return] = ACTIONS(3099), - [anon_sym_break] = ACTIONS(3099), - [anon_sym_continue] = ACTIONS(3099), - [anon_sym_goto] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_sizeof] = ACTIONS(3099), - [sym_number_literal] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(3101), - [sym_true] = ACTIONS(3099), - [sym_false] = ACTIONS(3099), - [sym_null] = ACTIONS(3099), - [sym_identifier] = ACTIONS(3099), - [sym_comment] = ACTIONS(85), + [1266] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1302), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3808), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1230] = { - [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(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1267] = { + [sym_compound_statement] = STATE(1288), + [sym_labeled_statement] = STATE(1288), + [sym_expression_statement] = STATE(1288), + [sym_if_statement] = STATE(1288), + [sym_switch_statement] = STATE(1288), + [sym_while_statement] = STATE(1288), + [sym_do_statement] = STATE(1288), + [sym_for_statement] = STATE(1288), + [sym_return_statement] = STATE(1288), + [sym_break_statement] = STATE(1288), + [sym_continue_statement] = STATE(1288), + [sym_goto_statement] = STATE(1288), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(117), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(119), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(121), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1169), - [sym_comment] = ACTIONS(85), - }, - [1231] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3597), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1071), + [sym_comment] = ACTIONS(81), }, - [1232] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1264), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3597), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1268] = { + [sym_compound_statement] = STATE(1247), + [sym_labeled_statement] = STATE(1247), + [sym_expression_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_break_statement] = STATE(1247), + [sym_continue_statement] = STATE(1247), + [sym_goto_statement] = STATE(1247), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(535), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(537), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(539), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(541), + [sym_comment] = ACTIONS(81), }, - [1233] = { - [sym__expression] = STATE(1265), - [sym_conditional_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1265), - [sym_pointer_expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_sizeof_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_call_expression] = STATE(1265), - [sym_field_expression] = STATE(1265), - [sym_compound_literal_expression] = STATE(1265), - [sym_parenthesized_expression] = STATE(1265), - [sym_char_literal] = STATE(1265), - [sym_concatenated_string] = STATE(1265), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3597), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3599), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [sym_null] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3601), - [sym_comment] = ACTIONS(85), + [1269] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3810), + [sym_comment] = ACTIONS(81), }, - [1234] = { - [sym_compound_statement] = STATE(1246), - [sym_labeled_statement] = STATE(1246), - [sym_expression_statement] = STATE(1246), - [sym_if_statement] = STATE(1246), - [sym_switch_statement] = STATE(1246), - [sym_case_statement] = STATE(1246), - [sym_while_statement] = STATE(1246), - [sym_do_statement] = STATE(1246), - [sym_for_statement] = STATE(1246), - [sym_return_statement] = STATE(1246), - [sym_break_statement] = STATE(1246), - [sym_continue_statement] = STATE(1246), - [sym_goto_statement] = STATE(1246), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1270] = { + [sym_compound_statement] = STATE(980), + [sym_labeled_statement] = STATE(980), + [sym_expression_statement] = STATE(980), + [sym_if_statement] = STATE(980), + [sym_switch_statement] = STATE(980), + [sym_while_statement] = STATE(980), + [sym_do_statement] = STATE(980), + [sym_for_statement] = STATE(980), + [sym_return_statement] = STATE(980), + [sym_break_statement] = STATE(980), + [sym_continue_statement] = STATE(980), + [sym_goto_statement] = STATE(980), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(2712), + [sym_comment] = ACTIONS(81), }, - [1235] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3603), - [sym_comment] = ACTIONS(85), + [1271] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1305), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3812), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1236] = { - [sym_argument_list] = STATE(161), - [anon_sym_COMMA] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2918), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(2758), - [anon_sym_QMARK] = ACTIONS(2760), - [anon_sym_STAR_EQ] = ACTIONS(2762), - [anon_sym_SLASH_EQ] = ACTIONS(2762), - [anon_sym_PERCENT_EQ] = ACTIONS(2762), - [anon_sym_PLUS_EQ] = ACTIONS(2762), - [anon_sym_DASH_EQ] = ACTIONS(2762), - [anon_sym_LT_LT_EQ] = ACTIONS(2762), - [anon_sym_GT_GT_EQ] = ACTIONS(2762), - [anon_sym_AMP_EQ] = ACTIONS(2762), - [anon_sym_CARET_EQ] = ACTIONS(2762), - [anon_sym_PIPE_EQ] = ACTIONS(2762), - [anon_sym_AMP] = ACTIONS(2764), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2774), - [anon_sym_BANG_EQ] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2776), - [anon_sym_GT] = ACTIONS(2776), - [anon_sym_LT_EQ] = ACTIONS(2778), - [anon_sym_GT_EQ] = ACTIONS(2778), - [anon_sym_LT_LT] = ACTIONS(2780), - [anon_sym_GT_GT] = ACTIONS(2780), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2756), - [anon_sym_PERCENT] = ACTIONS(2756), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1272] = { + [sym__expression] = STATE(1306), + [sym_conditional_expression] = STATE(1306), + [sym_assignment_expression] = STATE(1306), + [sym_pointer_expression] = STATE(1306), + [sym_logical_expression] = STATE(1306), + [sym_bitwise_expression] = STATE(1306), + [sym_equality_expression] = STATE(1306), + [sym_relational_expression] = STATE(1306), + [sym_shift_expression] = STATE(1306), + [sym_math_expression] = STATE(1306), + [sym_cast_expression] = STATE(1306), + [sym_sizeof_expression] = STATE(1306), + [sym_subscript_expression] = STATE(1306), + [sym_call_expression] = STATE(1306), + [sym_field_expression] = STATE(1306), + [sym_compound_literal_expression] = STATE(1306), + [sym_parenthesized_expression] = STATE(1306), + [sym_char_literal] = STATE(1306), + [sym_concatenated_string] = STATE(1306), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3812), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3814), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3816), + [sym_false] = ACTIONS(3816), + [sym_null] = ACTIONS(3816), + [sym_identifier] = ACTIONS(3816), + [sym_comment] = ACTIONS(81), }, - [1237] = { - [sym_compound_statement] = STATE(1207), - [sym_labeled_statement] = STATE(1207), - [sym_expression_statement] = STATE(1207), - [sym_if_statement] = STATE(1207), - [sym_switch_statement] = STATE(1207), - [sym_case_statement] = STATE(1207), - [sym_while_statement] = STATE(1207), - [sym_do_statement] = STATE(1207), - [sym_for_statement] = STATE(1207), - [sym_return_statement] = STATE(1207), - [sym_break_statement] = STATE(1207), - [sym_continue_statement] = STATE(1207), - [sym_goto_statement] = STATE(1207), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1273] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3818), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1274] = { + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(3820), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [sym_null] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1338), + [sym_comment] = ACTIONS(81), + }, + [1275] = { + [sym__expression] = STATE(1310), + [sym_conditional_expression] = STATE(1310), + [sym_assignment_expression] = STATE(1310), + [sym_pointer_expression] = STATE(1310), + [sym_logical_expression] = STATE(1310), + [sym_bitwise_expression] = STATE(1310), + [sym_equality_expression] = STATE(1310), + [sym_relational_expression] = STATE(1310), + [sym_shift_expression] = STATE(1310), + [sym_math_expression] = STATE(1310), + [sym_cast_expression] = STATE(1310), + [sym_sizeof_expression] = STATE(1310), + [sym_subscript_expression] = STATE(1310), + [sym_call_expression] = STATE(1310), + [sym_field_expression] = STATE(1310), + [sym_compound_literal_expression] = STATE(1310), + [sym_parenthesized_expression] = STATE(1310), + [sym_char_literal] = STATE(1310), + [sym_concatenated_string] = STATE(1310), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3822), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3824), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3826), + [sym_false] = ACTIONS(3826), + [sym_null] = ACTIONS(3826), + [sym_identifier] = ACTIONS(3826), + [sym_comment] = ACTIONS(81), + }, + [1276] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3828), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1277] = { + [sym_compound_statement] = STATE(980), + [sym_labeled_statement] = STATE(980), + [sym_expression_statement] = STATE(980), + [sym_if_statement] = STATE(980), + [sym_switch_statement] = STATE(980), + [sym_while_statement] = STATE(980), + [sym_do_statement] = STATE(980), + [sym_for_statement] = STATE(980), + [sym_return_statement] = STATE(980), + [sym_break_statement] = STATE(980), + [sym_continue_statement] = STATE(980), + [sym_goto_statement] = STATE(980), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(589), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3437), + [sym_comment] = ACTIONS(81), }, - [1238] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3605), - [sym_comment] = ACTIONS(85), + [1278] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1313), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3830), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1239] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1268), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1279] = { + [sym__expression] = STATE(1314), + [sym_conditional_expression] = STATE(1314), + [sym_assignment_expression] = STATE(1314), + [sym_pointer_expression] = STATE(1314), + [sym_logical_expression] = STATE(1314), + [sym_bitwise_expression] = STATE(1314), + [sym_equality_expression] = STATE(1314), + [sym_relational_expression] = STATE(1314), + [sym_shift_expression] = STATE(1314), + [sym_math_expression] = STATE(1314), + [sym_cast_expression] = STATE(1314), + [sym_sizeof_expression] = STATE(1314), + [sym_subscript_expression] = STATE(1314), + [sym_call_expression] = STATE(1314), + [sym_field_expression] = STATE(1314), + [sym_compound_literal_expression] = STATE(1314), + [sym_parenthesized_expression] = STATE(1314), + [sym_char_literal] = STATE(1314), + [sym_concatenated_string] = STATE(1314), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3830), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3832), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3834), + [sym_false] = ACTIONS(3834), + [sym_null] = ACTIONS(3834), + [sym_identifier] = ACTIONS(3834), + [sym_comment] = ACTIONS(81), }, - [1240] = { - [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(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1280] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3836), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1281] = { + [sym_compound_statement] = STATE(1192), + [sym_labeled_statement] = STATE(1192), + [sym_expression_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_break_statement] = STATE(1192), + [sym_continue_statement] = STATE(1192), + [sym_goto_statement] = STATE(1192), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1528), - [sym_comment] = ACTIONS(85), - }, - [1241] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3607), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(81), }, - [1242] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1270), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3607), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1282] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3838), + [sym_comment] = ACTIONS(81), }, - [1243] = { - [sym__expression] = STATE(1271), - [sym_conditional_expression] = STATE(1271), - [sym_assignment_expression] = STATE(1271), - [sym_pointer_expression] = STATE(1271), - [sym_logical_expression] = STATE(1271), - [sym_bitwise_expression] = STATE(1271), - [sym_equality_expression] = STATE(1271), - [sym_relational_expression] = STATE(1271), - [sym_shift_expression] = STATE(1271), - [sym_math_expression] = STATE(1271), - [sym_cast_expression] = STATE(1271), - [sym_sizeof_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_call_expression] = STATE(1271), - [sym_field_expression] = STATE(1271), - [sym_compound_literal_expression] = STATE(1271), - [sym_parenthesized_expression] = STATE(1271), - [sym_char_literal] = STATE(1271), - [sym_concatenated_string] = STATE(1271), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3607), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3609), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3611), - [sym_false] = ACTIONS(3611), - [sym_null] = ACTIONS(3611), - [sym_identifier] = ACTIONS(3611), - [sym_comment] = ACTIONS(85), + [1283] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1317), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3838), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1244] = { - [sym_compound_statement] = STATE(1246), - [sym_labeled_statement] = STATE(1246), - [sym_expression_statement] = STATE(1246), - [sym_if_statement] = STATE(1246), - [sym_switch_statement] = STATE(1246), - [sym_case_statement] = STATE(1246), - [sym_while_statement] = STATE(1246), - [sym_do_statement] = STATE(1246), - [sym_for_statement] = STATE(1246), - [sym_return_statement] = STATE(1246), - [sym_break_statement] = STATE(1246), - [sym_continue_statement] = STATE(1246), - [sym_goto_statement] = STATE(1246), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1284] = { + [sym_compound_statement] = STATE(1192), + [sym_labeled_statement] = STATE(1192), + [sym_expression_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_break_statement] = STATE(1192), + [sym_continue_statement] = STATE(1192), + [sym_goto_statement] = STATE(1192), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(201), - [anon_sym_switch] = ACTIONS(203), - [anon_sym_case] = ACTIONS(205), - [anon_sym_default] = ACTIONS(207), - [anon_sym_while] = ACTIONS(209), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(213), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(215), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1370), + [sym_comment] = ACTIONS(81), }, - [1245] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3613), - [sym_comment] = ACTIONS(85), + [1285] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3840), + [sym_comment] = ACTIONS(81), }, - [1246] = { - [ts_builtin_sym_end] = ACTIONS(3615), - [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(3615), - [anon_sym_typedef] = ACTIONS(3617), - [anon_sym_extern] = ACTIONS(3617), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_RBRACE] = ACTIONS(3615), - [anon_sym_LPAREN2] = ACTIONS(3615), - [anon_sym_STAR] = ACTIONS(3615), - [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(3615), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(3615), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_sizeof] = ACTIONS(3617), - [sym_number_literal] = ACTIONS(3615), - [anon_sym_SQUOTE] = ACTIONS(3615), - [anon_sym_DQUOTE] = ACTIONS(3615), - [sym_true] = ACTIONS(3617), - [sym_false] = ACTIONS(3617), - [sym_null] = ACTIONS(3617), - [sym_identifier] = ACTIONS(3617), - [sym_comment] = ACTIONS(85), + [1286] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1319), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3840), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1247] = { - [sym_compound_statement] = STATE(1273), - [sym_labeled_statement] = STATE(1273), - [sym_expression_statement] = STATE(1273), - [sym_if_statement] = STATE(1273), - [sym_switch_statement] = STATE(1273), - [sym_case_statement] = STATE(1273), - [sym_while_statement] = STATE(1273), - [sym_do_statement] = STATE(1273), - [sym_for_statement] = STATE(1273), - [sym_return_statement] = STATE(1273), - [sym_break_statement] = STATE(1273), - [sym_continue_statement] = STATE(1273), - [sym_goto_statement] = STATE(1273), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1287] = { + [sym_compound_statement] = STATE(1288), + [sym_labeled_statement] = STATE(1288), + [sym_expression_statement] = STATE(1288), + [sym_if_statement] = STATE(1288), + [sym_switch_statement] = STATE(1288), + [sym_while_statement] = STATE(1288), + [sym_do_statement] = STATE(1288), + [sym_for_statement] = STATE(1288), + [sym_return_statement] = STATE(1288), + [sym_break_statement] = STATE(1288), + [sym_continue_statement] = STATE(1288), + [sym_goto_statement] = STATE(1288), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(43), + [anon_sym_if] = ACTIONS(173), [anon_sym_switch] = ACTIONS(45), - [anon_sym_case] = ACTIONS(47), - [anon_sym_default] = ACTIONS(49), - [anon_sym_while] = ACTIONS(51), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(181), + [sym_comment] = ACTIONS(81), }, - [1248] = { - [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(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), + [1288] = { + [ts_builtin_sym_end] = ACTIONS(3842), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3844), + [sym_preproc_directive] = ACTIONS(3844), + [anon_sym_SEMI] = ACTIONS(3842), + [anon_sym_typedef] = ACTIONS(3844), + [anon_sym_extern] = ACTIONS(3844), + [anon_sym_LBRACE] = ACTIONS(3842), + [anon_sym_RBRACE] = ACTIONS(3842), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_STAR] = ACTIONS(3842), + [anon_sym_static] = ACTIONS(3844), + [anon_sym_auto] = ACTIONS(3844), + [anon_sym_register] = ACTIONS(3844), + [anon_sym_inline] = ACTIONS(3844), + [anon_sym_const] = ACTIONS(3844), + [anon_sym_restrict] = ACTIONS(3844), + [anon_sym_volatile] = ACTIONS(3844), + [anon_sym__Atomic] = ACTIONS(3844), + [anon_sym_unsigned] = ACTIONS(3844), + [anon_sym_long] = ACTIONS(3844), + [anon_sym_short] = ACTIONS(3844), + [sym_primitive_type] = ACTIONS(3844), + [anon_sym_enum] = ACTIONS(3844), + [anon_sym_struct] = ACTIONS(3844), + [anon_sym_union] = ACTIONS(3844), + [anon_sym_if] = ACTIONS(3844), + [anon_sym_else] = ACTIONS(3844), + [anon_sym_switch] = ACTIONS(3844), + [anon_sym_case] = ACTIONS(3844), + [anon_sym_default] = ACTIONS(3844), + [anon_sym_while] = ACTIONS(3844), + [anon_sym_do] = ACTIONS(3844), + [anon_sym_for] = ACTIONS(3844), + [anon_sym_return] = ACTIONS(3844), + [anon_sym_break] = ACTIONS(3844), + [anon_sym_continue] = ACTIONS(3844), + [anon_sym_goto] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3842), + [anon_sym_BANG] = ACTIONS(3842), + [anon_sym_TILDE] = ACTIONS(3842), + [anon_sym_PLUS] = ACTIONS(3844), + [anon_sym_DASH] = ACTIONS(3844), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_sizeof] = ACTIONS(3844), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_SQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym_true] = ACTIONS(3844), + [sym_false] = ACTIONS(3844), + [sym_null] = ACTIONS(3844), + [sym_identifier] = ACTIONS(3844), + [sym_comment] = ACTIONS(81), + }, + [1289] = { + [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_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(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_case] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(2282), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2406), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2288), + [sym_comment] = ACTIONS(81), }, - [1249] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1275), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3619), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1290] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3846), + [sym_comment] = ACTIONS(81), }, - [1250] = { - [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(80), - [anon_sym_RPAREN] = ACTIONS(3619), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3621), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3623), - [sym_false] = ACTIONS(3623), - [sym_null] = ACTIONS(3623), - [sym_identifier] = ACTIONS(3623), - [sym_comment] = ACTIONS(85), + [1291] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1321), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1251] = { - [sym_argument_list] = STATE(161), - [anon_sym_SEMI] = ACTIONS(3625), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(667), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_STAR_EQ] = ACTIONS(671), - [anon_sym_SLASH_EQ] = ACTIONS(671), - [anon_sym_PERCENT_EQ] = ACTIONS(671), - [anon_sym_PLUS_EQ] = ACTIONS(671), - [anon_sym_DASH_EQ] = ACTIONS(671), - [anon_sym_LT_LT_EQ] = ACTIONS(671), - [anon_sym_GT_GT_EQ] = ACTIONS(671), - [anon_sym_AMP_EQ] = ACTIONS(671), - [anon_sym_CARET_EQ] = ACTIONS(671), - [anon_sym_PIPE_EQ] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_LT_LT] = ACTIONS(689), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1292] = { + [sym__expression] = STATE(1322), + [sym_conditional_expression] = STATE(1322), + [sym_assignment_expression] = STATE(1322), + [sym_pointer_expression] = STATE(1322), + [sym_logical_expression] = STATE(1322), + [sym_bitwise_expression] = STATE(1322), + [sym_equality_expression] = STATE(1322), + [sym_relational_expression] = STATE(1322), + [sym_shift_expression] = STATE(1322), + [sym_math_expression] = STATE(1322), + [sym_cast_expression] = STATE(1322), + [sym_sizeof_expression] = STATE(1322), + [sym_subscript_expression] = STATE(1322), + [sym_call_expression] = STATE(1322), + [sym_field_expression] = STATE(1322), + [sym_compound_literal_expression] = STATE(1322), + [sym_parenthesized_expression] = STATE(1322), + [sym_char_literal] = STATE(1322), + [sym_concatenated_string] = STATE(1322), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3848), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3850), + [sym_false] = ACTIONS(3850), + [sym_null] = ACTIONS(3850), + [sym_identifier] = ACTIONS(3850), + [sym_comment] = ACTIONS(81), }, - [1252] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3471), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3471), - [sym_preproc_directive] = ACTIONS(3471), - [anon_sym_SEMI] = ACTIONS(3469), - [anon_sym_typedef] = ACTIONS(3471), - [anon_sym_extern] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_LPAREN2] = ACTIONS(3469), - [anon_sym_STAR] = ACTIONS(3469), - [anon_sym_static] = ACTIONS(3471), - [anon_sym_auto] = ACTIONS(3471), - [anon_sym_register] = ACTIONS(3471), - [anon_sym_inline] = ACTIONS(3471), - [anon_sym_const] = ACTIONS(3471), - [anon_sym_restrict] = ACTIONS(3471), - [anon_sym_volatile] = ACTIONS(3471), - [anon_sym__Atomic] = ACTIONS(3471), - [anon_sym_unsigned] = ACTIONS(3471), - [anon_sym_long] = ACTIONS(3471), - [anon_sym_short] = ACTIONS(3471), - [sym_primitive_type] = ACTIONS(3471), - [anon_sym_enum] = ACTIONS(3471), - [anon_sym_struct] = ACTIONS(3471), - [anon_sym_union] = ACTIONS(3471), - [anon_sym_if] = ACTIONS(3471), - [anon_sym_else] = ACTIONS(3471), - [anon_sym_switch] = ACTIONS(3471), - [anon_sym_case] = ACTIONS(3471), - [anon_sym_default] = ACTIONS(3471), - [anon_sym_while] = ACTIONS(3471), - [anon_sym_do] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3471), - [anon_sym_return] = ACTIONS(3471), - [anon_sym_break] = ACTIONS(3471), - [anon_sym_continue] = ACTIONS(3471), - [anon_sym_goto] = ACTIONS(3471), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3469), - [anon_sym_PLUS] = ACTIONS(3471), - [anon_sym_DASH] = ACTIONS(3471), - [anon_sym_DASH_DASH] = ACTIONS(3469), - [anon_sym_PLUS_PLUS] = ACTIONS(3469), - [anon_sym_sizeof] = ACTIONS(3471), - [sym_number_literal] = ACTIONS(3469), - [anon_sym_SQUOTE] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [sym_true] = ACTIONS(3471), - [sym_false] = ACTIONS(3471), - [sym_null] = ACTIONS(3471), - [sym_identifier] = ACTIONS(3471), - [sym_comment] = ACTIONS(85), + [1293] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3700), + [sym_preproc_directive] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_typedef] = ACTIONS(3700), + [anon_sym_extern] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3698), + [anon_sym_LPAREN2] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3700), + [anon_sym_auto] = ACTIONS(3700), + [anon_sym_register] = ACTIONS(3700), + [anon_sym_inline] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3700), + [anon_sym_restrict] = ACTIONS(3700), + [anon_sym_volatile] = ACTIONS(3700), + [anon_sym__Atomic] = ACTIONS(3700), + [anon_sym_unsigned] = ACTIONS(3700), + [anon_sym_long] = ACTIONS(3700), + [anon_sym_short] = ACTIONS(3700), + [sym_primitive_type] = ACTIONS(3700), + [anon_sym_enum] = ACTIONS(3700), + [anon_sym_struct] = ACTIONS(3700), + [anon_sym_union] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(3700), + [anon_sym_else] = ACTIONS(3700), + [anon_sym_switch] = ACTIONS(3700), + [anon_sym_while] = ACTIONS(3700), + [anon_sym_do] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3700), + [anon_sym_return] = ACTIONS(3700), + [anon_sym_break] = ACTIONS(3700), + [anon_sym_continue] = ACTIONS(3700), + [anon_sym_goto] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_sizeof] = ACTIONS(3700), + [sym_number_literal] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3698), + [sym_true] = ACTIONS(3700), + [sym_false] = ACTIONS(3700), + [sym_null] = ACTIONS(3700), + [sym_identifier] = ACTIONS(3700), + [sym_comment] = ACTIONS(81), }, - [1253] = { - [sym_compound_statement] = STATE(1278), - [sym_labeled_statement] = STATE(1278), - [sym_expression_statement] = STATE(1278), - [sym_if_statement] = STATE(1278), - [sym_switch_statement] = STATE(1278), - [sym_case_statement] = STATE(1278), - [sym_while_statement] = STATE(1278), - [sym_do_statement] = STATE(1278), - [sym_for_statement] = STATE(1278), - [sym_return_statement] = STATE(1278), - [sym_break_statement] = STATE(1278), - [sym_continue_statement] = STATE(1278), - [sym_goto_statement] = STATE(1278), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), + [1294] = { + [sym_compound_statement] = STATE(1323), + [sym_labeled_statement] = STATE(1323), + [sym_expression_statement] = STATE(1323), + [sym_if_statement] = STATE(1323), + [sym_switch_statement] = STATE(1323), + [sym_while_statement] = STATE(1323), + [sym_do_statement] = STATE(1323), + [sym_for_statement] = STATE(1323), + [sym_return_statement] = STATE(1323), + [sym_break_statement] = STATE(1323), + [sym_continue_statement] = STATE(1323), + [sym_goto_statement] = STATE(1323), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2408), - [sym_comment] = ACTIONS(85), - }, - [1254] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3627), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2292), + [sym_comment] = ACTIONS(81), }, - [1255] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1280), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3627), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1295] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3852), + [sym_comment] = ACTIONS(81), }, - [1256] = { - [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(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [1296] = { + [sym_compound_statement] = STATE(1261), + [sym_labeled_statement] = STATE(1261), + [sym_expression_statement] = STATE(1261), + [sym_if_statement] = STATE(1261), + [sym_switch_statement] = STATE(1261), + [sym_while_statement] = STATE(1261), + [sym_do_statement] = STATE(1261), + [sym_for_statement] = STATE(1261), + [sym_return_statement] = STATE(1261), + [sym_break_statement] = STATE(1261), + [sym_continue_statement] = STATE(1261), + [sym_goto_statement] = STATE(1261), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1846), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1706), + [sym_comment] = ACTIONS(81), }, - [1257] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3629), - [sym_comment] = ACTIONS(85), + [1297] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3854), + [sym_comment] = ACTIONS(81), }, - [1258] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1282), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3629), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [1298] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1326), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3854), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), }, - [1259] = { - [sym__expression] = STATE(1283), - [sym_conditional_expression] = STATE(1283), - [sym_assignment_expression] = STATE(1283), - [sym_pointer_expression] = STATE(1283), - [sym_logical_expression] = STATE(1283), - [sym_bitwise_expression] = STATE(1283), - [sym_equality_expression] = STATE(1283), - [sym_relational_expression] = STATE(1283), - [sym_shift_expression] = STATE(1283), - [sym_math_expression] = STATE(1283), - [sym_cast_expression] = STATE(1283), - [sym_sizeof_expression] = STATE(1283), - [sym_subscript_expression] = STATE(1283), - [sym_call_expression] = STATE(1283), - [sym_field_expression] = STATE(1283), - [sym_compound_literal_expression] = STATE(1283), - [sym_parenthesized_expression] = STATE(1283), - [sym_char_literal] = STATE(1283), - [sym_concatenated_string] = STATE(1283), - [sym_string_literal] = STATE(80), - [anon_sym_RPAREN] = ACTIONS(3629), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3631), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3633), - [sym_false] = ACTIONS(3633), - [sym_null] = ACTIONS(3633), - [sym_identifier] = ACTIONS(3633), - [sym_comment] = ACTIONS(85), + [1299] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3788), + [sym_preproc_directive] = ACTIONS(3788), + [anon_sym_SEMI] = ACTIONS(3786), + [anon_sym_typedef] = ACTIONS(3788), + [anon_sym_extern] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3786), + [anon_sym_STAR] = ACTIONS(3786), + [anon_sym_static] = ACTIONS(3788), + [anon_sym_auto] = ACTIONS(3788), + [anon_sym_register] = ACTIONS(3788), + [anon_sym_inline] = ACTIONS(3788), + [anon_sym_const] = ACTIONS(3788), + [anon_sym_restrict] = ACTIONS(3788), + [anon_sym_volatile] = ACTIONS(3788), + [anon_sym__Atomic] = ACTIONS(3788), + [anon_sym_unsigned] = ACTIONS(3788), + [anon_sym_long] = ACTIONS(3788), + [anon_sym_short] = ACTIONS(3788), + [sym_primitive_type] = ACTIONS(3788), + [anon_sym_enum] = ACTIONS(3788), + [anon_sym_struct] = ACTIONS(3788), + [anon_sym_union] = ACTIONS(3788), + [anon_sym_if] = ACTIONS(3788), + [anon_sym_else] = ACTIONS(3788), + [anon_sym_switch] = ACTIONS(3788), + [anon_sym_while] = ACTIONS(3788), + [anon_sym_do] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3788), + [anon_sym_return] = ACTIONS(3788), + [anon_sym_break] = ACTIONS(3788), + [anon_sym_continue] = ACTIONS(3788), + [anon_sym_goto] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_BANG] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3788), + [anon_sym_DASH] = ACTIONS(3788), + [anon_sym_DASH_DASH] = ACTIONS(3786), + [anon_sym_PLUS_PLUS] = ACTIONS(3786), + [anon_sym_sizeof] = ACTIONS(3788), + [sym_number_literal] = ACTIONS(3786), + [anon_sym_SQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [sym_true] = ACTIONS(3788), + [sym_false] = ACTIONS(3788), + [sym_null] = ACTIONS(3788), + [sym_identifier] = ACTIONS(3788), + [sym_comment] = ACTIONS(81), }, - [1260] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3565), - [sym_preproc_directive] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3563), - [anon_sym_typedef] = ACTIONS(3565), - [anon_sym_extern] = ACTIONS(3565), - [anon_sym_LBRACE] = ACTIONS(3563), - [anon_sym_LPAREN2] = ACTIONS(3563), - [anon_sym_STAR] = ACTIONS(3563), - [anon_sym_static] = ACTIONS(3565), - [anon_sym_auto] = ACTIONS(3565), - [anon_sym_register] = ACTIONS(3565), - [anon_sym_inline] = ACTIONS(3565), - [anon_sym_const] = ACTIONS(3565), - [anon_sym_restrict] = ACTIONS(3565), - [anon_sym_volatile] = ACTIONS(3565), - [anon_sym__Atomic] = ACTIONS(3565), - [anon_sym_unsigned] = ACTIONS(3565), - [anon_sym_long] = ACTIONS(3565), - [anon_sym_short] = ACTIONS(3565), - [sym_primitive_type] = ACTIONS(3565), - [anon_sym_enum] = ACTIONS(3565), - [anon_sym_struct] = ACTIONS(3565), - [anon_sym_union] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_else] = ACTIONS(3565), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_case] = ACTIONS(3565), - [anon_sym_default] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_break] = ACTIONS(3565), - [anon_sym_continue] = ACTIONS(3565), - [anon_sym_goto] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3563), - [anon_sym_BANG] = ACTIONS(3563), - [anon_sym_TILDE] = ACTIONS(3563), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_DASH_DASH] = ACTIONS(3563), - [anon_sym_PLUS_PLUS] = ACTIONS(3563), - [anon_sym_sizeof] = ACTIONS(3565), - [sym_number_literal] = ACTIONS(3563), - [anon_sym_SQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE] = ACTIONS(3563), - [sym_true] = ACTIONS(3565), - [sym_false] = ACTIONS(3565), - [sym_null] = ACTIONS(3565), - [sym_identifier] = ACTIONS(3565), - [sym_comment] = ACTIONS(85), + [1300] = { + [sym_compound_statement] = STATE(1327), + [sym_labeled_statement] = STATE(1327), + [sym_expression_statement] = STATE(1327), + [sym_if_statement] = STATE(1327), + [sym_switch_statement] = STATE(1327), + [sym_while_statement] = STATE(1327), + [sym_do_statement] = STATE(1327), + [sym_for_statement] = STATE(1327), + [sym_return_statement] = STATE(1327), + [sym_break_statement] = STATE(1327), + [sym_continue_statement] = STATE(1327), + [sym_goto_statement] = STATE(1327), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(362), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(366), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(370), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1710), + [sym_comment] = ACTIONS(81), }, - [1261] = { - [sym_compound_statement] = STATE(1284), - [sym_labeled_statement] = STATE(1284), - [sym_expression_statement] = STATE(1284), - [sym_if_statement] = STATE(1284), - [sym_switch_statement] = STATE(1284), - [sym_case_statement] = STATE(1284), - [sym_while_statement] = STATE(1284), - [sym_do_statement] = STATE(1284), - [sym_for_statement] = STATE(1284), - [sym_return_statement] = STATE(1284), - [sym_break_statement] = STATE(1284), - [sym_continue_statement] = STATE(1284), - [sym_goto_statement] = STATE(1284), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [1301] = { + [sym_compound_statement] = STATE(1247), + [sym_labeled_statement] = STATE(1247), + [sym_expression_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_break_statement] = STATE(1247), + [sym_continue_statement] = STATE(1247), + [sym_goto_statement] = STATE(1247), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1848), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1069), + [sym_comment] = ACTIONS(81), }, - [1262] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3635), - [sym_comment] = ACTIONS(85), + [1302] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3856), + [sym_comment] = ACTIONS(81), }, - [1263] = { - [sym_compound_statement] = STATE(1207), - [sym_labeled_statement] = STATE(1207), - [sym_expression_statement] = STATE(1207), - [sym_if_statement] = STATE(1207), - [sym_switch_statement] = STATE(1207), - [sym_case_statement] = STATE(1207), - [sym_while_statement] = STATE(1207), - [sym_do_statement] = STATE(1207), - [sym_for_statement] = STATE(1207), - [sym_return_statement] = STATE(1207), - [sym_break_statement] = STATE(1207), - [sym_continue_statement] = STATE(1207), - [sym_goto_statement] = STATE(1207), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1303] = { + [sym_compound_statement] = STATE(1288), + [sym_labeled_statement] = STATE(1288), + [sym_expression_statement] = STATE(1288), + [sym_if_statement] = STATE(1288), + [sym_switch_statement] = STATE(1288), + [sym_while_statement] = STATE(1288), + [sym_do_statement] = STATE(1288), + [sym_for_statement] = STATE(1288), + [sym_return_statement] = STATE(1288), + [sym_break_statement] = STATE(1288), + [sym_continue_statement] = STATE(1288), + [sym_goto_statement] = STATE(1288), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(535), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(537), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(539), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1169), - [sym_comment] = ACTIONS(85), - }, - [1264] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3637), - [sym_comment] = ACTIONS(85), - }, - [1265] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1287), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3637), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(541), + [sym_comment] = ACTIONS(81), }, - [1266] = { - [sym_compound_statement] = STATE(1273), - [sym_labeled_statement] = STATE(1273), - [sym_expression_statement] = STATE(1273), - [sym_if_statement] = STATE(1273), - [sym_switch_statement] = STATE(1273), - [sym_case_statement] = STATE(1273), - [sym_while_statement] = STATE(1273), - [sym_do_statement] = STATE(1273), - [sym_for_statement] = STATE(1273), - [sym_return_statement] = STATE(1273), - [sym_break_statement] = STATE(1273), - [sym_continue_statement] = STATE(1273), - [sym_goto_statement] = STATE(1273), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1304] = { + [sym_compound_statement] = STATE(1113), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(121), - [anon_sym_switch] = ACTIONS(123), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(131), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1171), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(2712), + [sym_comment] = ACTIONS(81), }, - [1267] = { - [sym_compound_statement] = STATE(1246), - [sym_labeled_statement] = STATE(1246), - [sym_expression_statement] = STATE(1246), - [sym_if_statement] = STATE(1246), - [sym_switch_statement] = STATE(1246), - [sym_case_statement] = STATE(1246), - [sym_while_statement] = STATE(1246), - [sym_do_statement] = STATE(1246), - [sym_for_statement] = STATE(1246), - [sym_return_statement] = STATE(1246), - [sym_break_statement] = STATE(1246), - [sym_continue_statement] = STATE(1246), - [sym_goto_statement] = STATE(1246), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [1305] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3858), + [sym_comment] = ACTIONS(81), + }, + [1306] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1330), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3858), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1307] = { + [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(75), + [anon_sym_RPAREN] = ACTIONS(3858), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3860), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3862), + [sym_false] = ACTIONS(3862), + [sym_null] = ACTIONS(3862), + [sym_identifier] = ACTIONS(3862), + [sym_comment] = ACTIONS(81), + }, + [1308] = { + [sym_compound_statement] = STATE(753), + [sym_labeled_statement] = STATE(753), + [sym_expression_statement] = STATE(753), + [sym_if_statement] = STATE(753), + [sym_switch_statement] = STATE(753), + [sym_while_statement] = STATE(753), + [sym_do_statement] = STATE(753), + [sym_for_statement] = STATE(753), + [sym_return_statement] = STATE(753), + [sym_break_statement] = STATE(753), + [sym_continue_statement] = STATE(753), + [sym_goto_statement] = STATE(753), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(589), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(85), - }, - [1268] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3639), - [sym_comment] = ACTIONS(85), - }, - [1269] = { - [sym_compound_statement] = STATE(1207), - [sym_labeled_statement] = STATE(1207), - [sym_expression_statement] = STATE(1207), - [sym_if_statement] = STATE(1207), - [sym_switch_statement] = STATE(1207), - [sym_case_statement] = STATE(1207), - [sym_while_statement] = STATE(1207), - [sym_do_statement] = STATE(1207), - [sym_for_statement] = STATE(1207), - [sym_return_statement] = STATE(1207), - [sym_break_statement] = STATE(1207), - [sym_continue_statement] = STATE(1207), - [sym_goto_statement] = STATE(1207), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3435), + [sym_comment] = ACTIONS(81), + }, + [1309] = { + [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(75), + [anon_sym_RPAREN] = ACTIONS(3864), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3866), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3868), + [sym_false] = ACTIONS(3868), + [sym_null] = ACTIONS(3868), + [sym_identifier] = ACTIONS(3868), + [sym_comment] = ACTIONS(81), + }, + [1310] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3870), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1311] = { + [sym__expression] = STATE(1335), + [sym_conditional_expression] = STATE(1335), + [sym_assignment_expression] = STATE(1335), + [sym_pointer_expression] = STATE(1335), + [sym_logical_expression] = STATE(1335), + [sym_bitwise_expression] = STATE(1335), + [sym_equality_expression] = STATE(1335), + [sym_relational_expression] = STATE(1335), + [sym_shift_expression] = STATE(1335), + [sym_math_expression] = STATE(1335), + [sym_cast_expression] = STATE(1335), + [sym_sizeof_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_call_expression] = STATE(1335), + [sym_field_expression] = STATE(1335), + [sym_compound_literal_expression] = STATE(1335), + [sym_parenthesized_expression] = STATE(1335), + [sym_char_literal] = STATE(1335), + [sym_concatenated_string] = STATE(1335), + [sym_string_literal] = STATE(107), + [anon_sym_SEMI] = ACTIONS(3870), + [anon_sym_LPAREN2] = ACTIONS(187), + [anon_sym_STAR] = ACTIONS(189), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(195), + [anon_sym_DASH] = ACTIONS(195), + [anon_sym_DASH_DASH] = ACTIONS(197), + [anon_sym_PLUS_PLUS] = ACTIONS(197), + [anon_sym_sizeof] = ACTIONS(199), + [sym_number_literal] = ACTIONS(3872), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3874), + [sym_false] = ACTIONS(3874), + [sym_null] = ACTIONS(3874), + [sym_identifier] = ACTIONS(3874), + [sym_comment] = ACTIONS(81), + }, + [1312] = { + [sym_compound_statement] = STATE(1113), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1528), - [sym_comment] = ACTIONS(85), - }, - [1270] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3641), - [sym_comment] = ACTIONS(85), - }, - [1271] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1290), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3641), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [1272] = { - [sym_compound_statement] = STATE(1273), - [sym_labeled_statement] = STATE(1273), - [sym_expression_statement] = STATE(1273), - [sym_if_statement] = STATE(1273), - [sym_switch_statement] = STATE(1273), - [sym_case_statement] = STATE(1273), - [sym_while_statement] = STATE(1273), - [sym_do_statement] = STATE(1273), - [sym_for_statement] = STATE(1273), - [sym_return_statement] = STATE(1273), - [sym_break_statement] = STATE(1273), - [sym_continue_statement] = STATE(1273), - [sym_goto_statement] = STATE(1273), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3437), + [sym_comment] = ACTIONS(81), + }, + [1313] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3876), + [sym_comment] = ACTIONS(81), + }, + [1314] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1337), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1315] = { + [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(75), + [anon_sym_RPAREN] = ACTIONS(3876), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3878), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3880), + [sym_false] = ACTIONS(3880), + [sym_null] = ACTIONS(3880), + [sym_identifier] = ACTIONS(3880), + [sym_comment] = ACTIONS(81), + }, + [1316] = { + [sym_compound_statement] = STATE(1247), + [sym_labeled_statement] = STATE(1247), + [sym_expression_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_break_statement] = STATE(1247), + [sym_continue_statement] = STATE(1247), + [sym_goto_statement] = STATE(1247), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(201), - [anon_sym_switch] = ACTIONS(203), - [anon_sym_case] = ACTIONS(205), - [anon_sym_default] = ACTIONS(207), - [anon_sym_while] = ACTIONS(209), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(213), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(215), - [sym_comment] = ACTIONS(85), - }, - [1273] = { - [ts_builtin_sym_end] = ACTIONS(3643), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3645), - [sym_preproc_directive] = ACTIONS(3645), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_typedef] = ACTIONS(3645), - [anon_sym_extern] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_RBRACE] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_static] = ACTIONS(3645), - [anon_sym_auto] = ACTIONS(3645), - [anon_sym_register] = ACTIONS(3645), - [anon_sym_inline] = ACTIONS(3645), - [anon_sym_const] = ACTIONS(3645), - [anon_sym_restrict] = ACTIONS(3645), - [anon_sym_volatile] = ACTIONS(3645), - [anon_sym__Atomic] = ACTIONS(3645), - [anon_sym_unsigned] = ACTIONS(3645), - [anon_sym_long] = ACTIONS(3645), - [anon_sym_short] = ACTIONS(3645), - [sym_primitive_type] = ACTIONS(3645), - [anon_sym_enum] = ACTIONS(3645), - [anon_sym_struct] = ACTIONS(3645), - [anon_sym_union] = ACTIONS(3645), - [anon_sym_if] = ACTIONS(3645), - [anon_sym_else] = ACTIONS(3645), - [anon_sym_switch] = ACTIONS(3645), - [anon_sym_case] = ACTIONS(3645), - [anon_sym_default] = ACTIONS(3645), - [anon_sym_while] = ACTIONS(3645), - [anon_sym_do] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3645), - [anon_sym_return] = ACTIONS(3645), - [anon_sym_break] = ACTIONS(3645), - [anon_sym_continue] = ACTIONS(3645), - [anon_sym_goto] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_BANG] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_DASH_DASH] = ACTIONS(3643), - [anon_sym_PLUS_PLUS] = ACTIONS(3643), - [anon_sym_sizeof] = ACTIONS(3645), - [sym_number_literal] = ACTIONS(3643), - [anon_sym_SQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [sym_true] = ACTIONS(3645), - [sym_false] = ACTIONS(3645), - [sym_null] = ACTIONS(3645), - [sym_identifier] = ACTIONS(3645), - [sym_comment] = ACTIONS(85), - }, - [1274] = { - [sym_compound_statement] = STATE(1252), - [sym_labeled_statement] = STATE(1252), - [sym_expression_statement] = STATE(1252), - [sym_if_statement] = STATE(1252), - [sym_switch_statement] = STATE(1252), - [sym_case_statement] = STATE(1252), - [sym_while_statement] = STATE(1252), - [sym_do_statement] = STATE(1252), - [sym_for_statement] = STATE(1252), - [sym_return_statement] = STATE(1252), - [sym_break_statement] = STATE(1252), - [sym_continue_statement] = STATE(1252), - [sym_goto_statement] = STATE(1252), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(81), + }, + [1317] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3882), + [sym_comment] = ACTIONS(81), + }, + [1318] = { + [sym_compound_statement] = STATE(1247), + [sym_labeled_statement] = STATE(1247), + [sym_expression_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_break_statement] = STATE(1247), + [sym_continue_statement] = STATE(1247), + [sym_goto_statement] = STATE(1247), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_case] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2406), - [sym_comment] = ACTIONS(85), - }, - [1275] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3647), - [sym_comment] = ACTIONS(85), - }, - [1276] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1292), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3647), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [1277] = { - [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(80), - [anon_sym_RPAREN] = ACTIONS(3647), - [anon_sym_LPAREN2] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_TILDE] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DASH_DASH] = ACTIONS(149), - [anon_sym_PLUS_PLUS] = ACTIONS(149), - [anon_sym_sizeof] = ACTIONS(151), - [sym_number_literal] = ACTIONS(3649), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(3651), - [sym_false] = ACTIONS(3651), - [sym_null] = ACTIONS(3651), - [sym_identifier] = ACTIONS(3651), - [sym_comment] = ACTIONS(85), - }, - [1278] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3565), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3565), - [sym_preproc_directive] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3563), - [anon_sym_typedef] = ACTIONS(3565), - [anon_sym_extern] = ACTIONS(3565), - [anon_sym_LBRACE] = ACTIONS(3563), - [anon_sym_LPAREN2] = ACTIONS(3563), - [anon_sym_STAR] = ACTIONS(3563), - [anon_sym_static] = ACTIONS(3565), - [anon_sym_auto] = ACTIONS(3565), - [anon_sym_register] = ACTIONS(3565), - [anon_sym_inline] = ACTIONS(3565), - [anon_sym_const] = ACTIONS(3565), - [anon_sym_restrict] = ACTIONS(3565), - [anon_sym_volatile] = ACTIONS(3565), - [anon_sym__Atomic] = ACTIONS(3565), - [anon_sym_unsigned] = ACTIONS(3565), - [anon_sym_long] = ACTIONS(3565), - [anon_sym_short] = ACTIONS(3565), - [sym_primitive_type] = ACTIONS(3565), - [anon_sym_enum] = ACTIONS(3565), - [anon_sym_struct] = ACTIONS(3565), - [anon_sym_union] = ACTIONS(3565), - [anon_sym_if] = ACTIONS(3565), - [anon_sym_else] = ACTIONS(3565), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_case] = ACTIONS(3565), - [anon_sym_default] = ACTIONS(3565), - [anon_sym_while] = ACTIONS(3565), - [anon_sym_do] = ACTIONS(3565), - [anon_sym_for] = ACTIONS(3565), - [anon_sym_return] = ACTIONS(3565), - [anon_sym_break] = ACTIONS(3565), - [anon_sym_continue] = ACTIONS(3565), - [anon_sym_goto] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3563), - [anon_sym_BANG] = ACTIONS(3563), - [anon_sym_TILDE] = ACTIONS(3563), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_DASH_DASH] = ACTIONS(3563), - [anon_sym_PLUS_PLUS] = ACTIONS(3563), - [anon_sym_sizeof] = ACTIONS(3565), - [sym_number_literal] = ACTIONS(3563), - [anon_sym_SQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE] = ACTIONS(3563), - [sym_true] = ACTIONS(3565), - [sym_false] = ACTIONS(3565), - [sym_null] = ACTIONS(3565), - [sym_identifier] = ACTIONS(3565), - [sym_comment] = ACTIONS(85), - }, - [1279] = { - [sym_compound_statement] = STATE(1294), - [sym_labeled_statement] = STATE(1294), - [sym_expression_statement] = STATE(1294), - [sym_if_statement] = STATE(1294), - [sym_switch_statement] = STATE(1294), - [sym_case_statement] = STATE(1294), - [sym_while_statement] = STATE(1294), - [sym_do_statement] = STATE(1294), - [sym_for_statement] = STATE(1294), - [sym_return_statement] = STATE(1294), - [sym_break_statement] = STATE(1294), - [sym_continue_statement] = STATE(1294), - [sym_goto_statement] = STATE(1294), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1370), + [sym_comment] = ACTIONS(81), + }, + [1319] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3884), + [sym_comment] = ACTIONS(81), + }, + [1320] = { + [sym_compound_statement] = STATE(1293), + [sym_labeled_statement] = STATE(1293), + [sym_expression_statement] = STATE(1293), + [sym_if_statement] = STATE(1293), + [sym_switch_statement] = STATE(1293), + [sym_while_statement] = STATE(1293), + [sym_do_statement] = STATE(1293), + [sym_for_statement] = STATE(1293), + [sym_return_statement] = STATE(1293), + [sym_break_statement] = STATE(1293), + [sym_continue_statement] = STATE(1293), + [sym_goto_statement] = STATE(1293), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(2282), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2408), - [sym_comment] = ACTIONS(85), - }, - [1280] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3653), - [sym_comment] = ACTIONS(85), - }, - [1281] = { - [sym_compound_statement] = STATE(1260), - [sym_labeled_statement] = STATE(1260), - [sym_expression_statement] = STATE(1260), - [sym_if_statement] = STATE(1260), - [sym_switch_statement] = STATE(1260), - [sym_case_statement] = STATE(1260), - [sym_while_statement] = STATE(1260), - [sym_do_statement] = STATE(1260), - [sym_for_statement] = STATE(1260), - [sym_return_statement] = STATE(1260), - [sym_break_statement] = STATE(1260), - [sym_continue_statement] = STATE(1260), - [sym_goto_statement] = STATE(1260), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2288), + [sym_comment] = ACTIONS(81), + }, + [1321] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3886), + [sym_comment] = ACTIONS(81), + }, + [1322] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1342), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3886), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1323] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3788), + [sym_preproc_directive] = ACTIONS(3788), + [anon_sym_SEMI] = ACTIONS(3786), + [anon_sym_typedef] = ACTIONS(3788), + [anon_sym_extern] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3786), + [anon_sym_STAR] = ACTIONS(3786), + [anon_sym_static] = ACTIONS(3788), + [anon_sym_auto] = ACTIONS(3788), + [anon_sym_register] = ACTIONS(3788), + [anon_sym_inline] = ACTIONS(3788), + [anon_sym_const] = ACTIONS(3788), + [anon_sym_restrict] = ACTIONS(3788), + [anon_sym_volatile] = ACTIONS(3788), + [anon_sym__Atomic] = ACTIONS(3788), + [anon_sym_unsigned] = ACTIONS(3788), + [anon_sym_long] = ACTIONS(3788), + [anon_sym_short] = ACTIONS(3788), + [sym_primitive_type] = ACTIONS(3788), + [anon_sym_enum] = ACTIONS(3788), + [anon_sym_struct] = ACTIONS(3788), + [anon_sym_union] = ACTIONS(3788), + [anon_sym_if] = ACTIONS(3788), + [anon_sym_else] = ACTIONS(3788), + [anon_sym_switch] = ACTIONS(3788), + [anon_sym_while] = ACTIONS(3788), + [anon_sym_do] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3788), + [anon_sym_return] = ACTIONS(3788), + [anon_sym_break] = ACTIONS(3788), + [anon_sym_continue] = ACTIONS(3788), + [anon_sym_goto] = ACTIONS(3788), + [anon_sym_AMP] = ACTIONS(3786), + [anon_sym_BANG] = ACTIONS(3786), + [anon_sym_TILDE] = ACTIONS(3786), + [anon_sym_PLUS] = ACTIONS(3788), + [anon_sym_DASH] = ACTIONS(3788), + [anon_sym_DASH_DASH] = ACTIONS(3786), + [anon_sym_PLUS_PLUS] = ACTIONS(3786), + [anon_sym_sizeof] = ACTIONS(3788), + [sym_number_literal] = ACTIONS(3786), + [anon_sym_SQUOTE] = ACTIONS(3786), + [anon_sym_DQUOTE] = ACTIONS(3786), + [sym_true] = ACTIONS(3788), + [sym_false] = ACTIONS(3788), + [sym_null] = ACTIONS(3788), + [sym_identifier] = ACTIONS(3788), + [sym_comment] = ACTIONS(81), + }, + [1324] = { + [sym_compound_statement] = STATE(1343), + [sym_labeled_statement] = STATE(1343), + [sym_expression_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_switch_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_do_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_return_statement] = STATE(1343), + [sym_break_statement] = STATE(1343), + [sym_continue_statement] = STATE(1343), + [sym_goto_statement] = STATE(1343), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(955), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(959), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1846), - [sym_comment] = ACTIONS(85), - }, - [1282] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3655), - [sym_comment] = ACTIONS(85), - }, - [1283] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1297), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3655), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [1284] = { - [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(3615), - [anon_sym_typedef] = ACTIONS(3617), - [anon_sym_extern] = ACTIONS(3617), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_LPAREN2] = ACTIONS(3615), - [anon_sym_STAR] = ACTIONS(3615), - [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(3615), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(3615), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_sizeof] = ACTIONS(3617), - [sym_number_literal] = ACTIONS(3615), - [anon_sym_SQUOTE] = ACTIONS(3615), - [anon_sym_DQUOTE] = ACTIONS(3615), - [sym_true] = ACTIONS(3617), - [sym_false] = ACTIONS(3617), - [sym_null] = ACTIONS(3617), - [sym_identifier] = ACTIONS(3617), - [sym_comment] = ACTIONS(85), - }, - [1285] = { - [sym_compound_statement] = STATE(1298), - [sym_labeled_statement] = STATE(1298), - [sym_expression_statement] = STATE(1298), - [sym_if_statement] = STATE(1298), - [sym_switch_statement] = STATE(1298), - [sym_case_statement] = STATE(1298), - [sym_while_statement] = STATE(1298), - [sym_do_statement] = STATE(1298), - [sym_for_statement] = STATE(1298), - [sym_return_statement] = STATE(1298), - [sym_break_statement] = STATE(1298), - [sym_continue_statement] = STATE(1298), - [sym_goto_statement] = STATE(1298), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2292), + [sym_comment] = ACTIONS(81), + }, + [1325] = { + [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_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(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_case] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_while] = ACTIONS(404), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(408), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1848), - [sym_comment] = ACTIONS(85), - }, - [1286] = { - [sym_compound_statement] = STATE(1246), - [sym_labeled_statement] = STATE(1246), - [sym_expression_statement] = STATE(1246), - [sym_if_statement] = STATE(1246), - [sym_switch_statement] = STATE(1246), - [sym_case_statement] = STATE(1246), - [sym_while_statement] = STATE(1246), - [sym_do_statement] = STATE(1246), - [sym_for_statement] = STATE(1246), - [sym_return_statement] = STATE(1246), - [sym_break_statement] = STATE(1246), - [sym_continue_statement] = STATE(1246), - [sym_goto_statement] = STATE(1246), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1706), + [sym_comment] = ACTIONS(81), + }, + [1326] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3888), + [sym_comment] = ACTIONS(81), + }, + [1327] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3844), + [sym_preproc_directive] = ACTIONS(3844), + [anon_sym_SEMI] = ACTIONS(3842), + [anon_sym_typedef] = ACTIONS(3844), + [anon_sym_extern] = ACTIONS(3844), + [anon_sym_LBRACE] = ACTIONS(3842), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_STAR] = ACTIONS(3842), + [anon_sym_static] = ACTIONS(3844), + [anon_sym_auto] = ACTIONS(3844), + [anon_sym_register] = ACTIONS(3844), + [anon_sym_inline] = ACTIONS(3844), + [anon_sym_const] = ACTIONS(3844), + [anon_sym_restrict] = ACTIONS(3844), + [anon_sym_volatile] = ACTIONS(3844), + [anon_sym__Atomic] = ACTIONS(3844), + [anon_sym_unsigned] = ACTIONS(3844), + [anon_sym_long] = ACTIONS(3844), + [anon_sym_short] = ACTIONS(3844), + [sym_primitive_type] = ACTIONS(3844), + [anon_sym_enum] = ACTIONS(3844), + [anon_sym_struct] = ACTIONS(3844), + [anon_sym_union] = ACTIONS(3844), + [anon_sym_if] = ACTIONS(3844), + [anon_sym_else] = ACTIONS(3844), + [anon_sym_switch] = ACTIONS(3844), + [anon_sym_while] = ACTIONS(3844), + [anon_sym_do] = ACTIONS(3844), + [anon_sym_for] = ACTIONS(3844), + [anon_sym_return] = ACTIONS(3844), + [anon_sym_break] = ACTIONS(3844), + [anon_sym_continue] = ACTIONS(3844), + [anon_sym_goto] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3842), + [anon_sym_BANG] = ACTIONS(3842), + [anon_sym_TILDE] = ACTIONS(3842), + [anon_sym_PLUS] = ACTIONS(3844), + [anon_sym_DASH] = ACTIONS(3844), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_sizeof] = ACTIONS(3844), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_SQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym_true] = ACTIONS(3844), + [sym_false] = ACTIONS(3844), + [sym_null] = ACTIONS(3844), + [sym_identifier] = ACTIONS(3844), + [sym_comment] = ACTIONS(81), + }, + [1328] = { + [sym_compound_statement] = STATE(1288), + [sym_labeled_statement] = STATE(1288), + [sym_expression_statement] = STATE(1288), + [sym_if_statement] = STATE(1288), + [sym_switch_statement] = STATE(1288), + [sym_while_statement] = STATE(1288), + [sym_do_statement] = STATE(1288), + [sym_for_statement] = STATE(1288), + [sym_return_statement] = STATE(1288), + [sym_break_statement] = STATE(1288), + [sym_continue_statement] = STATE(1288), + [sym_goto_statement] = STATE(1288), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1065), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1169), - [sym_comment] = ACTIONS(85), - }, - [1287] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3657), - [sym_comment] = ACTIONS(85), - }, - [1288] = { - [sym_compound_statement] = STATE(1273), - [sym_labeled_statement] = STATE(1273), - [sym_expression_statement] = STATE(1273), - [sym_if_statement] = STATE(1273), - [sym_switch_statement] = STATE(1273), - [sym_case_statement] = STATE(1273), - [sym_while_statement] = STATE(1273), - [sym_do_statement] = STATE(1273), - [sym_for_statement] = STATE(1273), - [sym_return_statement] = STATE(1273), - [sym_break_statement] = STATE(1273), - [sym_continue_statement] = STATE(1273), - [sym_goto_statement] = STATE(1273), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1069), + [sym_comment] = ACTIONS(81), + }, + [1329] = { + [sym_compound_statement] = STATE(1192), + [sym_labeled_statement] = STATE(1192), + [sym_expression_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_break_statement] = STATE(1192), + [sym_continue_statement] = STATE(1192), + [sym_goto_statement] = STATE(1192), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(589), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(591), - [sym_comment] = ACTIONS(85), - }, - [1289] = { - [sym_compound_statement] = STATE(1246), - [sym_labeled_statement] = STATE(1246), - [sym_expression_statement] = STATE(1246), - [sym_if_statement] = STATE(1246), - [sym_switch_statement] = STATE(1246), - [sym_case_statement] = STATE(1246), - [sym_while_statement] = STATE(1246), - [sym_do_statement] = STATE(1246), - [sym_for_statement] = STATE(1246), - [sym_return_statement] = STATE(1246), - [sym_break_statement] = STATE(1246), - [sym_continue_statement] = STATE(1246), - [sym_goto_statement] = STATE(1246), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(2712), + [sym_comment] = ACTIONS(81), + }, + [1330] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3890), + [sym_comment] = ACTIONS(81), + }, + [1331] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1346), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1332] = { + [sym_compound_statement] = STATE(980), + [sym_labeled_statement] = STATE(980), + [sym_expression_statement] = STATE(980), + [sym_if_statement] = STATE(980), + [sym_switch_statement] = STATE(980), + [sym_while_statement] = STATE(980), + [sym_do_statement] = STATE(980), + [sym_for_statement] = STATE(980), + [sym_return_statement] = STATE(980), + [sym_break_statement] = STATE(980), + [sym_continue_statement] = STATE(980), + [sym_goto_statement] = STATE(980), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1528), - [sym_comment] = ACTIONS(85), - }, - [1290] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3659), - [sym_comment] = ACTIONS(85), - }, - [1291] = { - [sym_compound_statement] = STATE(1278), - [sym_labeled_statement] = STATE(1278), - [sym_expression_statement] = STATE(1278), - [sym_if_statement] = STATE(1278), - [sym_switch_statement] = STATE(1278), - [sym_case_statement] = STATE(1278), - [sym_while_statement] = STATE(1278), - [sym_do_statement] = STATE(1278), - [sym_for_statement] = STATE(1278), - [sym_return_statement] = STATE(1278), - [sym_break_statement] = STATE(1278), - [sym_continue_statement] = STATE(1278), - [sym_goto_statement] = STATE(1278), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3435), + [sym_comment] = ACTIONS(81), + }, + [1333] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1348), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3892), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1334] = { + [sym__expression] = STATE(1349), + [sym_conditional_expression] = STATE(1349), + [sym_assignment_expression] = STATE(1349), + [sym_pointer_expression] = STATE(1349), + [sym_logical_expression] = STATE(1349), + [sym_bitwise_expression] = STATE(1349), + [sym_equality_expression] = STATE(1349), + [sym_relational_expression] = STATE(1349), + [sym_shift_expression] = STATE(1349), + [sym_math_expression] = STATE(1349), + [sym_cast_expression] = STATE(1349), + [sym_sizeof_expression] = STATE(1349), + [sym_subscript_expression] = STATE(1349), + [sym_call_expression] = STATE(1349), + [sym_field_expression] = STATE(1349), + [sym_compound_literal_expression] = STATE(1349), + [sym_parenthesized_expression] = STATE(1349), + [sym_char_literal] = STATE(1349), + [sym_concatenated_string] = STATE(1349), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3892), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3894), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3896), + [sym_false] = ACTIONS(3896), + [sym_null] = ACTIONS(3896), + [sym_identifier] = ACTIONS(3896), + [sym_comment] = ACTIONS(81), + }, + [1335] = { + [sym_argument_list] = STATE(145), + [anon_sym_SEMI] = ACTIONS(3898), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_STAR_EQ] = ACTIONS(579), + [anon_sym_SLASH_EQ] = ACTIONS(579), + [anon_sym_PERCENT_EQ] = ACTIONS(579), + [anon_sym_PLUS_EQ] = ACTIONS(579), + [anon_sym_DASH_EQ] = ACTIONS(579), + [anon_sym_LT_LT_EQ] = ACTIONS(579), + [anon_sym_GT_GT_EQ] = ACTIONS(579), + [anon_sym_AMP_EQ] = ACTIONS(579), + [anon_sym_CARET_EQ] = ACTIONS(579), + [anon_sym_PIPE_EQ] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_LT] = ACTIONS(593), + [anon_sym_GT] = ACTIONS(593), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(599), + [anon_sym_DASH] = ACTIONS(599), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1336] = { + [sym_compound_statement] = STATE(1192), + [sym_labeled_statement] = STATE(1192), + [sym_expression_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_break_statement] = STATE(1192), + [sym_continue_statement] = STATE(1192), + [sym_goto_statement] = STATE(1192), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_case] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2406), - [sym_comment] = ACTIONS(85), - }, - [1292] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3661), - [sym_comment] = ACTIONS(85), - }, - [1293] = { - [sym_argument_list] = STATE(161), - [aux_sym_for_statement_repeat1] = STATE(1302), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3661), - [anon_sym_LPAREN2] = ACTIONS(307), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(311), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_QMARK] = ACTIONS(499), - [anon_sym_STAR_EQ] = ACTIONS(501), - [anon_sym_SLASH_EQ] = ACTIONS(501), - [anon_sym_PERCENT_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [anon_sym_DASH_EQ] = ACTIONS(501), - [anon_sym_LT_LT_EQ] = ACTIONS(501), - [anon_sym_GT_GT_EQ] = ACTIONS(501), - [anon_sym_AMP_EQ] = ACTIONS(501), - [anon_sym_CARET_EQ] = ACTIONS(501), - [anon_sym_PIPE_EQ] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(507), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(513), - [anon_sym_BANG_EQ] = ACTIONS(513), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_GT] = ACTIONS(515), - [anon_sym_LT_EQ] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(495), - [anon_sym_PERCENT] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(341), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_comment] = ACTIONS(85), - }, - [1294] = { - [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(3615), - [anon_sym_typedef] = ACTIONS(3617), - [anon_sym_extern] = ACTIONS(3617), - [anon_sym_LBRACE] = ACTIONS(3615), - [anon_sym_LPAREN2] = ACTIONS(3615), - [anon_sym_STAR] = ACTIONS(3615), - [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(3615), - [anon_sym_BANG] = ACTIONS(3615), - [anon_sym_TILDE] = ACTIONS(3615), - [anon_sym_PLUS] = ACTIONS(3617), - [anon_sym_DASH] = ACTIONS(3617), - [anon_sym_DASH_DASH] = ACTIONS(3615), - [anon_sym_PLUS_PLUS] = ACTIONS(3615), - [anon_sym_sizeof] = ACTIONS(3617), - [sym_number_literal] = ACTIONS(3615), - [anon_sym_SQUOTE] = ACTIONS(3615), - [anon_sym_DQUOTE] = ACTIONS(3615), - [sym_true] = ACTIONS(3617), - [sym_false] = ACTIONS(3617), - [sym_null] = ACTIONS(3617), - [sym_identifier] = ACTIONS(3617), - [sym_comment] = ACTIONS(85), - }, - [1295] = { - [sym_compound_statement] = STATE(1303), - [sym_labeled_statement] = STATE(1303), - [sym_expression_statement] = STATE(1303), - [sym_if_statement] = STATE(1303), - [sym_switch_statement] = STATE(1303), - [sym_case_statement] = STATE(1303), - [sym_while_statement] = STATE(1303), - [sym_do_statement] = STATE(1303), - [sym_for_statement] = STATE(1303), - [sym_return_statement] = STATE(1303), - [sym_break_statement] = STATE(1303), - [sym_continue_statement] = STATE(1303), - [sym_goto_statement] = STATE(1303), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3437), + [sym_comment] = ACTIONS(81), + }, + [1337] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3900), + [sym_comment] = ACTIONS(81), + }, + [1338] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1352), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3900), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1339] = { + [sym_compound_statement] = STATE(1288), + [sym_labeled_statement] = STATE(1288), + [sym_expression_statement] = STATE(1288), + [sym_if_statement] = STATE(1288), + [sym_switch_statement] = STATE(1288), + [sym_while_statement] = STATE(1288), + [sym_do_statement] = STATE(1288), + [sym_for_statement] = STATE(1288), + [sym_return_statement] = STATE(1288), + [sym_break_statement] = STATE(1288), + [sym_continue_statement] = STATE(1288), + [sym_goto_statement] = STATE(1288), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_switch] = ACTIONS(1037), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1047), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2408), - [sym_comment] = ACTIONS(85), - }, - [1296] = { - [sym_compound_statement] = STATE(1284), - [sym_labeled_statement] = STATE(1284), - [sym_expression_statement] = STATE(1284), - [sym_if_statement] = STATE(1284), - [sym_switch_statement] = STATE(1284), - [sym_case_statement] = STATE(1284), - [sym_while_statement] = STATE(1284), - [sym_do_statement] = STATE(1284), - [sym_for_statement] = STATE(1284), - [sym_return_statement] = STATE(1284), - [sym_break_statement] = STATE(1284), - [sym_continue_statement] = STATE(1284), - [sym_goto_statement] = STATE(1284), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1354), + [sym_comment] = ACTIONS(81), + }, + [1340] = { + [sym_compound_statement] = STATE(1288), + [sym_labeled_statement] = STATE(1288), + [sym_expression_statement] = STATE(1288), + [sym_if_statement] = STATE(1288), + [sym_switch_statement] = STATE(1288), + [sym_while_statement] = STATE(1288), + [sym_do_statement] = STATE(1288), + [sym_for_statement] = STATE(1288), + [sym_return_statement] = STATE(1288), + [sym_break_statement] = STATE(1288), + [sym_continue_statement] = STATE(1288), + [sym_goto_statement] = STATE(1288), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(177), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1846), - [sym_comment] = ACTIONS(85), - }, - [1297] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3663), - [sym_comment] = ACTIONS(85), - }, - [1298] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3645), - [sym_preproc_directive] = ACTIONS(3645), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_typedef] = ACTIONS(3645), - [anon_sym_extern] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_static] = ACTIONS(3645), - [anon_sym_auto] = ACTIONS(3645), - [anon_sym_register] = ACTIONS(3645), - [anon_sym_inline] = ACTIONS(3645), - [anon_sym_const] = ACTIONS(3645), - [anon_sym_restrict] = ACTIONS(3645), - [anon_sym_volatile] = ACTIONS(3645), - [anon_sym__Atomic] = ACTIONS(3645), - [anon_sym_unsigned] = ACTIONS(3645), - [anon_sym_long] = ACTIONS(3645), - [anon_sym_short] = ACTIONS(3645), - [sym_primitive_type] = ACTIONS(3645), - [anon_sym_enum] = ACTIONS(3645), - [anon_sym_struct] = ACTIONS(3645), - [anon_sym_union] = ACTIONS(3645), - [anon_sym_if] = ACTIONS(3645), - [anon_sym_else] = ACTIONS(3645), - [anon_sym_switch] = ACTIONS(3645), - [anon_sym_case] = ACTIONS(3645), - [anon_sym_default] = ACTIONS(3645), - [anon_sym_while] = ACTIONS(3645), - [anon_sym_do] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3645), - [anon_sym_return] = ACTIONS(3645), - [anon_sym_break] = ACTIONS(3645), - [anon_sym_continue] = ACTIONS(3645), - [anon_sym_goto] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_BANG] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_DASH_DASH] = ACTIONS(3643), - [anon_sym_PLUS_PLUS] = ACTIONS(3643), - [anon_sym_sizeof] = ACTIONS(3645), - [sym_number_literal] = ACTIONS(3643), - [anon_sym_SQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [sym_true] = ACTIONS(3645), - [sym_false] = ACTIONS(3645), - [sym_null] = ACTIONS(3645), - [sym_identifier] = ACTIONS(3645), - [sym_comment] = ACTIONS(85), - }, - [1299] = { - [sym_compound_statement] = STATE(1273), - [sym_labeled_statement] = STATE(1273), - [sym_expression_statement] = STATE(1273), - [sym_if_statement] = STATE(1273), - [sym_switch_statement] = STATE(1273), - [sym_case_statement] = STATE(1273), - [sym_while_statement] = STATE(1273), - [sym_do_statement] = STATE(1273), - [sym_for_statement] = STATE(1273), - [sym_return_statement] = STATE(1273), - [sym_break_statement] = STATE(1273), - [sym_continue_statement] = STATE(1273), - [sym_goto_statement] = STATE(1273), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(1370), + [sym_comment] = ACTIONS(81), + }, + [1341] = { + [sym_compound_statement] = STATE(1323), + [sym_labeled_statement] = STATE(1323), + [sym_expression_statement] = STATE(1323), + [sym_if_statement] = STATE(1323), + [sym_switch_statement] = STATE(1323), + [sym_while_statement] = STATE(1323), + [sym_do_statement] = STATE(1323), + [sym_for_statement] = STATE(1323), + [sym_return_statement] = STATE(1323), + [sym_break_statement] = STATE(1323), + [sym_continue_statement] = STATE(1323), + [sym_goto_statement] = STATE(1323), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(2282), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2288), + [sym_comment] = ACTIONS(81), + }, + [1342] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3902), + [sym_comment] = ACTIONS(81), + }, + [1343] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3844), + [sym_preproc_directive] = ACTIONS(3844), + [anon_sym_SEMI] = ACTIONS(3842), + [anon_sym_typedef] = ACTIONS(3844), + [anon_sym_extern] = ACTIONS(3844), + [anon_sym_LBRACE] = ACTIONS(3842), + [anon_sym_LPAREN2] = ACTIONS(3842), + [anon_sym_STAR] = ACTIONS(3842), + [anon_sym_static] = ACTIONS(3844), + [anon_sym_auto] = ACTIONS(3844), + [anon_sym_register] = ACTIONS(3844), + [anon_sym_inline] = ACTIONS(3844), + [anon_sym_const] = ACTIONS(3844), + [anon_sym_restrict] = ACTIONS(3844), + [anon_sym_volatile] = ACTIONS(3844), + [anon_sym__Atomic] = ACTIONS(3844), + [anon_sym_unsigned] = ACTIONS(3844), + [anon_sym_long] = ACTIONS(3844), + [anon_sym_short] = ACTIONS(3844), + [sym_primitive_type] = ACTIONS(3844), + [anon_sym_enum] = ACTIONS(3844), + [anon_sym_struct] = ACTIONS(3844), + [anon_sym_union] = ACTIONS(3844), + [anon_sym_if] = ACTIONS(3844), + [anon_sym_else] = ACTIONS(3844), + [anon_sym_switch] = ACTIONS(3844), + [anon_sym_while] = ACTIONS(3844), + [anon_sym_do] = ACTIONS(3844), + [anon_sym_for] = ACTIONS(3844), + [anon_sym_return] = ACTIONS(3844), + [anon_sym_break] = ACTIONS(3844), + [anon_sym_continue] = ACTIONS(3844), + [anon_sym_goto] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3842), + [anon_sym_BANG] = ACTIONS(3842), + [anon_sym_TILDE] = ACTIONS(3842), + [anon_sym_PLUS] = ACTIONS(3844), + [anon_sym_DASH] = ACTIONS(3844), + [anon_sym_DASH_DASH] = ACTIONS(3842), + [anon_sym_PLUS_PLUS] = ACTIONS(3842), + [anon_sym_sizeof] = ACTIONS(3844), + [sym_number_literal] = ACTIONS(3842), + [anon_sym_SQUOTE] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym_true] = ACTIONS(3844), + [sym_false] = ACTIONS(3844), + [sym_null] = ACTIONS(3844), + [sym_identifier] = ACTIONS(3844), + [sym_comment] = ACTIONS(81), + }, + [1344] = { + [sym_compound_statement] = STATE(1327), + [sym_labeled_statement] = STATE(1327), + [sym_expression_statement] = STATE(1327), + [sym_if_statement] = STATE(1327), + [sym_switch_statement] = STATE(1327), + [sym_while_statement] = STATE(1327), + [sym_do_statement] = STATE(1327), + [sym_for_statement] = STATE(1327), + [sym_return_statement] = STATE(1327), + [sym_break_statement] = STATE(1327), + [sym_continue_statement] = STATE(1327), + [sym_goto_statement] = STATE(1327), + [sym__expression] = STATE(183), + [sym_comma_expression] = STATE(184), + [sym_conditional_expression] = STATE(183), + [sym_assignment_expression] = STATE(183), + [sym_pointer_expression] = STATE(183), + [sym_logical_expression] = STATE(183), + [sym_bitwise_expression] = STATE(183), + [sym_equality_expression] = STATE(183), + [sym_relational_expression] = STATE(183), + [sym_shift_expression] = STATE(183), + [sym_math_expression] = STATE(183), + [sym_cast_expression] = STATE(183), + [sym_sizeof_expression] = STATE(183), + [sym_subscript_expression] = STATE(183), + [sym_call_expression] = STATE(183), + [sym_field_expression] = STATE(183), + [sym_compound_literal_expression] = STATE(183), + [sym_parenthesized_expression] = STATE(183), + [sym_char_literal] = STATE(183), + [sym_concatenated_string] = STATE(183), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(360), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(364), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_do] = ACTIONS(368), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(372), + [anon_sym_break] = ACTIONS(374), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_goto] = ACTIONS(378), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(382), + [sym_false] = ACTIONS(382), + [sym_null] = ACTIONS(382), + [sym_identifier] = ACTIONS(1706), + [sym_comment] = ACTIONS(81), + }, + [1345] = { + [sym_compound_statement] = STATE(1247), + [sym_labeled_statement] = STATE(1247), + [sym_expression_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_break_statement] = STATE(1247), + [sym_continue_statement] = STATE(1247), + [sym_goto_statement] = STATE(1247), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1157), - [anon_sym_switch] = ACTIONS(1159), - [anon_sym_case] = ACTIONS(1161), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(53), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1169), - [sym_comment] = ACTIONS(85), - }, - [1300] = { - [sym_compound_statement] = STATE(1273), - [sym_labeled_statement] = STATE(1273), - [sym_expression_statement] = STATE(1273), - [sym_if_statement] = STATE(1273), - [sym_switch_statement] = STATE(1273), - [sym_case_statement] = STATE(1273), - [sym_while_statement] = STATE(1273), - [sym_do_statement] = STATE(1273), - [sym_for_statement] = STATE(1273), - [sym_return_statement] = STATE(1273), - [sym_break_statement] = STATE(1273), - [sym_continue_statement] = STATE(1273), - [sym_goto_statement] = STATE(1273), - [sym__expression] = STATE(39), - [sym_comma_expression] = STATE(40), - [sym_conditional_expression] = STATE(39), - [sym_assignment_expression] = STATE(39), - [sym_pointer_expression] = STATE(39), - [sym_logical_expression] = STATE(39), - [sym_bitwise_expression] = STATE(39), - [sym_equality_expression] = STATE(39), - [sym_relational_expression] = STATE(39), - [sym_shift_expression] = STATE(39), - [sym_math_expression] = STATE(39), - [sym_cast_expression] = STATE(39), - [sym_sizeof_expression] = STATE(39), - [sym_subscript_expression] = STATE(39), - [sym_call_expression] = STATE(39), - [sym_field_expression] = STATE(39), - [sym_compound_literal_expression] = STATE(39), - [sym_parenthesized_expression] = STATE(39), - [sym_char_literal] = STATE(39), - [sym_concatenated_string] = STATE(39), - [sym_string_literal] = STATE(41), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(2712), + [sym_comment] = ACTIONS(81), + }, + [1346] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3904), + [sym_comment] = ACTIONS(81), + }, + [1347] = { + [sym_compound_statement] = STATE(1113), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), [anon_sym_SEMI] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(211), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(61), - [anon_sym_goto] = ACTIONS(63), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(81), - [sym_false] = ACTIONS(81), - [sym_null] = ACTIONS(81), - [sym_identifier] = ACTIONS(1528), - [sym_comment] = ACTIONS(85), - }, - [1301] = { - [sym_compound_statement] = STATE(1294), - [sym_labeled_statement] = STATE(1294), - [sym_expression_statement] = STATE(1294), - [sym_if_statement] = STATE(1294), - [sym_switch_statement] = STATE(1294), - [sym_case_statement] = STATE(1294), - [sym_while_statement] = STATE(1294), - [sym_do_statement] = STATE(1294), - [sym_for_statement] = STATE(1294), - [sym_return_statement] = STATE(1294), - [sym_break_statement] = STATE(1294), - [sym_continue_statement] = STATE(1294), - [sym_goto_statement] = STATE(1294), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3435), + [sym_comment] = ACTIONS(81), + }, + [1348] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3906), + [sym_comment] = ACTIONS(81), + }, + [1349] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1356), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1350] = { + [sym__expression] = STATE(1357), + [sym_conditional_expression] = STATE(1357), + [sym_assignment_expression] = STATE(1357), + [sym_pointer_expression] = STATE(1357), + [sym_logical_expression] = STATE(1357), + [sym_bitwise_expression] = STATE(1357), + [sym_equality_expression] = STATE(1357), + [sym_relational_expression] = STATE(1357), + [sym_shift_expression] = STATE(1357), + [sym_math_expression] = STATE(1357), + [sym_cast_expression] = STATE(1357), + [sym_sizeof_expression] = STATE(1357), + [sym_subscript_expression] = STATE(1357), + [sym_call_expression] = STATE(1357), + [sym_field_expression] = STATE(1357), + [sym_compound_literal_expression] = STATE(1357), + [sym_parenthesized_expression] = STATE(1357), + [sym_char_literal] = STATE(1357), + [sym_concatenated_string] = STATE(1357), + [sym_string_literal] = STATE(75), + [anon_sym_RPAREN] = ACTIONS(3906), + [anon_sym_LPAREN2] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(127), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(139), + [anon_sym_PLUS_PLUS] = ACTIONS(139), + [anon_sym_sizeof] = ACTIONS(141), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(3910), + [sym_false] = ACTIONS(3910), + [sym_null] = ACTIONS(3910), + [sym_identifier] = ACTIONS(3910), + [sym_comment] = ACTIONS(81), + }, + [1351] = { + [sym_compound_statement] = STATE(1247), + [sym_labeled_statement] = STATE(1247), + [sym_expression_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_break_statement] = STATE(1247), + [sym_continue_statement] = STATE(1247), + [sym_goto_statement] = STATE(1247), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_case] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2406), - [sym_comment] = ACTIONS(85), - }, - [1302] = { - [aux_sym_for_statement_repeat1] = STATE(838), - [anon_sym_COMMA] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(3665), - [sym_comment] = ACTIONS(85), - }, - [1303] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3645), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3645), - [sym_preproc_directive] = ACTIONS(3645), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_typedef] = ACTIONS(3645), - [anon_sym_extern] = ACTIONS(3645), - [anon_sym_LBRACE] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3643), - [anon_sym_STAR] = ACTIONS(3643), - [anon_sym_static] = ACTIONS(3645), - [anon_sym_auto] = ACTIONS(3645), - [anon_sym_register] = ACTIONS(3645), - [anon_sym_inline] = ACTIONS(3645), - [anon_sym_const] = ACTIONS(3645), - [anon_sym_restrict] = ACTIONS(3645), - [anon_sym_volatile] = ACTIONS(3645), - [anon_sym__Atomic] = ACTIONS(3645), - [anon_sym_unsigned] = ACTIONS(3645), - [anon_sym_long] = ACTIONS(3645), - [anon_sym_short] = ACTIONS(3645), - [sym_primitive_type] = ACTIONS(3645), - [anon_sym_enum] = ACTIONS(3645), - [anon_sym_struct] = ACTIONS(3645), - [anon_sym_union] = ACTIONS(3645), - [anon_sym_if] = ACTIONS(3645), - [anon_sym_else] = ACTIONS(3645), - [anon_sym_switch] = ACTIONS(3645), - [anon_sym_case] = ACTIONS(3645), - [anon_sym_default] = ACTIONS(3645), - [anon_sym_while] = ACTIONS(3645), - [anon_sym_do] = ACTIONS(3645), - [anon_sym_for] = ACTIONS(3645), - [anon_sym_return] = ACTIONS(3645), - [anon_sym_break] = ACTIONS(3645), - [anon_sym_continue] = ACTIONS(3645), - [anon_sym_goto] = ACTIONS(3645), - [anon_sym_AMP] = ACTIONS(3643), - [anon_sym_BANG] = ACTIONS(3643), - [anon_sym_TILDE] = ACTIONS(3643), - [anon_sym_PLUS] = ACTIONS(3645), - [anon_sym_DASH] = ACTIONS(3645), - [anon_sym_DASH_DASH] = ACTIONS(3643), - [anon_sym_PLUS_PLUS] = ACTIONS(3643), - [anon_sym_sizeof] = ACTIONS(3645), - [sym_number_literal] = ACTIONS(3643), - [anon_sym_SQUOTE] = ACTIONS(3643), - [anon_sym_DQUOTE] = ACTIONS(3643), - [sym_true] = ACTIONS(3645), - [sym_false] = ACTIONS(3645), - [sym_null] = ACTIONS(3645), - [sym_identifier] = ACTIONS(3645), - [sym_comment] = ACTIONS(85), - }, - [1304] = { - [sym_compound_statement] = STATE(1298), - [sym_labeled_statement] = STATE(1298), - [sym_expression_statement] = STATE(1298), - [sym_if_statement] = STATE(1298), - [sym_switch_statement] = STATE(1298), - [sym_case_statement] = STATE(1298), - [sym_while_statement] = STATE(1298), - [sym_do_statement] = STATE(1298), - [sym_for_statement] = STATE(1298), - [sym_return_statement] = STATE(1298), - [sym_break_statement] = STATE(1298), - [sym_continue_statement] = STATE(1298), - [sym_goto_statement] = STATE(1298), - [sym__expression] = STATE(201), - [sym_comma_expression] = STATE(202), - [sym_conditional_expression] = STATE(201), - [sym_assignment_expression] = STATE(201), - [sym_pointer_expression] = STATE(201), - [sym_logical_expression] = STATE(201), - [sym_bitwise_expression] = STATE(201), - [sym_equality_expression] = STATE(201), - [sym_relational_expression] = STATE(201), - [sym_shift_expression] = STATE(201), - [sym_math_expression] = STATE(201), - [sym_cast_expression] = STATE(201), - [sym_sizeof_expression] = STATE(201), - [sym_subscript_expression] = STATE(201), - [sym_call_expression] = STATE(201), - [sym_field_expression] = STATE(201), - [sym_compound_literal_expression] = STATE(201), - [sym_parenthesized_expression] = STATE(201), - [sym_char_literal] = STATE(201), - [sym_concatenated_string] = STATE(201), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(388), - [anon_sym_LBRACE] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3437), + [sym_comment] = ACTIONS(81), + }, + [1352] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3912), + [sym_comment] = ACTIONS(81), + }, + [1353] = { + [sym_compound_statement] = STATE(1343), + [sym_labeled_statement] = STATE(1343), + [sym_expression_statement] = STATE(1343), + [sym_if_statement] = STATE(1343), + [sym_switch_statement] = STATE(1343), + [sym_while_statement] = STATE(1343), + [sym_do_statement] = STATE(1343), + [sym_for_statement] = STATE(1343), + [sym_return_statement] = STATE(1343), + [sym_break_statement] = STATE(1343), + [sym_continue_statement] = STATE(1343), + [sym_goto_statement] = STATE(1343), + [sym__expression] = STATE(377), + [sym_comma_expression] = STATE(378), + [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(39), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(949), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(406), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_goto] = ACTIONS(416), + [anon_sym_if] = ACTIONS(2282), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_do] = ACTIONS(957), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(961), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_goto] = ACTIONS(967), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(418), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(420), - [sym_false] = ACTIONS(420), - [sym_null] = ACTIONS(420), - [sym_identifier] = ACTIONS(1846), - [sym_comment] = ACTIONS(85), - }, - [1305] = { - [sym_compound_statement] = STATE(1303), - [sym_labeled_statement] = STATE(1303), - [sym_expression_statement] = STATE(1303), - [sym_if_statement] = STATE(1303), - [sym_switch_statement] = STATE(1303), - [sym_case_statement] = STATE(1303), - [sym_while_statement] = STATE(1303), - [sym_do_statement] = STATE(1303), - [sym_for_statement] = STATE(1303), - [sym_return_statement] = STATE(1303), - [sym_break_statement] = STATE(1303), - [sym_continue_statement] = STATE(1303), - [sym_goto_statement] = STATE(1303), - [sym__expression] = STATE(417), - [sym_comma_expression] = STATE(418), - [sym_conditional_expression] = STATE(417), - [sym_assignment_expression] = STATE(417), - [sym_pointer_expression] = STATE(417), - [sym_logical_expression] = STATE(417), - [sym_bitwise_expression] = STATE(417), - [sym_equality_expression] = STATE(417), - [sym_relational_expression] = STATE(417), - [sym_shift_expression] = STATE(417), - [sym_math_expression] = STATE(417), - [sym_cast_expression] = STATE(417), - [sym_sizeof_expression] = STATE(417), - [sym_subscript_expression] = STATE(417), - [sym_call_expression] = STATE(417), - [sym_field_expression] = STATE(417), - [sym_compound_literal_expression] = STATE(417), - [sym_parenthesized_expression] = STATE(417), - [sym_char_literal] = STATE(417), - [sym_concatenated_string] = STATE(417), - [sym_string_literal] = STATE(41), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(971), + [sym_false] = ACTIONS(971), + [sym_null] = ACTIONS(971), + [sym_identifier] = ACTIONS(2288), + [sym_comment] = ACTIONS(81), + }, + [1354] = { + [sym_compound_statement] = STATE(1288), + [sym_labeled_statement] = STATE(1288), + [sym_expression_statement] = STATE(1288), + [sym_if_statement] = STATE(1288), + [sym_switch_statement] = STATE(1288), + [sym_while_statement] = STATE(1288), + [sym_do_statement] = STATE(1288), + [sym_for_statement] = STATE(1288), + [sym_return_statement] = STATE(1288), + [sym_break_statement] = STATE(1288), + [sym_continue_statement] = STATE(1288), + [sym_goto_statement] = STATE(1288), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), [anon_sym_LPAREN2] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(27), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2396), - [anon_sym_case] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1051), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_goto] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2708), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(2712), + [sym_comment] = ACTIONS(81), + }, + [1355] = { + [sym_compound_statement] = STATE(1192), + [sym_labeled_statement] = STATE(1192), + [sym_expression_statement] = STATE(1192), + [sym_if_statement] = STATE(1192), + [sym_switch_statement] = STATE(1192), + [sym_while_statement] = STATE(1192), + [sym_do_statement] = STATE(1192), + [sym_for_statement] = STATE(1192), + [sym_return_statement] = STATE(1192), + [sym_break_statement] = STATE(1192), + [sym_continue_statement] = STATE(1192), + [sym_goto_statement] = STATE(1192), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3435), + [sym_comment] = ACTIONS(81), + }, + [1356] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3914), + [sym_comment] = ACTIONS(81), + }, + [1357] = { + [sym_argument_list] = STATE(145), + [aux_sym_for_statement_repeat1] = STATE(1360), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3914), + [anon_sym_LPAREN2] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(453), + [anon_sym_QMARK] = ACTIONS(455), + [anon_sym_STAR_EQ] = ACTIONS(457), + [anon_sym_SLASH_EQ] = ACTIONS(457), + [anon_sym_PERCENT_EQ] = ACTIONS(457), + [anon_sym_PLUS_EQ] = ACTIONS(457), + [anon_sym_DASH_EQ] = ACTIONS(457), + [anon_sym_LT_LT_EQ] = ACTIONS(457), + [anon_sym_GT_GT_EQ] = ACTIONS(457), + [anon_sym_AMP_EQ] = ACTIONS(457), + [anon_sym_CARET_EQ] = ACTIONS(457), + [anon_sym_PIPE_EQ] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PIPE_PIPE] = ACTIONS(461), + [anon_sym_AMP_AMP] = ACTIONS(463), + [anon_sym_PIPE] = ACTIONS(465), + [anon_sym_CARET] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(473), + [anon_sym_GT_EQ] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_GT_GT] = ACTIONS(475), + [anon_sym_PLUS] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(477), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_PERCENT] = ACTIONS(451), + [anon_sym_DASH_DASH] = ACTIONS(305), + [anon_sym_PLUS_PLUS] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_DASH_GT] = ACTIONS(307), + [sym_comment] = ACTIONS(81), + }, + [1358] = { + [sym_compound_statement] = STATE(1288), + [sym_labeled_statement] = STATE(1288), + [sym_expression_statement] = STATE(1288), + [sym_if_statement] = STATE(1288), + [sym_switch_statement] = STATE(1288), + [sym_while_statement] = STATE(1288), + [sym_do_statement] = STATE(1288), + [sym_for_statement] = STATE(1288), + [sym_return_statement] = STATE(1288), + [sym_break_statement] = STATE(1288), + [sym_continue_statement] = STATE(1288), + [sym_goto_statement] = STATE(1288), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(2724), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3437), + [sym_comment] = ACTIONS(81), + }, + [1359] = { + [sym_compound_statement] = STATE(1247), + [sym_labeled_statement] = STATE(1247), + [sym_expression_statement] = STATE(1247), + [sym_if_statement] = STATE(1247), + [sym_switch_statement] = STATE(1247), + [sym_while_statement] = STATE(1247), + [sym_do_statement] = STATE(1247), + [sym_for_statement] = STATE(1247), + [sym_return_statement] = STATE(1247), + [sym_break_statement] = STATE(1247), + [sym_continue_statement] = STATE(1247), + [sym_goto_statement] = STATE(1247), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3435), + [sym_comment] = ACTIONS(81), + }, + [1360] = { + [aux_sym_for_statement_repeat1] = STATE(781), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(3916), + [sym_comment] = ACTIONS(81), + }, + [1361] = { + [sym_compound_statement] = STATE(1288), + [sym_labeled_statement] = STATE(1288), + [sym_expression_statement] = STATE(1288), + [sym_if_statement] = STATE(1288), + [sym_switch_statement] = STATE(1288), + [sym_while_statement] = STATE(1288), + [sym_do_statement] = STATE(1288), + [sym_for_statement] = STATE(1288), + [sym_return_statement] = STATE(1288), + [sym_break_statement] = STATE(1288), + [sym_continue_statement] = STATE(1288), + [sym_goto_statement] = STATE(1288), + [sym__expression] = STATE(37), + [sym_comma_expression] = STATE(38), + [sym_conditional_expression] = STATE(37), + [sym_assignment_expression] = STATE(37), + [sym_pointer_expression] = STATE(37), + [sym_logical_expression] = STATE(37), + [sym_bitwise_expression] = STATE(37), + [sym_equality_expression] = STATE(37), + [sym_relational_expression] = STATE(37), + [sym_shift_expression] = STATE(37), + [sym_math_expression] = STATE(37), + [sym_cast_expression] = STATE(37), + [sym_sizeof_expression] = STATE(37), + [sym_subscript_expression] = STATE(37), + [sym_call_expression] = STATE(37), + [sym_field_expression] = STATE(37), + [sym_compound_literal_expression] = STATE(37), + [sym_parenthesized_expression] = STATE(37), + [sym_char_literal] = STATE(37), + [sym_concatenated_string] = STATE(37), + [sym_string_literal] = STATE(39), + [anon_sym_SEMI] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_LPAREN2] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(45), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(49), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_goto] = ACTIONS(59), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(65), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_sizeof] = ACTIONS(73), - [sym_number_literal] = ACTIONS(1057), - [anon_sym_SQUOTE] = ACTIONS(77), - [anon_sym_DQUOTE] = ACTIONS(79), - [sym_true] = ACTIONS(1059), - [sym_false] = ACTIONS(1059), - [sym_null] = ACTIONS(1059), - [sym_identifier] = ACTIONS(2406), - [sym_comment] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(61), + [anon_sym_TILDE] = ACTIONS(63), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(67), + [anon_sym_sizeof] = ACTIONS(69), + [sym_number_literal] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(75), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_null] = ACTIONS(77), + [sym_identifier] = ACTIONS(3435), + [sym_comment] = ACTIONS(81), }, }; @@ -56746,8 +58058,8 @@ static TSParseActionEntry ts_parse_actions[] = { [27] = {.count = 1, .reusable = true}, SHIFT(12), [29] = {.count = 1, .reusable = false}, SHIFT(13), [31] = {.count = 1, .reusable = false}, SHIFT(14), - [33] = {.count = 1, .reusable = false}, SHIFT(44), - [35] = {.count = 1, .reusable = false}, SHIFT(38), + [33] = {.count = 1, .reusable = false}, SHIFT(42), + [35] = {.count = 1, .reusable = false}, SHIFT(36), [37] = {.count = 1, .reusable = false}, SHIFT(15), [39] = {.count = 1, .reusable = false}, SHIFT(16), [41] = {.count = 1, .reusable = false}, SHIFT(17), @@ -56760,1702 +58072,1807 @@ static TSParseActionEntry ts_parse_actions[] = { [55] = {.count = 1, .reusable = false}, SHIFT(24), [57] = {.count = 1, .reusable = false}, SHIFT(25), [59] = {.count = 1, .reusable = false}, SHIFT(26), - [61] = {.count = 1, .reusable = false}, SHIFT(27), - [63] = {.count = 1, .reusable = false}, SHIFT(28), - [65] = {.count = 1, .reusable = true}, SHIFT(29), - [67] = {.count = 1, .reusable = true}, SHIFT(30), - [69] = {.count = 1, .reusable = false}, SHIFT(31), - [71] = {.count = 1, .reusable = true}, SHIFT(31), - [73] = {.count = 1, .reusable = false}, SHIFT(32), - [75] = {.count = 1, .reusable = true}, SHIFT(39), - [77] = {.count = 1, .reusable = true}, SHIFT(33), - [79] = {.count = 1, .reusable = true}, SHIFT(34), - [81] = {.count = 1, .reusable = false}, SHIFT(39), - [83] = {.count = 1, .reusable = false}, SHIFT(35), - [85] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), + [61] = {.count = 1, .reusable = true}, SHIFT(27), + [63] = {.count = 1, .reusable = true}, SHIFT(28), + [65] = {.count = 1, .reusable = false}, SHIFT(29), + [67] = {.count = 1, .reusable = true}, SHIFT(29), + [69] = {.count = 1, .reusable = false}, SHIFT(30), + [71] = {.count = 1, .reusable = true}, SHIFT(37), + [73] = {.count = 1, .reusable = true}, SHIFT(31), + [75] = {.count = 1, .reusable = true}, SHIFT(32), + [77] = {.count = 1, .reusable = false}, SHIFT(37), + [79] = {.count = 1, .reusable = false}, SHIFT(33), + [81] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), + [83] = {.count = 1, .reusable = true}, SHIFT(43), + [85] = {.count = 1, .reusable = true}, SHIFT(44), [87] = {.count = 1, .reusable = true}, SHIFT(45), - [89] = {.count = 1, .reusable = true}, SHIFT(46), - [91] = {.count = 1, .reusable = true}, SHIFT(47), - [93] = {.count = 1, .reusable = false}, SHIFT(48), - [95] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), - [97] = {.count = 1, .reusable = true}, SHIFT(49), - [99] = {.count = 1, .reusable = false}, SHIFT(50), - [101] = {.count = 1, .reusable = false}, SHIFT(51), - [103] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), - [105] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), - [107] = {.count = 1, .reusable = false}, SHIFT(55), - [109] = {.count = 1, .reusable = false}, SHIFT(53), - [111] = {.count = 1, .reusable = false}, SHIFT(52), - [113] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), - [115] = {.count = 1, .reusable = false}, SHIFT(57), + [89] = {.count = 1, .reusable = false}, SHIFT(46), + [91] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [93] = {.count = 1, .reusable = true}, SHIFT(47), + [95] = {.count = 1, .reusable = false}, SHIFT(48), + [97] = {.count = 1, .reusable = false}, SHIFT(49), + [99] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), + [101] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), + [103] = {.count = 1, .reusable = false}, SHIFT(53), + [105] = {.count = 1, .reusable = false}, SHIFT(51), + [107] = {.count = 1, .reusable = false}, SHIFT(50), + [109] = {.count = 1, .reusable = false}, REDUCE(sym_storage_class_specifier, 1), + [111] = {.count = 1, .reusable = false}, SHIFT(55), + [113] = {.count = 1, .reusable = false}, SHIFT(56), + [115] = {.count = 1, .reusable = true}, SHIFT(57), [117] = {.count = 1, .reusable = false}, SHIFT(58), - [119] = {.count = 1, .reusable = true}, SHIFT(59), + [119] = {.count = 1, .reusable = false}, SHIFT(59), [121] = {.count = 1, .reusable = false}, SHIFT(60), [123] = {.count = 1, .reusable = false}, SHIFT(61), - [125] = {.count = 1, .reusable = false}, SHIFT(62), - [127] = {.count = 1, .reusable = false}, SHIFT(63), - [129] = {.count = 1, .reusable = false}, SHIFT(64), - [131] = {.count = 1, .reusable = false}, SHIFT(65), - [133] = {.count = 1, .reusable = false}, SHIFT(66), - [135] = {.count = 1, .reusable = true}, SHIFT(69), - [137] = {.count = 1, .reusable = true}, SHIFT(70), - [139] = {.count = 1, .reusable = false}, SHIFT(82), - [141] = {.count = 1, .reusable = false}, SHIFT(76), - [143] = {.count = 1, .reusable = true}, SHIFT(71), - [145] = {.count = 1, .reusable = true}, SHIFT(72), - [147] = {.count = 1, .reusable = false}, SHIFT(73), - [149] = {.count = 1, .reusable = true}, SHIFT(73), - [151] = {.count = 1, .reusable = false}, SHIFT(74), - [153] = {.count = 1, .reusable = true}, SHIFT(77), - [155] = {.count = 1, .reusable = false}, SHIFT(77), - [157] = {.count = 1, .reusable = false}, SHIFT(75), - [159] = {.count = 1, .reusable = true}, SHIFT(83), - [161] = {.count = 1, .reusable = false}, SHIFT(83), - [163] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), - [165] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), - [167] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), - [169] = {.count = 1, .reusable = true}, SHIFT(84), - [171] = {.count = 1, .reusable = true}, SHIFT(85), - [173] = {.count = 1, .reusable = true}, SHIFT(87), - [175] = {.count = 1, .reusable = true}, SHIFT(88), - [177] = {.count = 1, .reusable = true}, SHIFT(90), - [179] = {.count = 1, .reusable = true}, SHIFT(92), - [181] = {.count = 1, .reusable = true}, SHIFT(95), - [183] = {.count = 1, .reusable = true}, SHIFT(96), - [185] = {.count = 1, .reusable = true}, SHIFT(97), - [187] = {.count = 1, .reusable = true}, SHIFT(98), - [189] = {.count = 1, .reusable = false}, SHIFT(99), - [191] = {.count = 1, .reusable = true}, SHIFT(99), - [193] = {.count = 1, .reusable = false}, SHIFT(100), - [195] = {.count = 1, .reusable = true}, SHIFT(101), - [197] = {.count = 1, .reusable = false}, SHIFT(101), - [199] = {.count = 1, .reusable = true}, SHIFT(103), - [201] = {.count = 1, .reusable = false}, SHIFT(105), + [125] = {.count = 1, .reusable = true}, SHIFT(64), + [127] = {.count = 1, .reusable = true}, SHIFT(65), + [129] = {.count = 1, .reusable = false}, SHIFT(77), + [131] = {.count = 1, .reusable = false}, SHIFT(71), + [133] = {.count = 1, .reusable = true}, SHIFT(66), + [135] = {.count = 1, .reusable = true}, SHIFT(67), + [137] = {.count = 1, .reusable = false}, SHIFT(68), + [139] = {.count = 1, .reusable = true}, SHIFT(68), + [141] = {.count = 1, .reusable = false}, SHIFT(69), + [143] = {.count = 1, .reusable = true}, SHIFT(72), + [145] = {.count = 1, .reusable = false}, SHIFT(72), + [147] = {.count = 1, .reusable = false}, SHIFT(70), + [149] = {.count = 1, .reusable = true}, SHIFT(78), + [151] = {.count = 1, .reusable = false}, SHIFT(78), + [153] = {.count = 1, .reusable = true}, REDUCE(sym_storage_class_specifier, 1), + [155] = {.count = 1, .reusable = true}, REDUCE(sym_type_qualifier, 1), + [157] = {.count = 1, .reusable = false}, REDUCE(sym_type_qualifier, 1), + [159] = {.count = 1, .reusable = true}, SHIFT(79), + [161] = {.count = 1, .reusable = true}, SHIFT(80), + [163] = {.count = 1, .reusable = true}, SHIFT(82), + [165] = {.count = 1, .reusable = true}, SHIFT(83), + [167] = {.count = 1, .reusable = true}, SHIFT(85), + [169] = {.count = 1, .reusable = true}, SHIFT(87), + [171] = {.count = 1, .reusable = true}, SHIFT(89), + [173] = {.count = 1, .reusable = false}, SHIFT(92), + [175] = {.count = 1, .reusable = false}, SHIFT(93), + [177] = {.count = 1, .reusable = false}, SHIFT(94), + [179] = {.count = 1, .reusable = false}, SHIFT(95), + [181] = {.count = 1, .reusable = false}, SHIFT(96), + [183] = {.count = 1, .reusable = true}, SHIFT(98), + [185] = {.count = 1, .reusable = true}, SHIFT(99), + [187] = {.count = 1, .reusable = true}, SHIFT(100), + [189] = {.count = 1, .reusable = true}, SHIFT(101), + [191] = {.count = 1, .reusable = true}, SHIFT(102), + [193] = {.count = 1, .reusable = true}, SHIFT(103), + [195] = {.count = 1, .reusable = false}, SHIFT(104), + [197] = {.count = 1, .reusable = true}, SHIFT(104), + [199] = {.count = 1, .reusable = false}, SHIFT(105), + [201] = {.count = 1, .reusable = true}, SHIFT(106), [203] = {.count = 1, .reusable = false}, SHIFT(106), - [205] = {.count = 1, .reusable = false}, SHIFT(107), - [207] = {.count = 1, .reusable = false}, SHIFT(108), - [209] = {.count = 1, .reusable = false}, SHIFT(109), - [211] = {.count = 1, .reusable = false}, SHIFT(110), + [205] = {.count = 1, .reusable = true}, SHIFT(108), + [207] = {.count = 1, .reusable = true}, SHIFT(109), + [209] = {.count = 1, .reusable = true}, SHIFT(110), + [211] = {.count = 1, .reusable = true}, SHIFT(111), [213] = {.count = 1, .reusable = false}, SHIFT(111), - [215] = {.count = 1, .reusable = false}, SHIFT(112), - [217] = {.count = 1, .reusable = true}, SHIFT(114), - [219] = {.count = 1, .reusable = true}, SHIFT(115), - [221] = {.count = 1, .reusable = true}, SHIFT(116), - [223] = {.count = 1, .reusable = true}, SHIFT(117), - [225] = {.count = 1, .reusable = true}, SHIFT(118), - [227] = {.count = 1, .reusable = true}, SHIFT(119), - [229] = {.count = 1, .reusable = false}, SHIFT(120), - [231] = {.count = 1, .reusable = true}, SHIFT(120), - [233] = {.count = 1, .reusable = false}, SHIFT(121), - [235] = {.count = 1, .reusable = true}, SHIFT(122), - [237] = {.count = 1, .reusable = false}, SHIFT(122), - [239] = {.count = 1, .reusable = true}, SHIFT(124), - [241] = {.count = 1, .reusable = true}, SHIFT(125), - [243] = {.count = 1, .reusable = true}, SHIFT(126), - [245] = {.count = 1, .reusable = true}, SHIFT(127), - [247] = {.count = 1, .reusable = false}, SHIFT(127), - [249] = {.count = 1, .reusable = true}, SHIFT(128), - [251] = {.count = 1, .reusable = false}, SHIFT(128), - [253] = {.count = 1, .reusable = true}, SHIFT(129), - [255] = {.count = 1, .reusable = false}, SHIFT(129), - [257] = {.count = 1, .reusable = true}, SHIFT(130), - [259] = {.count = 1, .reusable = true}, SHIFT(131), - [261] = {.count = 1, .reusable = false}, SHIFT(131), - [263] = {.count = 1, .reusable = false}, SHIFT(132), - [265] = {.count = 1, .reusable = true}, SHIFT(132), - [267] = {.count = 1, .reusable = false}, SHIFT(133), - [269] = {.count = 1, .reusable = true}, SHIFT(134), - [271] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [273] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [276] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [278] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), SHIFT(135), - [282] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [285] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [287] = {.count = 1, .reusable = true}, SHIFT(136), - [289] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [291] = {.count = 1, .reusable = true}, SHIFT(137), - [293] = {.count = 1, .reusable = true}, SHIFT(138), + [215] = {.count = 1, .reusable = true}, SHIFT(112), + [217] = {.count = 1, .reusable = false}, SHIFT(112), + [219] = {.count = 1, .reusable = true}, SHIFT(113), + [221] = {.count = 1, .reusable = false}, SHIFT(113), + [223] = {.count = 1, .reusable = true}, SHIFT(114), + [225] = {.count = 1, .reusable = true}, SHIFT(115), + [227] = {.count = 1, .reusable = false}, SHIFT(115), + [229] = {.count = 1, .reusable = false}, SHIFT(116), + [231] = {.count = 1, .reusable = true}, SHIFT(116), + [233] = {.count = 1, .reusable = false}, SHIFT(117), + [235] = {.count = 1, .reusable = true}, SHIFT(118), + [237] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [239] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), + [242] = {.count = 1, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [244] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), SHIFT(119), + [248] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), + [251] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [253] = {.count = 1, .reusable = true}, SHIFT(120), + [255] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [257] = {.count = 1, .reusable = true}, SHIFT(121), + [259] = {.count = 1, .reusable = true}, SHIFT(122), + [261] = {.count = 1, .reusable = true}, SHIFT(123), + [263] = {.count = 1, .reusable = true}, SHIFT(124), + [265] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1), + [267] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1), + [269] = {.count = 1, .reusable = true}, SHIFT(127), + [271] = {.count = 1, .reusable = true}, SHIFT(128), + [273] = {.count = 1, .reusable = true}, SHIFT(129), + [275] = {.count = 1, .reusable = false}, SHIFT(130), + [277] = {.count = 1, .reusable = true}, SHIFT(131), + [279] = {.count = 1, .reusable = false}, SHIFT(132), + [281] = {.count = 1, .reusable = true}, SHIFT(133), + [283] = {.count = 1, .reusable = true}, SHIFT(132), + [285] = {.count = 1, .reusable = false}, SHIFT(134), + [287] = {.count = 1, .reusable = true}, SHIFT(135), + [289] = {.count = 1, .reusable = true}, SHIFT(136), + [291] = {.count = 1, .reusable = false}, SHIFT(137), + [293] = {.count = 1, .reusable = false}, SHIFT(138), [295] = {.count = 1, .reusable = true}, SHIFT(139), - [297] = {.count = 1, .reusable = true}, SHIFT(140), - [299] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 1), - [301] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 1), - [303] = {.count = 1, .reusable = true}, SHIFT(143), - [305] = {.count = 1, .reusable = true}, SHIFT(144), - [307] = {.count = 1, .reusable = true}, SHIFT(145), - [309] = {.count = 1, .reusable = false}, SHIFT(146), - [311] = {.count = 1, .reusable = true}, SHIFT(147), - [313] = {.count = 1, .reusable = false}, SHIFT(148), - [315] = {.count = 1, .reusable = true}, SHIFT(149), - [317] = {.count = 1, .reusable = true}, SHIFT(148), + [297] = {.count = 1, .reusable = false}, SHIFT(140), + [299] = {.count = 1, .reusable = true}, SHIFT(140), + [301] = {.count = 1, .reusable = false}, SHIFT(141), + [303] = {.count = 1, .reusable = false}, SHIFT(142), + [305] = {.count = 1, .reusable = true}, SHIFT(143), + [307] = {.count = 1, .reusable = true}, SHIFT(144), + [309] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), + [311] = {.count = 1, .reusable = false}, SHIFT(148), + [313] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), + [315] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), + [317] = {.count = 1, .reusable = false}, SHIFT(152), [319] = {.count = 1, .reusable = false}, SHIFT(150), - [321] = {.count = 1, .reusable = true}, SHIFT(151), - [323] = {.count = 1, .reusable = true}, SHIFT(152), - [325] = {.count = 1, .reusable = false}, SHIFT(153), - [327] = {.count = 1, .reusable = false}, SHIFT(154), - [329] = {.count = 1, .reusable = true}, SHIFT(155), - [331] = {.count = 1, .reusable = false}, SHIFT(156), - [333] = {.count = 1, .reusable = true}, SHIFT(156), - [335] = {.count = 1, .reusable = false}, SHIFT(157), - [337] = {.count = 1, .reusable = false}, SHIFT(158), - [339] = {.count = 1, .reusable = true}, SHIFT(159), - [341] = {.count = 1, .reusable = true}, SHIFT(160), - [343] = {.count = 1, .reusable = true}, REDUCE(sym_translation_unit, 1), - [345] = {.count = 1, .reusable = false}, SHIFT(164), - [347] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 1), - [349] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), - [351] = {.count = 1, .reusable = false}, SHIFT(168), - [353] = {.count = 1, .reusable = false}, SHIFT(166), - [355] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(167), + [321] = {.count = 2, .reusable = false}, REDUCE(sym_sized_type_specifier, 1), SHIFT(151), + [324] = {.count = 1, .reusable = false}, SHIFT(153), + [326] = {.count = 1, .reusable = true}, SHIFT(154), + [328] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2), + [330] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2), + [332] = {.count = 1, .reusable = false}, SHIFT(155), + [334] = {.count = 1, .reusable = true}, SHIFT(156), + [336] = {.count = 1, .reusable = false}, SHIFT(157), + [338] = {.count = 1, .reusable = false}, SHIFT(159), + [340] = {.count = 1, .reusable = false}, SHIFT(160), + [342] = {.count = 1, .reusable = false}, SHIFT(161), + [344] = {.count = 1, .reusable = false}, SHIFT(162), + [346] = {.count = 1, .reusable = false}, SHIFT(163), + [348] = {.count = 1, .reusable = false}, SHIFT(164), + [350] = {.count = 1, .reusable = false}, SHIFT(165), + [352] = {.count = 1, .reusable = false}, SHIFT(166), + [354] = {.count = 1, .reusable = true}, SHIFT(167), + [356] = {.count = 1, .reusable = false}, SHIFT(168), [358] = {.count = 1, .reusable = false}, SHIFT(169), [360] = {.count = 1, .reusable = true}, SHIFT(170), - [362] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_include, 2), - [364] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_include, 2), - [366] = {.count = 1, .reusable = false}, SHIFT(171), - [368] = {.count = 1, .reusable = true}, SHIFT(172), - [370] = {.count = 1, .reusable = false}, SHIFT(173), - [372] = {.count = 1, .reusable = false}, SHIFT(175), - [374] = {.count = 1, .reusable = false}, SHIFT(176), - [376] = {.count = 1, .reusable = false}, SHIFT(177), - [378] = {.count = 1, .reusable = false}, SHIFT(178), - [380] = {.count = 1, .reusable = false}, SHIFT(179), - [382] = {.count = 1, .reusable = false}, SHIFT(180), - [384] = {.count = 1, .reusable = false}, SHIFT(181), - [386] = {.count = 1, .reusable = false}, SHIFT(182), - [388] = {.count = 1, .reusable = true}, SHIFT(183), - [390] = {.count = 1, .reusable = false}, SHIFT(184), - [392] = {.count = 1, .reusable = false}, SHIFT(185), - [394] = {.count = 1, .reusable = true}, SHIFT(186), - [396] = {.count = 1, .reusable = false}, SHIFT(187), - [398] = {.count = 1, .reusable = false}, SHIFT(188), - [400] = {.count = 1, .reusable = false}, SHIFT(189), - [402] = {.count = 1, .reusable = false}, SHIFT(190), - [404] = {.count = 1, .reusable = false}, SHIFT(191), - [406] = {.count = 1, .reusable = false}, SHIFT(192), - [408] = {.count = 1, .reusable = false}, SHIFT(193), - [410] = {.count = 1, .reusable = false}, SHIFT(194), - [412] = {.count = 1, .reusable = false}, SHIFT(195), - [414] = {.count = 1, .reusable = false}, SHIFT(196), - [416] = {.count = 1, .reusable = false}, SHIFT(197), - [418] = {.count = 1, .reusable = true}, SHIFT(201), - [420] = {.count = 1, .reusable = false}, SHIFT(201), - [422] = {.count = 1, .reusable = false}, SHIFT(198), - [424] = {.count = 1, .reusable = false}, SHIFT(204), - [426] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), - [428] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), - [430] = {.count = 1, .reusable = true}, SHIFT(207), - [432] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [434] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(135), - [437] = {.count = 1, .reusable = true}, SHIFT(208), - [439] = {.count = 1, .reusable = true}, SHIFT(209), - [441] = {.count = 1, .reusable = true}, SHIFT(210), - [443] = {.count = 1, .reusable = false}, SHIFT(212), - [445] = {.count = 1, .reusable = false}, SHIFT(214), - [447] = {.count = 1, .reusable = true}, SHIFT(215), - [449] = {.count = 1, .reusable = false}, SHIFT(220), - [451] = {.count = 1, .reusable = false}, SHIFT(218), - [453] = {.count = 1, .reusable = false}, SHIFT(221), - [455] = {.count = 1, .reusable = true}, SHIFT(222), - [457] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [459] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [461] = {.count = 1, .reusable = true}, SHIFT(225), - [463] = {.count = 1, .reusable = false}, SHIFT(225), - [465] = {.count = 1, .reusable = true}, SHIFT(226), - [467] = {.count = 1, .reusable = true}, SHIFT(228), - [469] = {.count = 1, .reusable = true}, SHIFT(229), - [471] = {.count = 1, .reusable = true}, SHIFT(230), - [473] = {.count = 1, .reusable = true}, SHIFT(231), - [475] = {.count = 1, .reusable = true}, SHIFT(232), - [477] = {.count = 1, .reusable = true}, SHIFT(235), - [479] = {.count = 1, .reusable = true}, SHIFT(236), - [481] = {.count = 1, .reusable = false}, SHIFT(236), - [483] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), - [485] = {.count = 1, .reusable = true}, SHIFT(237), - [487] = {.count = 1, .reusable = true}, SHIFT(238), - [489] = {.count = 1, .reusable = true}, SHIFT(239), - [491] = {.count = 1, .reusable = true}, SHIFT(242), - [493] = {.count = 1, .reusable = true}, SHIFT(243), - [495] = {.count = 1, .reusable = false}, SHIFT(244), - [497] = {.count = 1, .reusable = false}, SHIFT(245), - [499] = {.count = 1, .reusable = true}, SHIFT(246), - [501] = {.count = 1, .reusable = true}, SHIFT(245), - [503] = {.count = 1, .reusable = false}, SHIFT(247), - [505] = {.count = 1, .reusable = true}, SHIFT(248), - [507] = {.count = 1, .reusable = true}, SHIFT(249), - [509] = {.count = 1, .reusable = false}, SHIFT(250), + [362] = {.count = 1, .reusable = false}, SHIFT(171), + [364] = {.count = 1, .reusable = false}, SHIFT(172), + [366] = {.count = 1, .reusable = false}, SHIFT(173), + [368] = {.count = 1, .reusable = false}, SHIFT(174), + [370] = {.count = 1, .reusable = false}, SHIFT(175), + [372] = {.count = 1, .reusable = false}, SHIFT(176), + [374] = {.count = 1, .reusable = false}, SHIFT(177), + [376] = {.count = 1, .reusable = false}, SHIFT(178), + [378] = {.count = 1, .reusable = false}, SHIFT(179), + [380] = {.count = 1, .reusable = true}, SHIFT(183), + [382] = {.count = 1, .reusable = false}, SHIFT(183), + [384] = {.count = 1, .reusable = false}, SHIFT(180), + [386] = {.count = 1, .reusable = false}, SHIFT(186), + [388] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 2), + [390] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 2), + [392] = {.count = 1, .reusable = true}, SHIFT(189), + [394] = {.count = 1, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [396] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(119), + [399] = {.count = 1, .reusable = true}, SHIFT(190), + [401] = {.count = 1, .reusable = true}, SHIFT(191), + [403] = {.count = 1, .reusable = true}, SHIFT(192), + [405] = {.count = 1, .reusable = false}, SHIFT(194), + [407] = {.count = 1, .reusable = false}, SHIFT(196), + [409] = {.count = 1, .reusable = true}, SHIFT(197), + [411] = {.count = 1, .reusable = false}, SHIFT(202), + [413] = {.count = 1, .reusable = false}, SHIFT(200), + [415] = {.count = 1, .reusable = false}, SHIFT(203), + [417] = {.count = 1, .reusable = true}, SHIFT(204), + [419] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [421] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [423] = {.count = 1, .reusable = true}, SHIFT(207), + [425] = {.count = 1, .reusable = true}, SHIFT(208), + [427] = {.count = 1, .reusable = true}, SHIFT(209), + [429] = {.count = 1, .reusable = true}, SHIFT(210), + [431] = {.count = 1, .reusable = true}, SHIFT(211), + [433] = {.count = 1, .reusable = true}, SHIFT(214), + [435] = {.count = 1, .reusable = true}, SHIFT(215), + [437] = {.count = 1, .reusable = false}, SHIFT(215), + [439] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), + [441] = {.count = 1, .reusable = true}, SHIFT(216), + [443] = {.count = 1, .reusable = true}, SHIFT(217), + [445] = {.count = 1, .reusable = true}, SHIFT(218), + [447] = {.count = 1, .reusable = true}, SHIFT(221), + [449] = {.count = 1, .reusable = true}, SHIFT(222), + [451] = {.count = 1, .reusable = false}, SHIFT(223), + [453] = {.count = 1, .reusable = false}, SHIFT(224), + [455] = {.count = 1, .reusable = true}, SHIFT(225), + [457] = {.count = 1, .reusable = true}, SHIFT(224), + [459] = {.count = 1, .reusable = false}, SHIFT(226), + [461] = {.count = 1, .reusable = true}, SHIFT(227), + [463] = {.count = 1, .reusable = true}, SHIFT(228), + [465] = {.count = 1, .reusable = false}, SHIFT(229), + [467] = {.count = 1, .reusable = false}, SHIFT(230), + [469] = {.count = 1, .reusable = true}, SHIFT(231), + [471] = {.count = 1, .reusable = false}, SHIFT(232), + [473] = {.count = 1, .reusable = true}, SHIFT(232), + [475] = {.count = 1, .reusable = false}, SHIFT(233), + [477] = {.count = 1, .reusable = false}, SHIFT(234), + [479] = {.count = 1, .reusable = true}, SHIFT(235), + [481] = {.count = 1, .reusable = false}, SHIFT(237), + [483] = {.count = 1, .reusable = false}, SHIFT(238), + [485] = {.count = 1, .reusable = false}, SHIFT(151), + [487] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), + [489] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), + [491] = {.count = 1, .reusable = true}, SHIFT(239), + [493] = {.count = 1, .reusable = true}, SHIFT(240), + [495] = {.count = 1, .reusable = true}, SHIFT(241), + [497] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), + [499] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), + [501] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2), + [503] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2), + [505] = {.count = 1, .reusable = false}, SHIFT(244), + [507] = {.count = 1, .reusable = true}, SHIFT(245), + [509] = {.count = 1, .reusable = true}, SHIFT(246), [511] = {.count = 1, .reusable = false}, SHIFT(251), - [513] = {.count = 1, .reusable = true}, SHIFT(252), - [515] = {.count = 1, .reusable = false}, SHIFT(253), - [517] = {.count = 1, .reusable = true}, SHIFT(253), - [519] = {.count = 1, .reusable = false}, SHIFT(254), - [521] = {.count = 1, .reusable = false}, SHIFT(255), - [523] = {.count = 1, .reusable = true}, SHIFT(256), - [525] = {.count = 1, .reusable = false}, SHIFT(258), - [527] = {.count = 1, .reusable = false}, SHIFT(259), - [529] = {.count = 1, .reusable = false}, SHIFT(167), - [531] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), - [533] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), - [535] = {.count = 1, .reusable = true}, SHIFT(260), - [537] = {.count = 1, .reusable = true}, SHIFT(261), - [539] = {.count = 1, .reusable = true}, SHIFT(262), - [541] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), - [543] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2, .alias_sequence_id = 2), - [545] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 2), - [547] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 2), - [549] = {.count = 1, .reusable = false}, SHIFT(265), - [551] = {.count = 1, .reusable = true}, SHIFT(266), - [553] = {.count = 1, .reusable = true}, SHIFT(267), - [555] = {.count = 1, .reusable = false}, SHIFT(272), - [557] = {.count = 1, .reusable = false}, SHIFT(269), - [559] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), - [561] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), - [563] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2), - [565] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2), - [567] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), - [569] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), - [571] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2), - [573] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2), - [575] = {.count = 1, .reusable = true}, SHIFT(275), - [577] = {.count = 1, .reusable = false}, SHIFT(275), - [579] = {.count = 1, .reusable = false}, SHIFT(277), - [581] = {.count = 1, .reusable = false}, SHIFT(278), - [583] = {.count = 1, .reusable = false}, SHIFT(279), - [585] = {.count = 1, .reusable = false}, SHIFT(280), - [587] = {.count = 1, .reusable = false}, SHIFT(281), - [589] = {.count = 1, .reusable = false}, SHIFT(282), - [591] = {.count = 1, .reusable = false}, SHIFT(283), - [593] = {.count = 1, .reusable = false}, SHIFT(285), + [513] = {.count = 1, .reusable = false}, SHIFT(248), + [515] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), + [517] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2, .alias_sequence_id = 2), + [519] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 2), + [521] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 2), + [523] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), + [525] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2, .alias_sequence_id = 2), + [527] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 2), + [529] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 2), + [531] = {.count = 1, .reusable = true}, SHIFT(254), + [533] = {.count = 1, .reusable = false}, SHIFT(254), + [535] = {.count = 1, .reusable = false}, SHIFT(256), + [537] = {.count = 1, .reusable = false}, SHIFT(257), + [539] = {.count = 1, .reusable = false}, SHIFT(258), + [541] = {.count = 1, .reusable = false}, SHIFT(259), + [543] = {.count = 1, .reusable = true}, SHIFT(261), + [545] = {.count = 1, .reusable = false}, SHIFT(263), + [547] = {.count = 1, .reusable = true}, SHIFT(268), + [549] = {.count = 1, .reusable = true}, SHIFT(269), + [551] = {.count = 1, .reusable = true}, SHIFT(270), + [553] = {.count = 1, .reusable = true}, SHIFT(271), + [555] = {.count = 1, .reusable = true}, SHIFT(274), + [557] = {.count = 1, .reusable = false}, SHIFT(274), + [559] = {.count = 1, .reusable = false}, SHIFT(272), + [561] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), + [563] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), + [565] = {.count = 1, .reusable = true}, SHIFT(276), + [567] = {.count = 1, .reusable = true}, SHIFT(277), + [569] = {.count = 1, .reusable = false}, SHIFT(277), + [571] = {.count = 1, .reusable = true}, SHIFT(278), + [573] = {.count = 1, .reusable = false}, SHIFT(279), + [575] = {.count = 1, .reusable = false}, SHIFT(280), + [577] = {.count = 1, .reusable = true}, SHIFT(281), + [579] = {.count = 1, .reusable = true}, SHIFT(280), + [581] = {.count = 1, .reusable = false}, SHIFT(282), + [583] = {.count = 1, .reusable = true}, SHIFT(283), + [585] = {.count = 1, .reusable = true}, SHIFT(284), + [587] = {.count = 1, .reusable = false}, SHIFT(285), + [589] = {.count = 1, .reusable = false}, SHIFT(286), + [591] = {.count = 1, .reusable = true}, SHIFT(287), + [593] = {.count = 1, .reusable = false}, SHIFT(288), [595] = {.count = 1, .reusable = true}, SHIFT(288), - [597] = {.count = 1, .reusable = true}, SHIFT(289), - [599] = {.count = 1, .reusable = false}, SHIFT(289), - [601] = {.count = 1, .reusable = false}, SHIFT(290), - [603] = {.count = 1, .reusable = false}, SHIFT(291), - [605] = {.count = 1, .reusable = true}, SHIFT(292), - [607] = {.count = 1, .reusable = true}, SHIFT(293), - [609] = {.count = 1, .reusable = true}, SHIFT(291), - [611] = {.count = 1, .reusable = false}, SHIFT(294), - [613] = {.count = 1, .reusable = true}, SHIFT(295), - [615] = {.count = 1, .reusable = true}, SHIFT(296), - [617] = {.count = 1, .reusable = false}, SHIFT(297), - [619] = {.count = 1, .reusable = false}, SHIFT(298), - [621] = {.count = 1, .reusable = true}, SHIFT(299), - [623] = {.count = 1, .reusable = false}, SHIFT(300), - [625] = {.count = 1, .reusable = true}, SHIFT(300), - [627] = {.count = 1, .reusable = false}, SHIFT(301), - [629] = {.count = 1, .reusable = false}, SHIFT(302), - [631] = {.count = 1, .reusable = false}, SHIFT(304), - [633] = {.count = 1, .reusable = true}, SHIFT(310), - [635] = {.count = 1, .reusable = false}, SHIFT(310), - [637] = {.count = 1, .reusable = true}, SHIFT(311), - [639] = {.count = 1, .reusable = true}, SHIFT(314), - [641] = {.count = 1, .reusable = true}, SHIFT(315), - [643] = {.count = 1, .reusable = true}, SHIFT(316), - [645] = {.count = 1, .reusable = true}, SHIFT(317), - [647] = {.count = 1, .reusable = true}, SHIFT(319), - [649] = {.count = 1, .reusable = false}, SHIFT(319), - [651] = {.count = 1, .reusable = false}, SHIFT(318), - [653] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), - [655] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), - [657] = {.count = 1, .reusable = true}, SHIFT(321), - [659] = {.count = 1, .reusable = true}, SHIFT(322), - [661] = {.count = 1, .reusable = false}, SHIFT(322), - [663] = {.count = 1, .reusable = true}, SHIFT(323), - [665] = {.count = 1, .reusable = false}, SHIFT(324), - [667] = {.count = 1, .reusable = false}, SHIFT(325), - [669] = {.count = 1, .reusable = true}, SHIFT(326), - [671] = {.count = 1, .reusable = true}, SHIFT(325), - [673] = {.count = 1, .reusable = false}, SHIFT(327), - [675] = {.count = 1, .reusable = true}, SHIFT(328), - [677] = {.count = 1, .reusable = true}, SHIFT(329), - [679] = {.count = 1, .reusable = false}, SHIFT(330), - [681] = {.count = 1, .reusable = false}, SHIFT(331), - [683] = {.count = 1, .reusable = true}, SHIFT(332), - [685] = {.count = 1, .reusable = false}, SHIFT(333), - [687] = {.count = 1, .reusable = true}, SHIFT(333), - [689] = {.count = 1, .reusable = false}, SHIFT(334), - [691] = {.count = 1, .reusable = false}, SHIFT(335), - [693] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), - [695] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), - [697] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), - [699] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), - [701] = {.count = 1, .reusable = true}, SHIFT(337), - [703] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), - [705] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), - [707] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), - [709] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), - [711] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), - [713] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), - [715] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), - [717] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), - [719] = {.count = 1, .reusable = true}, SHIFT(339), - [721] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), - [723] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), - [725] = {.count = 1, .reusable = false}, SHIFT(340), - [727] = {.count = 1, .reusable = true}, SHIFT(341), - [729] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), - [731] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), - [733] = {.count = 1, .reusable = true}, SHIFT(344), - [735] = {.count = 1, .reusable = true}, SHIFT(345), - [737] = {.count = 1, .reusable = false}, SHIFT(346), - [739] = {.count = 1, .reusable = true}, SHIFT(348), - [741] = {.count = 1, .reusable = true}, SHIFT(349), - [743] = {.count = 1, .reusable = true}, SHIFT(350), - [745] = {.count = 1, .reusable = true}, SHIFT(351), - [747] = {.count = 1, .reusable = true}, SHIFT(352), - [749] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2), - [751] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2), - [753] = {.count = 1, .reusable = true}, SHIFT(357), - [755] = {.count = 1, .reusable = false}, SHIFT(357), - [757] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), - [759] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), - [761] = {.count = 1, .reusable = true}, SHIFT(359), - [763] = {.count = 1, .reusable = true}, SHIFT(360), - [765] = {.count = 1, .reusable = false}, SHIFT(360), - [767] = {.count = 1, .reusable = true}, SHIFT(361), - [769] = {.count = 1, .reusable = false}, SHIFT(361), - [771] = {.count = 1, .reusable = true}, SHIFT(362), - [773] = {.count = 1, .reusable = true}, SHIFT(363), - [775] = {.count = 1, .reusable = true}, SHIFT(364), - [777] = {.count = 1, .reusable = true}, SHIFT(365), - [779] = {.count = 1, .reusable = false}, SHIFT(366), - [781] = {.count = 1, .reusable = true}, SHIFT(366), - [783] = {.count = 1, .reusable = false}, SHIFT(367), - [785] = {.count = 1, .reusable = true}, SHIFT(368), - [787] = {.count = 1, .reusable = false}, SHIFT(368), - [789] = {.count = 1, .reusable = true}, SHIFT(370), - [791] = {.count = 1, .reusable = false}, SHIFT(370), - [793] = {.count = 1, .reusable = true}, SHIFT(371), - [795] = {.count = 1, .reusable = false}, SHIFT(371), - [797] = {.count = 1, .reusable = true}, SHIFT(372), - [799] = {.count = 1, .reusable = false}, SHIFT(372), - [801] = {.count = 1, .reusable = true}, SHIFT(373), - [803] = {.count = 1, .reusable = false}, SHIFT(373), - [805] = {.count = 1, .reusable = true}, SHIFT(374), - [807] = {.count = 1, .reusable = false}, SHIFT(374), - [809] = {.count = 1, .reusable = true}, SHIFT(375), - [811] = {.count = 1, .reusable = false}, SHIFT(375), - [813] = {.count = 1, .reusable = true}, SHIFT(376), - [815] = {.count = 1, .reusable = false}, SHIFT(376), - [817] = {.count = 1, .reusable = true}, SHIFT(377), - [819] = {.count = 1, .reusable = false}, SHIFT(377), - [821] = {.count = 1, .reusable = true}, SHIFT(378), - [823] = {.count = 1, .reusable = false}, SHIFT(378), - [825] = {.count = 1, .reusable = true}, SHIFT(379), - [827] = {.count = 1, .reusable = false}, SHIFT(379), - [829] = {.count = 1, .reusable = true}, SHIFT(380), - [831] = {.count = 1, .reusable = false}, SHIFT(380), - [833] = {.count = 1, .reusable = true}, SHIFT(381), - [835] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), - [837] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), - [839] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), - [841] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), - [843] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [845] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), - [848] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), - [851] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), - [854] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), - [857] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), - [860] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), - [863] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), - [866] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), - [869] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), - [872] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), - [875] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), - [878] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), - [881] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), - [884] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(44), - [887] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(38), - [890] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), - [893] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), - [896] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), - [899] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), - [902] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(19), - [905] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(20), - [908] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), - [911] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(22), - [914] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), - [917] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), - [920] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), - [923] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), - [926] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), - [929] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), - [932] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), - [935] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), - [938] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), - [941] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), - [944] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), - [947] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(39), - [950] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), - [953] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(34), - [956] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(39), - [959] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(35), - [962] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(13), - [965] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(14), - [968] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [970] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2), - [972] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2), - [974] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), - [976] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), - [978] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [980] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [982] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(168), - [985] = {.count = 1, .reusable = false}, SHIFT(384), - [987] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3), - [989] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3), - [991] = {.count = 1, .reusable = true}, SHIFT(385), - [993] = {.count = 1, .reusable = true}, SHIFT(386), - [995] = {.count = 1, .reusable = true}, SHIFT(387), - [997] = {.count = 1, .reusable = false}, SHIFT(388), - [999] = {.count = 1, .reusable = false}, SHIFT(389), - [1001] = {.count = 1, .reusable = true}, SHIFT(390), - [1003] = {.count = 1, .reusable = true}, SHIFT(391), - [1005] = {.count = 1, .reusable = true}, SHIFT(392), - [1007] = {.count = 1, .reusable = false}, SHIFT(393), - [1009] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3), - [1011] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3), - [1013] = {.count = 1, .reusable = true}, SHIFT(394), - [1015] = {.count = 1, .reusable = false}, SHIFT(395), - [1017] = {.count = 1, .reusable = false}, SHIFT(396), - [1019] = {.count = 1, .reusable = false}, SHIFT(397), - [1021] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), - [1023] = {.count = 1, .reusable = false}, SHIFT(398), - [1025] = {.count = 1, .reusable = false}, SHIFT(399), - [1027] = {.count = 1, .reusable = true}, SHIFT(400), - [1029] = {.count = 1, .reusable = false}, SHIFT(401), - [1031] = {.count = 1, .reusable = false}, SHIFT(402), - [1033] = {.count = 1, .reusable = true}, SHIFT(403), - [1035] = {.count = 1, .reusable = false}, SHIFT(404), - [1037] = {.count = 1, .reusable = false}, SHIFT(405), - [1039] = {.count = 1, .reusable = false}, SHIFT(406), - [1041] = {.count = 1, .reusable = false}, SHIFT(407), - [1043] = {.count = 1, .reusable = false}, SHIFT(408), - [1045] = {.count = 1, .reusable = false}, SHIFT(409), - [1047] = {.count = 1, .reusable = false}, SHIFT(410), - [1049] = {.count = 1, .reusable = false}, SHIFT(411), - [1051] = {.count = 1, .reusable = false}, SHIFT(412), - [1053] = {.count = 1, .reusable = false}, SHIFT(413), - [1055] = {.count = 1, .reusable = false}, SHIFT(414), - [1057] = {.count = 1, .reusable = true}, SHIFT(417), - [1059] = {.count = 1, .reusable = false}, SHIFT(417), - [1061] = {.count = 1, .reusable = false}, SHIFT(415), - [1063] = {.count = 1, .reusable = false}, SHIFT(420), - [1065] = {.count = 1, .reusable = false}, SHIFT(421), - [1067] = {.count = 1, .reusable = false}, SHIFT(422), - [1069] = {.count = 1, .reusable = false}, SHIFT(423), - [1071] = {.count = 1, .reusable = true}, SHIFT(426), - [1073] = {.count = 1, .reusable = true}, SHIFT(430), - [1075] = {.count = 1, .reusable = false}, SHIFT(430), - [1077] = {.count = 1, .reusable = true}, SHIFT(431), - [1079] = {.count = 1, .reusable = true}, SHIFT(434), - [1081] = {.count = 1, .reusable = true}, SHIFT(435), - [1083] = {.count = 1, .reusable = true}, SHIFT(436), - [1085] = {.count = 1, .reusable = false}, SHIFT(436), - [1087] = {.count = 1, .reusable = true}, SHIFT(437), - [1089] = {.count = 1, .reusable = true}, SHIFT(438), - [1091] = {.count = 1, .reusable = true}, SHIFT(439), - [1093] = {.count = 1, .reusable = true}, SHIFT(440), - [1095] = {.count = 1, .reusable = true}, SHIFT(441), - [1097] = {.count = 1, .reusable = true}, SHIFT(442), - [1099] = {.count = 1, .reusable = true}, SHIFT(443), - [1101] = {.count = 1, .reusable = true}, SHIFT(445), - [1103] = {.count = 1, .reusable = false}, SHIFT(441), - [1105] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3), - [1107] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3), - [1109] = {.count = 1, .reusable = true}, SHIFT(448), - [1111] = {.count = 1, .reusable = false}, SHIFT(448), - [1113] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3), - [1115] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3), - [1117] = {.count = 1, .reusable = true}, SHIFT(450), - [1119] = {.count = 1, .reusable = false}, SHIFT(210), - [1121] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 1), - [1123] = {.count = 1, .reusable = true}, SHIFT(454), - [1125] = {.count = 1, .reusable = true}, SHIFT(455), - [1127] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(14), - [1130] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), - [1132] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(214), - [1135] = {.count = 1, .reusable = true}, SHIFT(458), - [1137] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), - [1139] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), - [1141] = {.count = 1, .reusable = false}, SHIFT(461), - [1143] = {.count = 1, .reusable = false}, SHIFT(462), - [1145] = {.count = 1, .reusable = false}, SHIFT(463), - [1147] = {.count = 1, .reusable = false}, SHIFT(464), - [1149] = {.count = 1, .reusable = false}, SHIFT(465), - [1151] = {.count = 1, .reusable = false}, SHIFT(466), - [1153] = {.count = 1, .reusable = false}, SHIFT(467), - [1155] = {.count = 1, .reusable = false}, SHIFT(471), - [1157] = {.count = 1, .reusable = false}, SHIFT(474), - [1159] = {.count = 1, .reusable = false}, SHIFT(475), - [1161] = {.count = 1, .reusable = false}, SHIFT(476), - [1163] = {.count = 1, .reusable = false}, SHIFT(477), - [1165] = {.count = 1, .reusable = false}, SHIFT(478), - [1167] = {.count = 1, .reusable = false}, SHIFT(479), - [1169] = {.count = 1, .reusable = false}, SHIFT(480), - [1171] = {.count = 1, .reusable = false}, SHIFT(482), - [1173] = {.count = 1, .reusable = true}, SHIFT(483), - [1175] = {.count = 1, .reusable = false}, SHIFT(484), - [1177] = {.count = 1, .reusable = true}, SHIFT(485), - [1179] = {.count = 1, .reusable = true}, SHIFT(486), - [1181] = {.count = 1, .reusable = false}, SHIFT(486), - [1183] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [1185] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [1187] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(2), - [1190] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(3), - [1193] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(57), - [1196] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(58), - [1199] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(6), - [1202] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(7), - [1205] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(8), - [1208] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(13), - [1211] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(10), - [1214] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), - [1216] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(11), - [1219] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(12), - [1222] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(14), - [1225] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(44), - [1228] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(38), - [1231] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(15), - [1234] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(16), - [1237] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(17), - [1240] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(60), - [1243] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(61), - [1246] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(62), - [1249] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(63), - [1252] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(64), - [1255] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(23), - [1258] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(65), - [1261] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(25), - [1264] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(26), - [1267] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(27), - [1270] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(28), - [1273] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(29), - [1276] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(30), - [1279] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(31), - [1282] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(31), - [1285] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(32), - [1288] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(39), - [1291] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(33), - [1294] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(34), - [1297] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(39), - [1300] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(66), - [1303] = {.count = 1, .reusable = true}, SHIFT(488), - [1305] = {.count = 1, .reusable = true}, SHIFT(490), - [1307] = {.count = 1, .reusable = true}, SHIFT(491), - [1309] = {.count = 1, .reusable = false}, SHIFT(496), - [1311] = {.count = 1, .reusable = false}, SHIFT(494), - [1313] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [1315] = {.count = 1, .reusable = true}, SHIFT(14), - [1317] = {.count = 1, .reusable = true}, SHIFT(499), - [1319] = {.count = 1, .reusable = true}, SHIFT(500), - [1321] = {.count = 1, .reusable = true}, SHIFT(501), - [1323] = {.count = 1, .reusable = false}, SHIFT(501), - [1325] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), - [1327] = {.count = 1, .reusable = true}, SHIFT(503), - [1329] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), - [1331] = {.count = 1, .reusable = true}, SHIFT(505), - [1333] = {.count = 1, .reusable = false}, SHIFT(505), - [1335] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [1337] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [1339] = {.count = 1, .reusable = true}, SHIFT(506), - [1341] = {.count = 1, .reusable = false}, SHIFT(506), - [1343] = {.count = 1, .reusable = true}, SHIFT(507), - [1345] = {.count = 1, .reusable = false}, SHIFT(507), - [1347] = {.count = 1, .reusable = true}, SHIFT(508), - [1349] = {.count = 1, .reusable = false}, SHIFT(508), - [1351] = {.count = 1, .reusable = true}, SHIFT(509), - [1353] = {.count = 1, .reusable = false}, SHIFT(509), - [1355] = {.count = 1, .reusable = true}, SHIFT(510), - [1357] = {.count = 1, .reusable = false}, SHIFT(510), - [1359] = {.count = 1, .reusable = true}, SHIFT(511), - [1361] = {.count = 1, .reusable = false}, SHIFT(511), - [1363] = {.count = 1, .reusable = true}, SHIFT(512), - [1365] = {.count = 1, .reusable = false}, SHIFT(512), - [1367] = {.count = 1, .reusable = true}, SHIFT(513), - [1369] = {.count = 1, .reusable = false}, SHIFT(513), - [1371] = {.count = 1, .reusable = true}, SHIFT(514), - [1373] = {.count = 1, .reusable = false}, SHIFT(514), - [1375] = {.count = 1, .reusable = true}, SHIFT(515), - [1377] = {.count = 1, .reusable = false}, SHIFT(515), - [1379] = {.count = 1, .reusable = true}, SHIFT(516), - [1381] = {.count = 1, .reusable = false}, SHIFT(516), - [1383] = {.count = 1, .reusable = true}, SHIFT(517), - [1385] = {.count = 1, .reusable = true}, SHIFT(518), - [1387] = {.count = 1, .reusable = false}, SHIFT(518), - [1389] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(259), - [1392] = {.count = 1, .reusable = true}, SHIFT(522), - [1394] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), - [1396] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), - [1398] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), - [1400] = {.count = 1, .reusable = true}, SHIFT(523), - [1402] = {.count = 1, .reusable = true}, SHIFT(524), - [1404] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), - [1406] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), - [1408] = {.count = 1, .reusable = false}, SHIFT(526), - [1410] = {.count = 1, .reusable = true}, SHIFT(527), - [1412] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), - [1414] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), - [1416] = {.count = 1, .reusable = true}, SHIFT(528), - [1418] = {.count = 1, .reusable = true}, SHIFT(529), - [1420] = {.count = 1, .reusable = true}, SHIFT(530), - [1422] = {.count = 1, .reusable = true}, SHIFT(531), - [1424] = {.count = 1, .reusable = true}, SHIFT(532), - [1426] = {.count = 1, .reusable = true}, SHIFT(535), - [1428] = {.count = 1, .reusable = false}, SHIFT(537), - [1430] = {.count = 1, .reusable = false}, SHIFT(538), - [1432] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), - [1434] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), - [1436] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), - [1438] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), - [1440] = {.count = 1, .reusable = true}, SHIFT(539), - [1442] = {.count = 1, .reusable = true}, SHIFT(542), - [1444] = {.count = 1, .reusable = false}, SHIFT(542), - [1446] = {.count = 1, .reusable = true}, SHIFT(543), - [1448] = {.count = 1, .reusable = true}, SHIFT(545), - [1450] = {.count = 1, .reusable = true}, SHIFT(546), - [1452] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3), - [1454] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3), - [1456] = {.count = 1, .reusable = false}, SHIFT(547), - [1458] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3), - [1460] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3), - [1462] = {.count = 1, .reusable = true}, SHIFT(548), - [1464] = {.count = 1, .reusable = true}, SHIFT(550), - [1466] = {.count = 1, .reusable = false}, SHIFT(550), - [1468] = {.count = 1, .reusable = true}, SHIFT(552), - [1470] = {.count = 1, .reusable = false}, SHIFT(552), - [1472] = {.count = 1, .reusable = true}, SHIFT(553), - [1474] = {.count = 1, .reusable = false}, SHIFT(553), - [1476] = {.count = 1, .reusable = true}, SHIFT(554), - [1478] = {.count = 1, .reusable = false}, SHIFT(554), - [1480] = {.count = 1, .reusable = true}, SHIFT(555), - [1482] = {.count = 1, .reusable = false}, SHIFT(555), - [1484] = {.count = 1, .reusable = true}, SHIFT(556), - [1486] = {.count = 1, .reusable = false}, SHIFT(556), - [1488] = {.count = 1, .reusable = true}, SHIFT(557), - [1490] = {.count = 1, .reusable = false}, SHIFT(557), - [1492] = {.count = 1, .reusable = true}, SHIFT(558), - [1494] = {.count = 1, .reusable = false}, SHIFT(558), - [1496] = {.count = 1, .reusable = true}, SHIFT(559), - [1498] = {.count = 1, .reusable = false}, SHIFT(559), - [1500] = {.count = 1, .reusable = true}, SHIFT(560), - [1502] = {.count = 1, .reusable = false}, SHIFT(560), - [1504] = {.count = 1, .reusable = true}, SHIFT(561), - [1506] = {.count = 1, .reusable = false}, SHIFT(561), - [1508] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), - [1510] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), - [1512] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [1514] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [1516] = {.count = 1, .reusable = false}, SHIFT(563), - [1518] = {.count = 1, .reusable = false}, SHIFT(564), - [1520] = {.count = 1, .reusable = false}, SHIFT(565), - [1522] = {.count = 1, .reusable = false}, SHIFT(566), - [1524] = {.count = 1, .reusable = false}, SHIFT(567), - [1526] = {.count = 1, .reusable = false}, SHIFT(568), - [1528] = {.count = 1, .reusable = false}, SHIFT(569), - [1530] = {.count = 1, .reusable = true}, SHIFT(571), - [1532] = {.count = 1, .reusable = false}, SHIFT(572), - [1534] = {.count = 1, .reusable = true}, SHIFT(573), - [1536] = {.count = 1, .reusable = true}, SHIFT(574), - [1538] = {.count = 1, .reusable = true}, SHIFT(575), - [1540] = {.count = 1, .reusable = false}, SHIFT(575), - [1542] = {.count = 1, .reusable = true}, SHIFT(577), - [1544] = {.count = 1, .reusable = true}, SHIFT(578), - [1546] = {.count = 1, .reusable = false}, SHIFT(578), - [1548] = {.count = 1, .reusable = true}, SHIFT(579), - [1550] = {.count = 1, .reusable = true}, SHIFT(580), - [1552] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), - [1554] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), - [1556] = {.count = 1, .reusable = true}, SHIFT(582), - [1558] = {.count = 1, .reusable = false}, SHIFT(582), - [1560] = {.count = 1, .reusable = true}, SHIFT(583), - [1562] = {.count = 1, .reusable = false}, SHIFT(583), - [1564] = {.count = 1, .reusable = true}, SHIFT(584), - [1566] = {.count = 1, .reusable = false}, SHIFT(584), - [1568] = {.count = 1, .reusable = true}, SHIFT(585), - [1570] = {.count = 1, .reusable = false}, SHIFT(585), - [1572] = {.count = 1, .reusable = true}, SHIFT(586), - [1574] = {.count = 1, .reusable = false}, SHIFT(586), - [1576] = {.count = 1, .reusable = true}, SHIFT(587), - [1578] = {.count = 1, .reusable = false}, SHIFT(587), - [1580] = {.count = 1, .reusable = true}, SHIFT(588), - [1582] = {.count = 1, .reusable = false}, SHIFT(588), - [1584] = {.count = 1, .reusable = true}, SHIFT(589), - [1586] = {.count = 1, .reusable = false}, SHIFT(589), - [1588] = {.count = 1, .reusable = true}, SHIFT(590), - [1590] = {.count = 1, .reusable = false}, SHIFT(590), - [1592] = {.count = 1, .reusable = true}, SHIFT(591), - [1594] = {.count = 1, .reusable = false}, SHIFT(591), - [1596] = {.count = 1, .reusable = true}, SHIFT(592), - [1598] = {.count = 1, .reusable = false}, SHIFT(592), - [1600] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 3), - [1602] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 3), - [1604] = {.count = 1, .reusable = true}, SHIFT(594), - [1606] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), - [1608] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), - [1610] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), - [1612] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), - [1614] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), - [1616] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(341), - [1619] = {.count = 1, .reusable = true}, SHIFT(595), - [1621] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 4), - [1623] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 4), - [1625] = {.count = 1, .reusable = true}, SHIFT(597), - [1627] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1), - [1629] = {.count = 1, .reusable = false}, SHIFT(598), - [1631] = {.count = 1, .reusable = true}, SHIFT(600), - [1633] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), - [1635] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), - [1637] = {.count = 1, .reusable = true}, SHIFT(602), - [1639] = {.count = 1, .reusable = true}, SHIFT(603), - [1641] = {.count = 1, .reusable = true}, SHIFT(604), - [1643] = {.count = 1, .reusable = false}, SHIFT(604), - [1645] = {.count = 1, .reusable = true}, SHIFT(606), - [1647] = {.count = 1, .reusable = false}, SHIFT(606), - [1649] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [1651] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [1653] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), - [1655] = {.count = 1, .reusable = true}, SHIFT(608), - [1657] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [1659] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), - [1661] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), - [1663] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), - [1665] = {.count = 1, .reusable = true}, SHIFT(610), - [1667] = {.count = 1, .reusable = true}, SHIFT(611), - [1669] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), - [1671] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), - [1673] = {.count = 1, .reusable = true}, SHIFT(614), - [1675] = {.count = 1, .reusable = true}, SHIFT(615), - [1677] = {.count = 1, .reusable = false}, SHIFT(615), - [1679] = {.count = 1, .reusable = false}, SHIFT(616), - [1681] = {.count = 1, .reusable = true}, SHIFT(617), - [1683] = {.count = 1, .reusable = false}, SHIFT(618), - [1685] = {.count = 1, .reusable = true}, SHIFT(619), - [1687] = {.count = 1, .reusable = true}, SHIFT(618), - [1689] = {.count = 1, .reusable = false}, SHIFT(620), - [1691] = {.count = 1, .reusable = true}, SHIFT(621), - [1693] = {.count = 1, .reusable = true}, SHIFT(622), - [1695] = {.count = 1, .reusable = false}, SHIFT(623), - [1697] = {.count = 1, .reusable = false}, SHIFT(624), - [1699] = {.count = 1, .reusable = true}, SHIFT(625), - [1701] = {.count = 1, .reusable = false}, SHIFT(626), - [1703] = {.count = 1, .reusable = true}, SHIFT(626), - [1705] = {.count = 1, .reusable = false}, SHIFT(627), - [1707] = {.count = 1, .reusable = false}, SHIFT(628), - [1709] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), - [1711] = {.count = 1, .reusable = true}, SHIFT(630), - [1713] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), - [1715] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), - [1717] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), - [1719] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), - [1721] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), - [1723] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), - [1725] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), - [1727] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), - [1729] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), - [1731] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), - [1733] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 5), - [1735] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 5), - [1737] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1739] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1741] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(34), - [1744] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), - [1746] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), - [1748] = {.count = 1, .reusable = true}, SHIFT(631), - [1750] = {.count = 1, .reusable = true}, SHIFT(632), - [1752] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), - [1754] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4), - [1756] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4), - [1758] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4), - [1760] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4), - [1762] = {.count = 1, .reusable = true}, SHIFT(634), - [1764] = {.count = 1, .reusable = false}, SHIFT(635), - [1766] = {.count = 1, .reusable = true}, SHIFT(636), - [1768] = {.count = 1, .reusable = false}, SHIFT(637), - [1770] = {.count = 1, .reusable = false}, SHIFT(638), - [1772] = {.count = 1, .reusable = false}, SHIFT(640), - [1774] = {.count = 1, .reusable = false}, SHIFT(643), - [1776] = {.count = 1, .reusable = true}, SHIFT(646), - [1778] = {.count = 1, .reusable = true}, SHIFT(647), - [1780] = {.count = 1, .reusable = true}, SHIFT(648), - [1782] = {.count = 1, .reusable = false}, SHIFT(649), - [1784] = {.count = 1, .reusable = true}, SHIFT(650), - [1786] = {.count = 1, .reusable = false}, SHIFT(651), - [1788] = {.count = 1, .reusable = false}, SHIFT(652), - [1790] = {.count = 1, .reusable = false}, SHIFT(653), - [1792] = {.count = 1, .reusable = true}, SHIFT(656), - [1794] = {.count = 1, .reusable = true}, SHIFT(660), - [1796] = {.count = 1, .reusable = false}, SHIFT(660), - [1798] = {.count = 1, .reusable = true}, SHIFT(661), - [1800] = {.count = 1, .reusable = true}, SHIFT(664), - [1802] = {.count = 1, .reusable = true}, SHIFT(665), - [1804] = {.count = 1, .reusable = true}, SHIFT(666), - [1806] = {.count = 1, .reusable = false}, SHIFT(666), - [1808] = {.count = 1, .reusable = true}, SHIFT(667), - [1810] = {.count = 1, .reusable = true}, SHIFT(668), - [1812] = {.count = 1, .reusable = true}, SHIFT(669), - [1814] = {.count = 1, .reusable = true}, SHIFT(670), - [1816] = {.count = 1, .reusable = true}, SHIFT(671), - [1818] = {.count = 1, .reusable = true}, SHIFT(672), - [1820] = {.count = 1, .reusable = true}, SHIFT(674), - [1822] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), - [1824] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2), - [1826] = {.count = 1, .reusable = true}, SHIFT(678), - [1828] = {.count = 1, .reusable = false}, SHIFT(680), - [1830] = {.count = 1, .reusable = true}, SHIFT(681), - [1832] = {.count = 1, .reusable = true}, SHIFT(684), - [1834] = {.count = 1, .reusable = false}, SHIFT(685), - [1836] = {.count = 1, .reusable = false}, SHIFT(686), - [1838] = {.count = 1, .reusable = false}, SHIFT(687), - [1840] = {.count = 1, .reusable = false}, SHIFT(688), - [1842] = {.count = 1, .reusable = false}, SHIFT(689), - [1844] = {.count = 1, .reusable = false}, SHIFT(690), - [1846] = {.count = 1, .reusable = false}, SHIFT(691), - [1848] = {.count = 1, .reusable = false}, SHIFT(693), - [1850] = {.count = 1, .reusable = true}, SHIFT(695), - [1852] = {.count = 1, .reusable = false}, SHIFT(696), - [1854] = {.count = 1, .reusable = true}, SHIFT(700), - [1856] = {.count = 1, .reusable = true}, SHIFT(701), - [1858] = {.count = 1, .reusable = true}, SHIFT(702), - [1860] = {.count = 1, .reusable = false}, SHIFT(702), - [1862] = {.count = 1, .reusable = true}, SHIFT(703), - [1864] = {.count = 1, .reusable = true}, SHIFT(704), - [1866] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4), - [1868] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4), - [1870] = {.count = 1, .reusable = true}, SHIFT(706), - [1872] = {.count = 1, .reusable = true}, SHIFT(709), - [1874] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(175), - [1877] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(176), - [1880] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(177), - [1883] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [1885] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(179), - [1888] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(182), - [1891] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(183), - [1894] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(184), - [1897] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(185), - [1900] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(186), - [1903] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(187), - [1906] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(188), - [1909] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(189), - [1912] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(190), - [1915] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(191), - [1918] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(192), - [1921] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(193), - [1924] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(194), - [1927] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(195), - [1930] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(196), - [1933] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(197), - [1936] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(201), - [1939] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(201), - [1942] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(198), - [1945] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4), - [1947] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4), - [1949] = {.count = 1, .reusable = true}, SHIFT(710), - [1951] = {.count = 1, .reusable = true}, SHIFT(712), - [1953] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1), - [1955] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), - [1957] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), - [1959] = {.count = 1, .reusable = true}, SHIFT(714), - [1961] = {.count = 1, .reusable = true}, SHIFT(715), - [1963] = {.count = 1, .reusable = true}, SHIFT(716), - [1965] = {.count = 1, .reusable = false}, SHIFT(716), - [1967] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), - [1969] = {.count = 1, .reusable = true}, SHIFT(718), - [1971] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), - [1973] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), - [1975] = {.count = 1, .reusable = true}, SHIFT(719), - [1977] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(462), - [1980] = {.count = 1, .reusable = false}, SHIFT(723), - [1982] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 3), - [1984] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 3), - [1986] = {.count = 1, .reusable = true}, SHIFT(724), - [1988] = {.count = 1, .reusable = false}, SHIFT(725), - [1990] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 1), - [1992] = {.count = 1, .reusable = false}, SHIFT(726), - [1994] = {.count = 1, .reusable = false}, SHIFT(729), - [1996] = {.count = 1, .reusable = true}, SHIFT(730), - [1998] = {.count = 1, .reusable = true}, SHIFT(731), - [2000] = {.count = 1, .reusable = false}, SHIFT(730), - [2002] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3), - [2004] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3), - [2006] = {.count = 1, .reusable = true}, SHIFT(734), - [2008] = {.count = 1, .reusable = false}, SHIFT(734), - [2010] = {.count = 1, .reusable = true}, SHIFT(738), - [2012] = {.count = 1, .reusable = false}, SHIFT(738), - [2014] = {.count = 1, .reusable = true}, SHIFT(739), - [2016] = {.count = 1, .reusable = true}, SHIFT(741), - [2018] = {.count = 1, .reusable = true}, SHIFT(742), - [2020] = {.count = 1, .reusable = false}, SHIFT(743), - [2022] = {.count = 1, .reusable = true}, SHIFT(744), - [2024] = {.count = 1, .reusable = true}, SHIFT(745), - [2026] = {.count = 1, .reusable = false}, SHIFT(745), - [2028] = {.count = 1, .reusable = true}, SHIFT(746), - [2030] = {.count = 1, .reusable = true}, SHIFT(747), - [2032] = {.count = 1, .reusable = true}, SHIFT(748), - [2034] = {.count = 1, .reusable = true}, SHIFT(749), - [2036] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), - [2038] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), - [2040] = {.count = 1, .reusable = true}, SHIFT(751), - [2042] = {.count = 1, .reusable = true}, SHIFT(752), - [2044] = {.count = 1, .reusable = true}, SHIFT(753), - [2046] = {.count = 1, .reusable = true}, SHIFT(755), - [2048] = {.count = 1, .reusable = false}, SHIFT(757), - [2050] = {.count = 1, .reusable = false}, SHIFT(758), - [2052] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [2054] = {.count = 1, .reusable = true}, SHIFT(761), - [2056] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), - [2058] = {.count = 1, .reusable = true}, SHIFT(762), - [2060] = {.count = 1, .reusable = true}, SHIFT(763), - [2062] = {.count = 1, .reusable = false}, SHIFT(763), - [2064] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), - [2066] = {.count = 1, .reusable = true}, SHIFT(766), - [2068] = {.count = 1, .reusable = true}, SHIFT(767), - [2070] = {.count = 1, .reusable = true}, SHIFT(768), - [2072] = {.count = 1, .reusable = true}, SHIFT(769), - [2074] = {.count = 1, .reusable = true}, SHIFT(770), - [2076] = {.count = 1, .reusable = true}, SHIFT(771), - [2078] = {.count = 1, .reusable = true}, SHIFT(772), - [2080] = {.count = 1, .reusable = true}, SHIFT(773), - [2082] = {.count = 1, .reusable = false}, SHIFT(774), - [2084] = {.count = 1, .reusable = true}, SHIFT(774), - [2086] = {.count = 1, .reusable = false}, SHIFT(775), - [2088] = {.count = 1, .reusable = true}, SHIFT(776), - [2090] = {.count = 1, .reusable = true}, SHIFT(777), - [2092] = {.count = 1, .reusable = false}, SHIFT(777), - [2094] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), - [2096] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), - [2098] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), - [2100] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), - [2102] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), - [2104] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), - [2106] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), - [2108] = {.count = 1, .reusable = true}, SHIFT(781), - [2110] = {.count = 1, .reusable = false}, SHIFT(781), - [2112] = {.count = 1, .reusable = true}, SHIFT(782), - [2114] = {.count = 1, .reusable = true}, SHIFT(784), - [2116] = {.count = 1, .reusable = true}, SHIFT(786), - [2118] = {.count = 1, .reusable = true}, SHIFT(787), - [2120] = {.count = 1, .reusable = true}, SHIFT(788), - [2122] = {.count = 1, .reusable = true}, SHIFT(791), - [2124] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), - [2126] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), - [2128] = {.count = 1, .reusable = true}, SHIFT(794), - [2130] = {.count = 1, .reusable = false}, SHIFT(532), - [2132] = {.count = 1, .reusable = true}, SHIFT(798), - [2134] = {.count = 1, .reusable = false}, SHIFT(798), - [2136] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 6), - [2138] = {.count = 1, .reusable = true}, SHIFT(799), - [2140] = {.count = 1, .reusable = true}, SHIFT(800), - [2142] = {.count = 1, .reusable = true}, SHIFT(801), - [2144] = {.count = 1, .reusable = true}, SHIFT(802), - [2146] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), - [2148] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), - [2150] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(265), - [2153] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(266), - [2156] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(13), - [2159] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2161] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(14), - [2164] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(272), - [2167] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(269), - [2170] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(15), - [2173] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(16), - [2176] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(17), - [2179] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(52), - [2182] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(538), - [2185] = {.count = 1, .reusable = true}, SHIFT(808), - [2187] = {.count = 1, .reusable = false}, SHIFT(809), - [2189] = {.count = 1, .reusable = true}, SHIFT(810), - [2191] = {.count = 1, .reusable = true}, SHIFT(811), - [2193] = {.count = 1, .reusable = false}, SHIFT(811), - [2195] = {.count = 1, .reusable = true}, SHIFT(813), - [2197] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), - [2199] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), - [2201] = {.count = 1, .reusable = true}, SHIFT(814), - [2203] = {.count = 1, .reusable = true}, SHIFT(817), - [2205] = {.count = 1, .reusable = false}, SHIFT(817), - [2207] = {.count = 1, .reusable = true}, SHIFT(818), - [2209] = {.count = 1, .reusable = true}, SHIFT(820), - [2211] = {.count = 1, .reusable = true}, SHIFT(821), - [2213] = {.count = 1, .reusable = true}, SHIFT(822), - [2215] = {.count = 1, .reusable = true}, SHIFT(823), - [2217] = {.count = 1, .reusable = true}, SHIFT(824), - [2219] = {.count = 1, .reusable = true}, SHIFT(825), - [2221] = {.count = 1, .reusable = false}, SHIFT(825), - [2223] = {.count = 1, .reusable = true}, SHIFT(826), - [2225] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4), - [2227] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4), - [2229] = {.count = 1, .reusable = true}, SHIFT(827), - [2231] = {.count = 1, .reusable = true}, SHIFT(828), - [2233] = {.count = 1, .reusable = false}, SHIFT(828), - [2235] = {.count = 1, .reusable = true}, SHIFT(829), - [2237] = {.count = 1, .reusable = true}, SHIFT(830), - [2239] = {.count = 1, .reusable = false}, SHIFT(830), - [2241] = {.count = 1, .reusable = true}, SHIFT(831), - [2243] = {.count = 1, .reusable = true}, SHIFT(832), - [2245] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), - [2247] = {.count = 1, .reusable = false}, SHIFT(12), - [2249] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), - [2251] = {.count = 1, .reusable = false}, SHIFT(29), - [2253] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), - [2255] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), - [2257] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3, .dynamic_precedence = -10), - [2259] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1), - [2261] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), - [2263] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), - [2265] = {.count = 1, .reusable = true}, SHIFT(833), - [2267] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), - [2269] = {.count = 1, .reusable = true}, SHIFT(834), - [2271] = {.count = 1, .reusable = true}, SHIFT(835), - [2273] = {.count = 1, .reusable = false}, SHIFT(835), - [2275] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), - [2277] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), - [2279] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), - [2281] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(348), - [2284] = {.count = 1, .reusable = true}, SHIFT(836), - [2286] = {.count = 1, .reusable = false}, SHIFT(836), - [2288] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), - [2290] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), - [2292] = {.count = 1, .reusable = true}, SHIFT(837), - [2294] = {.count = 1, .reusable = true}, SHIFT(839), - [2296] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), - [2298] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), - [2300] = {.count = 1, .reusable = true}, SHIFT(841), - [2302] = {.count = 1, .reusable = false}, SHIFT(841), - [2304] = {.count = 1, .reusable = true}, SHIFT(842), - [2306] = {.count = 1, .reusable = false}, SHIFT(842), - [2308] = {.count = 1, .reusable = true}, SHIFT(843), - [2310] = {.count = 1, .reusable = false}, SHIFT(843), - [2312] = {.count = 1, .reusable = true}, SHIFT(844), - [2314] = {.count = 1, .reusable = false}, SHIFT(844), - [2316] = {.count = 1, .reusable = true}, SHIFT(845), - [2318] = {.count = 1, .reusable = false}, SHIFT(845), - [2320] = {.count = 1, .reusable = true}, SHIFT(846), - [2322] = {.count = 1, .reusable = false}, SHIFT(846), - [2324] = {.count = 1, .reusable = true}, SHIFT(847), - [2326] = {.count = 1, .reusable = false}, SHIFT(847), - [2328] = {.count = 1, .reusable = true}, SHIFT(848), - [2330] = {.count = 1, .reusable = false}, SHIFT(848), - [2332] = {.count = 1, .reusable = true}, SHIFT(849), - [2334] = {.count = 1, .reusable = false}, SHIFT(849), - [2336] = {.count = 1, .reusable = true}, SHIFT(850), - [2338] = {.count = 1, .reusable = false}, SHIFT(850), - [2340] = {.count = 1, .reusable = true}, SHIFT(851), - [2342] = {.count = 1, .reusable = false}, SHIFT(851), - [2344] = {.count = 1, .reusable = true}, SHIFT(853), - [2346] = {.count = 1, .reusable = false}, SHIFT(853), - [2348] = {.count = 1, .reusable = true}, SHIFT(854), - [2350] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), - [2352] = {.count = 1, .reusable = true}, SHIFT(855), - [2354] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5), - [2356] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5), - [2358] = {.count = 1, .reusable = false}, SHIFT(857), - [2360] = {.count = 1, .reusable = true}, SHIFT(858), - [2362] = {.count = 1, .reusable = false}, SHIFT(859), - [2364] = {.count = 1, .reusable = false}, SHIFT(860), - [2366] = {.count = 1, .reusable = true}, SHIFT(861), - [2368] = {.count = 1, .reusable = false}, SHIFT(861), - [2370] = {.count = 1, .reusable = true}, SHIFT(863), - [2372] = {.count = 1, .reusable = false}, SHIFT(863), - [2374] = {.count = 1, .reusable = false}, SHIFT(865), - [2376] = {.count = 1, .reusable = true}, SHIFT(866), - [2378] = {.count = 1, .reusable = false}, SHIFT(867), - [2380] = {.count = 1, .reusable = false}, SHIFT(868), - [2382] = {.count = 1, .reusable = false}, SHIFT(870), - [2384] = {.count = 1, .reusable = false}, SHIFT(873), - [2386] = {.count = 1, .reusable = true}, SHIFT(876), - [2388] = {.count = 1, .reusable = false}, SHIFT(878), - [2390] = {.count = 1, .reusable = true}, SHIFT(879), - [2392] = {.count = 1, .reusable = true}, SHIFT(882), - [2394] = {.count = 1, .reusable = false}, SHIFT(883), - [2396] = {.count = 1, .reusable = false}, SHIFT(884), - [2398] = {.count = 1, .reusable = false}, SHIFT(885), - [2400] = {.count = 1, .reusable = false}, SHIFT(886), - [2402] = {.count = 1, .reusable = false}, SHIFT(887), - [2404] = {.count = 1, .reusable = false}, SHIFT(888), - [2406] = {.count = 1, .reusable = false}, SHIFT(889), - [2408] = {.count = 1, .reusable = false}, SHIFT(891), - [2410] = {.count = 1, .reusable = true}, SHIFT(893), - [2412] = {.count = 1, .reusable = false}, SHIFT(894), - [2414] = {.count = 1, .reusable = true}, SHIFT(898), - [2416] = {.count = 1, .reusable = true}, SHIFT(899), - [2418] = {.count = 1, .reusable = true}, SHIFT(900), - [2420] = {.count = 1, .reusable = false}, SHIFT(900), - [2422] = {.count = 1, .reusable = true}, SHIFT(901), - [2424] = {.count = 1, .reusable = true}, SHIFT(902), - [2426] = {.count = 1, .reusable = true}, SHIFT(904), - [2428] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(395), - [2431] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(396), - [2434] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(397), - [2437] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(398), - [2440] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(399), - [2443] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(400), - [2446] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(401), - [2449] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(402), - [2452] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(403), - [2455] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(404), - [2458] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(405), - [2461] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(406), - [2464] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(407), - [2467] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(408), - [2470] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(409), - [2473] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(410), - [2476] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(411), - [2479] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(412), - [2482] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(413), - [2485] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(414), - [2488] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(417), - [2491] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(417), - [2494] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(415), - [2497] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3), - [2499] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3), - [2501] = {.count = 1, .reusable = true}, SHIFT(908), - [2503] = {.count = 1, .reusable = true}, SHIFT(910), - [2505] = {.count = 1, .reusable = true}, SHIFT(914), - [2507] = {.count = 1, .reusable = false}, SHIFT(914), - [2509] = {.count = 1, .reusable = true}, SHIFT(915), - [2511] = {.count = 1, .reusable = true}, SHIFT(917), - [2513] = {.count = 1, .reusable = true}, SHIFT(918), - [2515] = {.count = 1, .reusable = false}, SHIFT(919), - [2517] = {.count = 1, .reusable = true}, SHIFT(921), - [2519] = {.count = 1, .reusable = true}, SHIFT(923), - [2521] = {.count = 1, .reusable = true}, SHIFT(924), - [2523] = {.count = 1, .reusable = false}, SHIFT(924), - [2525] = {.count = 1, .reusable = true}, SHIFT(925), - [2527] = {.count = 1, .reusable = true}, SHIFT(926), - [2529] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5), - [2531] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5), - [2533] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5), - [2535] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5), - [2537] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3, .dynamic_precedence = -10), - [2539] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1), - [2541] = {.count = 1, .reusable = true}, SHIFT(927), - [2543] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), - [2545] = {.count = 1, .reusable = true}, SHIFT(928), - [2547] = {.count = 1, .reusable = true}, SHIFT(929), - [2549] = {.count = 1, .reusable = false}, SHIFT(929), - [2551] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), - [2553] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), - [2555] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), - [2557] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), - [2559] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(60), - [2562] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(61), - [2565] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(62), - [2568] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(63), - [2571] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(64), - [2574] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(65), - [2577] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(66), - [2580] = {.count = 1, .reusable = false}, SHIFT(930), - [2582] = {.count = 1, .reusable = false}, SHIFT(933), - [2584] = {.count = 1, .reusable = false}, SHIFT(936), - [2586] = {.count = 1, .reusable = true}, SHIFT(937), - [2588] = {.count = 1, .reusable = true}, SHIFT(938), - [2590] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 2), - [2592] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 2), - [2594] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4), - [2596] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4), - [2598] = {.count = 1, .reusable = true}, SHIFT(942), - [2600] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(175), - [2603] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(176), - [2606] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(463), - [2609] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), - [2611] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(465), - [2614] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(182), - [2617] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(183), - [2620] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(184), - [2623] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(186), - [2626] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(187), - [2629] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(188), - [2632] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(189), - [2635] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(190), - [2638] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(191), - [2641] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(192), - [2644] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(193), - [2647] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(194), - [2650] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(195), - [2653] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(196), - [2656] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(197), - [2659] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(201), - [2662] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(201), - [2665] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(198), - [2668] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4), - [2670] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4), - [2672] = {.count = 1, .reusable = true}, SHIFT(943), - [2674] = {.count = 1, .reusable = true}, SHIFT(945), - [2676] = {.count = 1, .reusable = false}, SHIFT(946), - [2678] = {.count = 1, .reusable = true}, SHIFT(947), - [2680] = {.count = 1, .reusable = true}, SHIFT(948), - [2682] = {.count = 1, .reusable = false}, SHIFT(948), - [2684] = {.count = 1, .reusable = true}, SHIFT(949), - [2686] = {.count = 1, .reusable = true}, SHIFT(950), - [2688] = {.count = 1, .reusable = false}, SHIFT(950), - [2690] = {.count = 1, .reusable = true}, SHIFT(951), - [2692] = {.count = 1, .reusable = true}, SHIFT(952), - [2694] = {.count = 1, .reusable = false}, SHIFT(952), - [2696] = {.count = 1, .reusable = false}, SHIFT(70), - [2698] = {.count = 1, .reusable = false}, SHIFT(71), - [2700] = {.count = 1, .reusable = true}, SHIFT(953), - [2702] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), - [2704] = {.count = 1, .reusable = true}, SHIFT(954), - [2706] = {.count = 1, .reusable = true}, SHIFT(956), - [2708] = {.count = 1, .reusable = false}, SHIFT(957), - [2710] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), - [2712] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), - [2714] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(758), - [2717] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), - [2719] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(14), - [2722] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), - [2724] = {.count = 1, .reusable = true}, SHIFT(961), - [2726] = {.count = 1, .reusable = true}, SHIFT(962), - [2728] = {.count = 1, .reusable = true}, SHIFT(963), - [2730] = {.count = 1, .reusable = false}, SHIFT(963), - [2732] = {.count = 1, .reusable = true}, SHIFT(964), - [2734] = {.count = 1, .reusable = false}, SHIFT(964), - [2736] = {.count = 1, .reusable = true}, SHIFT(965), - [2738] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), - [2740] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), - [2742] = {.count = 1, .reusable = true}, SHIFT(967), - [2744] = {.count = 1, .reusable = false}, SHIFT(967), - [2746] = {.count = 1, .reusable = true}, SHIFT(968), - [2748] = {.count = 1, .reusable = true}, SHIFT(969), - [2750] = {.count = 1, .reusable = false}, SHIFT(969), - [2752] = {.count = 1, .reusable = true}, SHIFT(970), - [2754] = {.count = 1, .reusable = true}, SHIFT(971), - [2756] = {.count = 1, .reusable = false}, SHIFT(972), - [2758] = {.count = 1, .reusable = false}, SHIFT(973), - [2760] = {.count = 1, .reusable = true}, SHIFT(974), - [2762] = {.count = 1, .reusable = true}, SHIFT(973), - [2764] = {.count = 1, .reusable = false}, SHIFT(975), - [2766] = {.count = 1, .reusable = true}, SHIFT(976), - [2768] = {.count = 1, .reusable = true}, SHIFT(977), - [2770] = {.count = 1, .reusable = false}, SHIFT(978), - [2772] = {.count = 1, .reusable = false}, SHIFT(979), - [2774] = {.count = 1, .reusable = true}, SHIFT(980), - [2776] = {.count = 1, .reusable = false}, SHIFT(981), - [2778] = {.count = 1, .reusable = true}, SHIFT(981), - [2780] = {.count = 1, .reusable = false}, SHIFT(982), - [2782] = {.count = 1, .reusable = false}, SHIFT(983), - [2784] = {.count = 1, .reusable = true}, SHIFT(986), - [2786] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), - [2788] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), - [2790] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), - [2792] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [2794] = {.count = 1, .reusable = true}, SHIFT(988), - [2796] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(989), - [2799] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), - [2801] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), - [2803] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2805] = {.count = 1, .reusable = false}, SHIFT(991), - [2807] = {.count = 1, .reusable = true}, SHIFT(992), - [2809] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), - [2811] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), - [2813] = {.count = 1, .reusable = true}, SHIFT(995), - [2815] = {.count = 1, .reusable = true}, SHIFT(998), - [2817] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1), - [2819] = {.count = 1, .reusable = true}, SHIFT(1000), - [2821] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), - [2823] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), - [2825] = {.count = 1, .reusable = true}, SHIFT(1002), - [2827] = {.count = 1, .reusable = true}, SHIFT(1003), - [2829] = {.count = 1, .reusable = true}, SHIFT(1004), - [2831] = {.count = 1, .reusable = false}, SHIFT(1004), - [2833] = {.count = 1, .reusable = true}, SHIFT(1006), - [2835] = {.count = 1, .reusable = false}, SHIFT(1006), - [2837] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), - [2839] = {.count = 1, .reusable = true}, SHIFT(1007), - [2841] = {.count = 1, .reusable = false}, SHIFT(1009), - [2843] = {.count = 1, .reusable = true}, SHIFT(1010), - [2845] = {.count = 1, .reusable = true}, SHIFT(1011), - [2847] = {.count = 1, .reusable = false}, SHIFT(1011), - [2849] = {.count = 1, .reusable = true}, SHIFT(1012), - [2851] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [2853] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [2855] = {.count = 1, .reusable = false}, SHIFT(96), - [2857] = {.count = 1, .reusable = false}, SHIFT(97), - [2859] = {.count = 1, .reusable = true}, SHIFT(1013), - [2861] = {.count = 1, .reusable = false}, SHIFT(1013), - [2863] = {.count = 1, .reusable = true}, SHIFT(1015), - [2865] = {.count = 1, .reusable = false}, SHIFT(1016), - [2867] = {.count = 1, .reusable = true}, SHIFT(1017), - [2869] = {.count = 1, .reusable = true}, SHIFT(1018), - [2871] = {.count = 1, .reusable = false}, SHIFT(1018), - [2873] = {.count = 1, .reusable = true}, SHIFT(1019), - [2875] = {.count = 1, .reusable = true}, SHIFT(1020), - [2877] = {.count = 1, .reusable = false}, SHIFT(1020), - [2879] = {.count = 1, .reusable = true}, SHIFT(1021), - [2881] = {.count = 1, .reusable = true}, SHIFT(1022), - [2883] = {.count = 1, .reusable = false}, SHIFT(1022), - [2885] = {.count = 1, .reusable = true}, SHIFT(1024), - [2887] = {.count = 1, .reusable = true}, SHIFT(1026), - [2889] = {.count = 1, .reusable = false}, SHIFT(1026), - [2891] = {.count = 1, .reusable = true}, SHIFT(1027), - [2893] = {.count = 1, .reusable = false}, SHIFT(117), - [2895] = {.count = 1, .reusable = false}, SHIFT(118), - [2897] = {.count = 1, .reusable = true}, SHIFT(1028), - [2899] = {.count = 1, .reusable = false}, SHIFT(1028), - [2901] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), - [2903] = {.count = 1, .reusable = true}, SHIFT(1029), - [2905] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2907] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), - [2909] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), - [2911] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(610), - [2914] = {.count = 1, .reusable = true}, SHIFT(1030), - [2916] = {.count = 1, .reusable = true}, SHIFT(1031), - [2918] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), - [2920] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [2922] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), - [2924] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(631), - [2927] = {.count = 1, .reusable = true}, SHIFT(1032), - [2929] = {.count = 1, .reusable = true}, SHIFT(1033), - [2931] = {.count = 1, .reusable = true}, SHIFT(1034), - [2933] = {.count = 1, .reusable = false}, SHIFT(1035), - [2935] = {.count = 1, .reusable = true}, SHIFT(1036), - [2937] = {.count = 1, .reusable = false}, SHIFT(1037), - [2939] = {.count = 1, .reusable = false}, SHIFT(1038), - [2941] = {.count = 1, .reusable = true}, SHIFT(1039), - [2943] = {.count = 1, .reusable = false}, SHIFT(1039), - [2945] = {.count = 1, .reusable = true}, SHIFT(1041), - [2947] = {.count = 1, .reusable = false}, SHIFT(1041), - [2949] = {.count = 1, .reusable = true}, SHIFT(1043), - [2951] = {.count = 1, .reusable = true}, SHIFT(1045), - [2953] = {.count = 1, .reusable = true}, SHIFT(1049), - [2955] = {.count = 1, .reusable = false}, SHIFT(1049), - [2957] = {.count = 1, .reusable = true}, SHIFT(1050), - [2959] = {.count = 1, .reusable = true}, SHIFT(1052), - [2961] = {.count = 1, .reusable = true}, SHIFT(1053), - [2963] = {.count = 1, .reusable = false}, SHIFT(1054), - [2965] = {.count = 1, .reusable = true}, SHIFT(1056), - [2967] = {.count = 1, .reusable = true}, SHIFT(1058), - [2969] = {.count = 1, .reusable = true}, SHIFT(1059), - [2971] = {.count = 1, .reusable = false}, SHIFT(1059), - [2973] = {.count = 1, .reusable = true}, SHIFT(1060), - [2975] = {.count = 1, .reusable = true}, SHIFT(1061), - [2977] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4), - [2979] = {.count = 1, .reusable = true}, SHIFT(1062), - [2981] = {.count = 1, .reusable = true}, SHIFT(1063), - [2983] = {.count = 1, .reusable = true}, SHIFT(1065), - [2985] = {.count = 1, .reusable = false}, SHIFT(1066), - [2987] = {.count = 1, .reusable = true}, SHIFT(1067), - [2989] = {.count = 1, .reusable = true}, SHIFT(1068), - [2991] = {.count = 1, .reusable = false}, SHIFT(1068), - [2993] = {.count = 1, .reusable = true}, SHIFT(1070), - [2995] = {.count = 1, .reusable = false}, SHIFT(1070), - [2997] = {.count = 1, .reusable = true}, SHIFT(1072), - [2999] = {.count = 1, .reusable = true}, SHIFT(1073), - [3001] = {.count = 1, .reusable = false}, SHIFT(1073), - [3003] = {.count = 1, .reusable = true}, SHIFT(1074), - [3005] = {.count = 1, .reusable = true}, SHIFT(1075), - [3007] = {.count = 1, .reusable = false}, SHIFT(1075), - [3009] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), - [3011] = {.count = 1, .reusable = true}, SHIFT(1076), - [3013] = {.count = 1, .reusable = true}, SHIFT(1077), - [3015] = {.count = 1, .reusable = false}, SHIFT(1077), - [3017] = {.count = 1, .reusable = true}, SHIFT(1079), - [3019] = {.count = 1, .reusable = false}, SHIFT(1079), - [3021] = {.count = 1, .reusable = false}, SHIFT(1081), - [3023] = {.count = 1, .reusable = false}, SHIFT(1084), - [3025] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(395), - [3028] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(396), - [3031] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(725), - [3034] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(726), - [3037] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(399), - [3040] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(400), - [3043] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(401), - [3046] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(403), - [3049] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(404), - [3052] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(405), - [3055] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(406), - [3058] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(407), - [3061] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(408), - [3064] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(409), - [3067] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(410), - [3070] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(411), - [3073] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(412), - [3076] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(413), - [3079] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(414), - [3082] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(417), - [3085] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(417), - [3088] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(415), - [3091] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3), - [3093] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 3), - [3095] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5), - [3097] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5), - [3099] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5), - [3101] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5), - [3103] = {.count = 1, .reusable = false}, SHIFT(1088), - [3105] = {.count = 1, .reusable = true}, SHIFT(1089), - [3107] = {.count = 1, .reusable = true}, SHIFT(1090), - [3109] = {.count = 1, .reusable = false}, SHIFT(1090), - [3111] = {.count = 1, .reusable = true}, SHIFT(1091), - [3113] = {.count = 1, .reusable = true}, SHIFT(1092), - [3115] = {.count = 1, .reusable = true}, SHIFT(1094), - [3117] = {.count = 1, .reusable = false}, SHIFT(1094), - [3119] = {.count = 1, .reusable = true}, SHIFT(1095), - [3121] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [3123] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), - [3125] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(748), - [3128] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [3131] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(135), - [3135] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), - [3137] = {.count = 1, .reusable = true}, SHIFT(1098), - [3139] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), - [3141] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), - [3143] = {.count = 1, .reusable = true}, SHIFT(1099), - [3145] = {.count = 1, .reusable = true}, SHIFT(1100), - [3147] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 7), - [3149] = {.count = 1, .reusable = true}, SHIFT(1102), - [3151] = {.count = 1, .reusable = true}, SHIFT(1103), - [3153] = {.count = 1, .reusable = false}, SHIFT(1103), - [3155] = {.count = 1, .reusable = true}, SHIFT(1105), - [3157] = {.count = 1, .reusable = false}, SHIFT(1105), - [3159] = {.count = 1, .reusable = true}, SHIFT(1106), - [3161] = {.count = 1, .reusable = false}, SHIFT(1106), - [3163] = {.count = 1, .reusable = true}, SHIFT(1107), - [3165] = {.count = 1, .reusable = false}, SHIFT(1107), - [3167] = {.count = 1, .reusable = true}, SHIFT(1108), - [3169] = {.count = 1, .reusable = false}, SHIFT(1108), - [3171] = {.count = 1, .reusable = true}, SHIFT(1109), - [3173] = {.count = 1, .reusable = false}, SHIFT(1109), - [3175] = {.count = 1, .reusable = true}, SHIFT(1110), - [3177] = {.count = 1, .reusable = false}, SHIFT(1110), - [3179] = {.count = 1, .reusable = true}, SHIFT(1111), - [3181] = {.count = 1, .reusable = false}, SHIFT(1111), - [3183] = {.count = 1, .reusable = true}, SHIFT(1112), - [3185] = {.count = 1, .reusable = false}, SHIFT(1112), - [3187] = {.count = 1, .reusable = true}, SHIFT(1113), - [3189] = {.count = 1, .reusable = false}, SHIFT(1113), - [3191] = {.count = 1, .reusable = true}, SHIFT(1114), - [3193] = {.count = 1, .reusable = false}, SHIFT(1114), - [3195] = {.count = 1, .reusable = true}, SHIFT(1115), - [3197] = {.count = 1, .reusable = false}, SHIFT(1115), - [3199] = {.count = 1, .reusable = true}, SHIFT(1116), - [3201] = {.count = 1, .reusable = true}, SHIFT(1119), - [3203] = {.count = 1, .reusable = false}, SHIFT(1119), - [3205] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(771), - [3208] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [3210] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(776), - [3213] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), - [3215] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), - [3217] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [3219] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2), - [3221] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), - [3223] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), - [3225] = {.count = 1, .reusable = true}, SHIFT(1124), - [3227] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), - [3229] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), - [3231] = {.count = 1, .reusable = true}, SHIFT(1125), - [3233] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3, .dynamic_precedence = -10), - [3235] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1), - [3237] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), - [3239] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), - [3241] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), - [3243] = {.count = 1, .reusable = true}, SHIFT(1126), - [3245] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), - [3247] = {.count = 1, .reusable = true}, SHIFT(1127), - [3249] = {.count = 1, .reusable = true}, SHIFT(1128), - [3251] = {.count = 1, .reusable = false}, SHIFT(1128), - [3253] = {.count = 1, .reusable = true}, SHIFT(1129), - [3255] = {.count = 1, .reusable = true}, SHIFT(1130), - [3257] = {.count = 1, .reusable = false}, SHIFT(1130), - [3259] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(799), - [3262] = {.count = 1, .reusable = true}, SHIFT(1131), - [3264] = {.count = 1, .reusable = true}, SHIFT(1132), - [3266] = {.count = 1, .reusable = false}, SHIFT(1132), - [3268] = {.count = 1, .reusable = true}, SHIFT(1133), - [3270] = {.count = 1, .reusable = true}, SHIFT(1134), - [3272] = {.count = 1, .reusable = false}, SHIFT(1134), - [3274] = {.count = 1, .reusable = true}, SHIFT(1135), - [3276] = {.count = 1, .reusable = true}, SHIFT(1136), - [3278] = {.count = 1, .reusable = true}, SHIFT(1137), - [3280] = {.count = 1, .reusable = false}, SHIFT(1137), - [3282] = {.count = 1, .reusable = true}, SHIFT(1138), - [3284] = {.count = 1, .reusable = true}, SHIFT(1139), - [3286] = {.count = 1, .reusable = true}, SHIFT(1141), - [3288] = {.count = 1, .reusable = false}, SHIFT(1141), - [3290] = {.count = 1, .reusable = true}, SHIFT(1142), - [3292] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [3294] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [3296] = {.count = 1, .reusable = true}, SHIFT(1144), - [3298] = {.count = 1, .reusable = true}, SHIFT(1146), - [3300] = {.count = 1, .reusable = false}, SHIFT(1146), - [3302] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), - [3304] = {.count = 1, .reusable = false}, SHIFT(363), - [3306] = {.count = 1, .reusable = false}, SHIFT(364), - [3308] = {.count = 1, .reusable = true}, SHIFT(1147), - [3310] = {.count = 1, .reusable = false}, SHIFT(1147), - [3312] = {.count = 1, .reusable = true}, SHIFT(1148), - [3314] = {.count = 1, .reusable = true}, SHIFT(1149), - [3316] = {.count = 1, .reusable = true}, SHIFT(1150), - [3318] = {.count = 1, .reusable = true}, SHIFT(1151), - [3320] = {.count = 1, .reusable = true}, SHIFT(1152), - [3322] = {.count = 1, .reusable = true}, SHIFT(1154), - [3324] = {.count = 1, .reusable = false}, SHIFT(1155), - [3326] = {.count = 1, .reusable = true}, SHIFT(1156), - [3328] = {.count = 1, .reusable = true}, SHIFT(1157), - [3330] = {.count = 1, .reusable = false}, SHIFT(1157), - [3332] = {.count = 1, .reusable = true}, SHIFT(1159), - [3334] = {.count = 1, .reusable = false}, SHIFT(1159), - [3336] = {.count = 1, .reusable = true}, SHIFT(1161), - [3338] = {.count = 1, .reusable = true}, SHIFT(1162), - [3340] = {.count = 1, .reusable = false}, SHIFT(1162), - [3342] = {.count = 1, .reusable = true}, SHIFT(1163), - [3344] = {.count = 1, .reusable = true}, SHIFT(1164), - [3346] = {.count = 1, .reusable = false}, SHIFT(1164), - [3348] = {.count = 1, .reusable = false}, SHIFT(1165), - [3350] = {.count = 1, .reusable = true}, SHIFT(1166), - [3352] = {.count = 1, .reusable = true}, SHIFT(1167), - [3354] = {.count = 1, .reusable = false}, SHIFT(1167), - [3356] = {.count = 1, .reusable = true}, SHIFT(1168), - [3358] = {.count = 1, .reusable = true}, SHIFT(1169), - [3360] = {.count = 1, .reusable = true}, SHIFT(1171), - [3362] = {.count = 1, .reusable = true}, SHIFT(1173), - [3364] = {.count = 1, .reusable = false}, SHIFT(1173), - [3366] = {.count = 1, .reusable = true}, SHIFT(1174), - [3368] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), - [3370] = {.count = 1, .reusable = true}, SHIFT(1175), - [3372] = {.count = 1, .reusable = true}, SHIFT(1176), - [3374] = {.count = 1, .reusable = true}, SHIFT(1177), - [3376] = {.count = 1, .reusable = false}, SHIFT(1177), - [3378] = {.count = 1, .reusable = true}, SHIFT(1179), - [3380] = {.count = 1, .reusable = false}, SHIFT(1179), - [3382] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4), - [3384] = {.count = 1, .reusable = true}, SHIFT(1181), - [3386] = {.count = 1, .reusable = true}, SHIFT(1182), - [3388] = {.count = 1, .reusable = false}, SHIFT(1182), - [3390] = {.count = 1, .reusable = true}, SHIFT(1183), - [3392] = {.count = 1, .reusable = true}, SHIFT(1184), - [3394] = {.count = 1, .reusable = false}, SHIFT(1184), - [3396] = {.count = 1, .reusable = true}, SHIFT(1185), - [3398] = {.count = 1, .reusable = true}, SHIFT(1187), - [3400] = {.count = 1, .reusable = false}, SHIFT(1187), - [3402] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), - [3404] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), - [3406] = {.count = 1, .reusable = true}, SHIFT(1189), - [3408] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), - [3410] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), - [3412] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [3414] = {.count = 1, .reusable = true}, SHIFT(1190), - [3416] = {.count = 1, .reusable = true}, SHIFT(1191), - [3418] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1192), - [3421] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), - [3423] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), - [3425] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), - [3427] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), - [3429] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), - [3431] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), - [3433] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), - [3435] = {.count = 1, .reusable = true}, SHIFT(1194), - [3437] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), - [3439] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), - [3441] = {.count = 1, .reusable = true}, SHIFT(1195), - [3443] = {.count = 1, .reusable = true}, SHIFT(1196), - [3445] = {.count = 1, .reusable = true}, SHIFT(1198), - [3447] = {.count = 1, .reusable = false}, SHIFT(1198), - [3449] = {.count = 1, .reusable = true}, SHIFT(1199), - [3451] = {.count = 1, .reusable = true}, SHIFT(1200), - [3453] = {.count = 1, .reusable = true}, SHIFT(1201), - [3455] = {.count = 1, .reusable = false}, SHIFT(1201), - [3457] = {.count = 1, .reusable = true}, SHIFT(1202), - [3459] = {.count = 1, .reusable = true}, SHIFT(1203), - [3461] = {.count = 1, .reusable = false}, SHIFT(1203), - [3463] = {.count = 1, .reusable = true}, SHIFT(1204), - [3465] = {.count = 1, .reusable = true}, SHIFT(1206), - [3467] = {.count = 1, .reusable = false}, SHIFT(1206), - [3469] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), - [3471] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), - [3473] = {.count = 1, .reusable = true}, SHIFT(1208), - [3475] = {.count = 1, .reusable = false}, SHIFT(1210), - [3477] = {.count = 1, .reusable = true}, SHIFT(1211), - [3479] = {.count = 1, .reusable = true}, SHIFT(1212), - [3481] = {.count = 1, .reusable = false}, SHIFT(1212), - [3483] = {.count = 1, .reusable = true}, SHIFT(1213), - [3485] = {.count = 1, .reusable = true}, SHIFT(1214), - [3487] = {.count = 1, .reusable = true}, SHIFT(1216), - [3489] = {.count = 1, .reusable = true}, SHIFT(1218), - [3491] = {.count = 1, .reusable = false}, SHIFT(1218), - [3493] = {.count = 1, .reusable = true}, SHIFT(1219), - [3495] = {.count = 1, .reusable = true}, SHIFT(1220), - [3497] = {.count = 1, .reusable = true}, SHIFT(1221), - [3499] = {.count = 1, .reusable = false}, SHIFT(1221), - [3501] = {.count = 1, .reusable = true}, SHIFT(1222), - [3503] = {.count = 1, .reusable = true}, SHIFT(1223), - [3505] = {.count = 1, .reusable = false}, SHIFT(1223), - [3507] = {.count = 1, .reusable = true}, SHIFT(1225), - [3509] = {.count = 1, .reusable = true}, SHIFT(1227), - [3511] = {.count = 1, .reusable = false}, SHIFT(1227), - [3513] = {.count = 1, .reusable = true}, SHIFT(1228), - [3515] = {.count = 1, .reusable = true}, SHIFT(1229), - [3517] = {.count = 1, .reusable = true}, SHIFT(1230), - [3519] = {.count = 1, .reusable = true}, SHIFT(1232), - [3521] = {.count = 1, .reusable = false}, SHIFT(1232), - [3523] = {.count = 1, .reusable = true}, SHIFT(1233), - [3525] = {.count = 1, .reusable = true}, SHIFT(1234), - [3527] = {.count = 1, .reusable = false}, SHIFT(770), - [3529] = {.count = 1, .reusable = false}, SHIFT(772), - [3531] = {.count = 1, .reusable = true}, SHIFT(1236), - [3533] = {.count = 1, .reusable = false}, SHIFT(1236), - [3535] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), - [3537] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), - [3539] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4), - [3541] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), - [3543] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 6), - [3545] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 6), - [3547] = {.count = 1, .reusable = true}, SHIFT(1237), - [3549] = {.count = 1, .reusable = true}, SHIFT(1239), - [3551] = {.count = 1, .reusable = false}, SHIFT(1239), - [3553] = {.count = 1, .reusable = true}, SHIFT(1240), - [3555] = {.count = 1, .reusable = true}, SHIFT(1242), - [3557] = {.count = 1, .reusable = false}, SHIFT(1242), - [3559] = {.count = 1, .reusable = true}, SHIFT(1243), - [3561] = {.count = 1, .reusable = true}, SHIFT(1244), - [3563] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), - [3565] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), - [3567] = {.count = 1, .reusable = true}, SHIFT(1247), - [3569] = {.count = 1, .reusable = true}, SHIFT(1248), - [3571] = {.count = 1, .reusable = true}, SHIFT(1249), - [3573] = {.count = 1, .reusable = false}, SHIFT(1249), - [3575] = {.count = 1, .reusable = true}, SHIFT(1250), - [3577] = {.count = 1, .reusable = true}, SHIFT(1251), - [3579] = {.count = 1, .reusable = false}, SHIFT(1251), - [3581] = {.count = 1, .reusable = true}, SHIFT(1253), - [3583] = {.count = 1, .reusable = true}, SHIFT(1255), - [3585] = {.count = 1, .reusable = false}, SHIFT(1255), - [3587] = {.count = 1, .reusable = true}, SHIFT(1256), - [3589] = {.count = 1, .reusable = true}, SHIFT(1258), - [3591] = {.count = 1, .reusable = false}, SHIFT(1258), - [3593] = {.count = 1, .reusable = true}, SHIFT(1259), - [3595] = {.count = 1, .reusable = true}, SHIFT(1261), - [3597] = {.count = 1, .reusable = true}, SHIFT(1263), - [3599] = {.count = 1, .reusable = true}, SHIFT(1265), - [3601] = {.count = 1, .reusable = false}, SHIFT(1265), - [3603] = {.count = 1, .reusable = true}, SHIFT(1266), - [3605] = {.count = 1, .reusable = true}, SHIFT(1267), - [3607] = {.count = 1, .reusable = true}, SHIFT(1269), - [3609] = {.count = 1, .reusable = true}, SHIFT(1271), - [3611] = {.count = 1, .reusable = false}, SHIFT(1271), - [3613] = {.count = 1, .reusable = true}, SHIFT(1272), - [3615] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), - [3617] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), - [3619] = {.count = 1, .reusable = true}, SHIFT(1274), - [3621] = {.count = 1, .reusable = true}, SHIFT(1276), - [3623] = {.count = 1, .reusable = false}, SHIFT(1276), - [3625] = {.count = 1, .reusable = true}, SHIFT(1277), - [3627] = {.count = 1, .reusable = true}, SHIFT(1279), - [3629] = {.count = 1, .reusable = true}, SHIFT(1281), - [3631] = {.count = 1, .reusable = true}, SHIFT(1283), - [3633] = {.count = 1, .reusable = false}, SHIFT(1283), - [3635] = {.count = 1, .reusable = true}, SHIFT(1285), - [3637] = {.count = 1, .reusable = true}, SHIFT(1286), - [3639] = {.count = 1, .reusable = true}, SHIFT(1288), - [3641] = {.count = 1, .reusable = true}, SHIFT(1289), - [3643] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), - [3645] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), - [3647] = {.count = 1, .reusable = true}, SHIFT(1291), - [3649] = {.count = 1, .reusable = true}, SHIFT(1293), - [3651] = {.count = 1, .reusable = false}, SHIFT(1293), - [3653] = {.count = 1, .reusable = true}, SHIFT(1295), - [3655] = {.count = 1, .reusable = true}, SHIFT(1296), - [3657] = {.count = 1, .reusable = true}, SHIFT(1299), - [3659] = {.count = 1, .reusable = true}, SHIFT(1300), - [3661] = {.count = 1, .reusable = true}, SHIFT(1301), - [3663] = {.count = 1, .reusable = true}, SHIFT(1304), - [3665] = {.count = 1, .reusable = true}, SHIFT(1305), + [597] = {.count = 1, .reusable = false}, SHIFT(289), + [599] = {.count = 1, .reusable = false}, SHIFT(290), + [601] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), + [603] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), + [605] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), + [607] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), + [609] = {.count = 1, .reusable = true}, SHIFT(292), + [611] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), + [613] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), + [615] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), + [617] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), + [619] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), + [621] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), + [623] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), + [625] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), + [627] = {.count = 1, .reusable = true}, SHIFT(294), + [629] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 2), + [631] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 2), + [633] = {.count = 1, .reusable = false}, SHIFT(295), + [635] = {.count = 1, .reusable = true}, SHIFT(296), + [637] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), + [639] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), + [641] = {.count = 1, .reusable = true}, SHIFT(299), + [643] = {.count = 1, .reusable = true}, SHIFT(300), + [645] = {.count = 1, .reusable = false}, SHIFT(301), + [647] = {.count = 1, .reusable = true}, SHIFT(303), + [649] = {.count = 1, .reusable = true}, SHIFT(304), + [651] = {.count = 1, .reusable = true}, SHIFT(305), + [653] = {.count = 1, .reusable = true}, SHIFT(306), + [655] = {.count = 1, .reusable = true}, SHIFT(307), + [657] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2), + [659] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2), + [661] = {.count = 1, .reusable = true}, SHIFT(312), + [663] = {.count = 1, .reusable = false}, SHIFT(312), + [665] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), + [667] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), + [669] = {.count = 1, .reusable = true}, SHIFT(314), + [671] = {.count = 1, .reusable = true}, SHIFT(315), + [673] = {.count = 1, .reusable = false}, SHIFT(315), + [675] = {.count = 1, .reusable = true}, SHIFT(316), + [677] = {.count = 1, .reusable = false}, SHIFT(316), + [679] = {.count = 1, .reusable = true}, SHIFT(317), + [681] = {.count = 1, .reusable = true}, SHIFT(318), + [683] = {.count = 1, .reusable = true}, SHIFT(319), + [685] = {.count = 1, .reusable = true}, SHIFT(320), + [687] = {.count = 1, .reusable = false}, SHIFT(321), + [689] = {.count = 1, .reusable = true}, SHIFT(321), + [691] = {.count = 1, .reusable = false}, SHIFT(322), + [693] = {.count = 1, .reusable = true}, SHIFT(323), + [695] = {.count = 1, .reusable = false}, SHIFT(323), + [697] = {.count = 1, .reusable = true}, SHIFT(325), + [699] = {.count = 1, .reusable = false}, SHIFT(325), + [701] = {.count = 1, .reusable = true}, SHIFT(326), + [703] = {.count = 1, .reusable = true}, SHIFT(327), + [705] = {.count = 1, .reusable = true}, SHIFT(328), + [707] = {.count = 1, .reusable = true}, SHIFT(329), + [709] = {.count = 1, .reusable = false}, SHIFT(330), + [711] = {.count = 1, .reusable = true}, SHIFT(330), + [713] = {.count = 1, .reusable = false}, SHIFT(331), + [715] = {.count = 1, .reusable = true}, SHIFT(332), + [717] = {.count = 1, .reusable = false}, SHIFT(332), + [719] = {.count = 1, .reusable = true}, SHIFT(334), + [721] = {.count = 1, .reusable = false}, SHIFT(334), + [723] = {.count = 1, .reusable = true}, SHIFT(335), + [725] = {.count = 1, .reusable = false}, SHIFT(335), + [727] = {.count = 1, .reusable = true}, SHIFT(336), + [729] = {.count = 1, .reusable = false}, SHIFT(336), + [731] = {.count = 1, .reusable = true}, SHIFT(337), + [733] = {.count = 1, .reusable = false}, SHIFT(337), + [735] = {.count = 1, .reusable = true}, SHIFT(338), + [737] = {.count = 1, .reusable = false}, SHIFT(338), + [739] = {.count = 1, .reusable = true}, SHIFT(339), + [741] = {.count = 1, .reusable = false}, SHIFT(339), + [743] = {.count = 1, .reusable = true}, SHIFT(340), + [745] = {.count = 1, .reusable = false}, SHIFT(340), + [747] = {.count = 1, .reusable = true}, SHIFT(341), + [749] = {.count = 1, .reusable = false}, SHIFT(341), + [751] = {.count = 1, .reusable = true}, SHIFT(342), + [753] = {.count = 1, .reusable = false}, SHIFT(342), + [755] = {.count = 1, .reusable = true}, SHIFT(343), + [757] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), + [759] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), + [761] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), + [763] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), + [765] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [767] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2), + [770] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3), + [773] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4), + [776] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5), + [779] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6), + [782] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7), + [785] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(8), + [788] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(9), + [791] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(10), + [794] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(11), + [797] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(12), + [800] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(13), + [803] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(14), + [806] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(42), + [809] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(36), + [812] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(15), + [815] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), + [818] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), + [821] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), + [824] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(19), + [827] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(20), + [830] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(21), + [833] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(22), + [836] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(23), + [839] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(24), + [842] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(25), + [845] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), + [848] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(27), + [851] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), + [854] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), + [857] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), + [860] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), + [863] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(37), + [866] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), + [869] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), + [872] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(37), + [875] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(33), + [878] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(13), + [881] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(14), + [884] = {.count = 1, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [886] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2), + [888] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2), + [890] = {.count = 1, .reusable = true}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), + [892] = {.count = 1, .reusable = false}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .alias_sequence_id = 2), + [894] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [896] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [898] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(152), + [901] = {.count = 1, .reusable = false}, SHIFT(346), + [903] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3), + [905] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3), + [907] = {.count = 1, .reusable = true}, SHIFT(347), + [909] = {.count = 1, .reusable = true}, SHIFT(348), + [911] = {.count = 1, .reusable = true}, SHIFT(349), + [913] = {.count = 1, .reusable = false}, SHIFT(350), + [915] = {.count = 1, .reusable = false}, SHIFT(351), + [917] = {.count = 1, .reusable = true}, SHIFT(352), + [919] = {.count = 1, .reusable = true}, SHIFT(353), + [921] = {.count = 1, .reusable = true}, SHIFT(354), + [923] = {.count = 1, .reusable = false}, SHIFT(355), + [925] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3), + [927] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3), + [929] = {.count = 1, .reusable = true}, SHIFT(356), + [931] = {.count = 1, .reusable = false}, SHIFT(357), + [933] = {.count = 1, .reusable = false}, SHIFT(358), + [935] = {.count = 1, .reusable = false}, SHIFT(359), + [937] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1), + [939] = {.count = 1, .reusable = false}, SHIFT(360), + [941] = {.count = 1, .reusable = false}, SHIFT(361), + [943] = {.count = 1, .reusable = true}, SHIFT(362), + [945] = {.count = 1, .reusable = false}, SHIFT(363), + [947] = {.count = 1, .reusable = false}, SHIFT(364), + [949] = {.count = 1, .reusable = true}, SHIFT(365), + [951] = {.count = 1, .reusable = false}, SHIFT(366), + [953] = {.count = 1, .reusable = false}, SHIFT(367), + [955] = {.count = 1, .reusable = false}, SHIFT(368), + [957] = {.count = 1, .reusable = false}, SHIFT(369), + [959] = {.count = 1, .reusable = false}, SHIFT(370), + [961] = {.count = 1, .reusable = false}, SHIFT(371), + [963] = {.count = 1, .reusable = false}, SHIFT(372), + [965] = {.count = 1, .reusable = false}, SHIFT(373), + [967] = {.count = 1, .reusable = false}, SHIFT(374), + [969] = {.count = 1, .reusable = true}, SHIFT(377), + [971] = {.count = 1, .reusable = false}, SHIFT(377), + [973] = {.count = 1, .reusable = false}, SHIFT(375), + [975] = {.count = 1, .reusable = false}, SHIFT(380), + [977] = {.count = 1, .reusable = false}, SHIFT(381), + [979] = {.count = 1, .reusable = false}, SHIFT(382), + [981] = {.count = 1, .reusable = false}, SHIFT(383), + [983] = {.count = 1, .reusable = true}, SHIFT(386), + [985] = {.count = 1, .reusable = true}, SHIFT(392), + [987] = {.count = 1, .reusable = true}, SHIFT(393), + [989] = {.count = 1, .reusable = true}, SHIFT(394), + [991] = {.count = 1, .reusable = false}, SHIFT(394), + [993] = {.count = 1, .reusable = true}, SHIFT(395), + [995] = {.count = 1, .reusable = true}, SHIFT(396), + [997] = {.count = 1, .reusable = true}, SHIFT(397), + [999] = {.count = 1, .reusable = true}, SHIFT(398), + [1001] = {.count = 1, .reusable = true}, SHIFT(399), + [1003] = {.count = 1, .reusable = true}, SHIFT(400), + [1005] = {.count = 1, .reusable = true}, SHIFT(401), + [1007] = {.count = 1, .reusable = true}, SHIFT(403), + [1009] = {.count = 1, .reusable = false}, SHIFT(399), + [1011] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3), + [1013] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3), + [1015] = {.count = 1, .reusable = true}, SHIFT(406), + [1017] = {.count = 1, .reusable = false}, SHIFT(406), + [1019] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 3), + [1021] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 3), + [1023] = {.count = 1, .reusable = true}, SHIFT(408), + [1025] = {.count = 1, .reusable = false}, SHIFT(192), + [1027] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 1), + [1029] = {.count = 1, .reusable = true}, SHIFT(412), + [1031] = {.count = 1, .reusable = true}, SHIFT(413), + [1033] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(14), + [1036] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), + [1038] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(196), + [1041] = {.count = 1, .reusable = true}, SHIFT(416), + [1043] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), + [1045] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), + [1047] = {.count = 1, .reusable = false}, SHIFT(419), + [1049] = {.count = 1, .reusable = false}, SHIFT(420), + [1051] = {.count = 1, .reusable = false}, SHIFT(421), + [1053] = {.count = 1, .reusable = false}, SHIFT(422), + [1055] = {.count = 1, .reusable = false}, SHIFT(423), + [1057] = {.count = 1, .reusable = false}, SHIFT(424), + [1059] = {.count = 1, .reusable = false}, SHIFT(425), + [1061] = {.count = 1, .reusable = false}, SHIFT(429), + [1063] = {.count = 1, .reusable = false}, SHIFT(432), + [1065] = {.count = 1, .reusable = false}, SHIFT(433), + [1067] = {.count = 1, .reusable = false}, SHIFT(434), + [1069] = {.count = 1, .reusable = false}, SHIFT(435), + [1071] = {.count = 1, .reusable = false}, SHIFT(437), + [1073] = {.count = 1, .reusable = true}, SHIFT(438), + [1075] = {.count = 1, .reusable = true}, SHIFT(439), + [1077] = {.count = 1, .reusable = false}, SHIFT(439), + [1079] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [1081] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [1083] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(2), + [1086] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(3), + [1089] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(55), + [1092] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(56), + [1095] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(6), + [1098] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(7), + [1101] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(8), + [1104] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(13), + [1107] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(10), + [1110] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [1112] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(11), + [1115] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(12), + [1118] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(14), + [1121] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(42), + [1124] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(36), + [1127] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(15), + [1130] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(16), + [1133] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(17), + [1136] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(58), + [1139] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(19), + [1142] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(59), + [1145] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(21), + [1148] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(60), + [1151] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(23), + [1154] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(24), + [1157] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(25), + [1160] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(26), + [1163] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(27), + [1166] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(28), + [1169] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(29), + [1172] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(29), + [1175] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(30), + [1178] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(37), + [1181] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(31), + [1184] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(32), + [1187] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(37), + [1190] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(61), + [1193] = {.count = 1, .reusable = true}, SHIFT(441), + [1195] = {.count = 1, .reusable = true}, SHIFT(443), + [1197] = {.count = 1, .reusable = true}, SHIFT(444), + [1199] = {.count = 1, .reusable = false}, SHIFT(449), + [1201] = {.count = 1, .reusable = false}, SHIFT(447), + [1203] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [1205] = {.count = 1, .reusable = true}, SHIFT(14), + [1207] = {.count = 1, .reusable = true}, SHIFT(452), + [1209] = {.count = 1, .reusable = true}, SHIFT(453), + [1211] = {.count = 1, .reusable = true}, SHIFT(454), + [1213] = {.count = 1, .reusable = false}, SHIFT(454), + [1215] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), + [1217] = {.count = 1, .reusable = true}, SHIFT(456), + [1219] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), + [1221] = {.count = 1, .reusable = true}, SHIFT(458), + [1223] = {.count = 1, .reusable = false}, SHIFT(458), + [1225] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [1227] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [1229] = {.count = 1, .reusable = true}, SHIFT(459), + [1231] = {.count = 1, .reusable = false}, SHIFT(459), + [1233] = {.count = 1, .reusable = true}, SHIFT(460), + [1235] = {.count = 1, .reusable = false}, SHIFT(460), + [1237] = {.count = 1, .reusable = true}, SHIFT(461), + [1239] = {.count = 1, .reusable = false}, SHIFT(461), + [1241] = {.count = 1, .reusable = true}, SHIFT(462), + [1243] = {.count = 1, .reusable = false}, SHIFT(462), + [1245] = {.count = 1, .reusable = true}, SHIFT(463), + [1247] = {.count = 1, .reusable = false}, SHIFT(463), + [1249] = {.count = 1, .reusable = true}, SHIFT(464), + [1251] = {.count = 1, .reusable = false}, SHIFT(464), + [1253] = {.count = 1, .reusable = true}, SHIFT(465), + [1255] = {.count = 1, .reusable = false}, SHIFT(465), + [1257] = {.count = 1, .reusable = true}, SHIFT(466), + [1259] = {.count = 1, .reusable = false}, SHIFT(466), + [1261] = {.count = 1, .reusable = true}, SHIFT(467), + [1263] = {.count = 1, .reusable = false}, SHIFT(467), + [1265] = {.count = 1, .reusable = true}, SHIFT(468), + [1267] = {.count = 1, .reusable = false}, SHIFT(468), + [1269] = {.count = 1, .reusable = true}, SHIFT(469), + [1271] = {.count = 1, .reusable = false}, SHIFT(469), + [1273] = {.count = 1, .reusable = true}, SHIFT(470), + [1275] = {.count = 1, .reusable = true}, SHIFT(471), + [1277] = {.count = 1, .reusable = false}, SHIFT(471), + [1279] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(238), + [1282] = {.count = 1, .reusable = true}, SHIFT(475), + [1284] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), + [1286] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), + [1288] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), + [1290] = {.count = 1, .reusable = true}, SHIFT(476), + [1292] = {.count = 1, .reusable = true}, SHIFT(477), + [1294] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), + [1296] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 2), + [1298] = {.count = 1, .reusable = false}, SHIFT(479), + [1300] = {.count = 1, .reusable = true}, SHIFT(480), + [1302] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), + [1304] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), + [1306] = {.count = 1, .reusable = true}, SHIFT(481), + [1308] = {.count = 1, .reusable = true}, SHIFT(482), + [1310] = {.count = 1, .reusable = true}, SHIFT(483), + [1312] = {.count = 1, .reusable = true}, SHIFT(484), + [1314] = {.count = 1, .reusable = true}, SHIFT(485), + [1316] = {.count = 1, .reusable = true}, SHIFT(488), + [1318] = {.count = 1, .reusable = false}, SHIFT(490), + [1320] = {.count = 1, .reusable = false}, SHIFT(491), + [1322] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), + [1324] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 2), + [1326] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), + [1328] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 2), + [1330] = {.count = 1, .reusable = true}, SHIFT(492), + [1332] = {.count = 1, .reusable = true}, SHIFT(495), + [1334] = {.count = 1, .reusable = true}, SHIFT(496), + [1336] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 3), + [1338] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 3), + [1340] = {.count = 1, .reusable = false}, SHIFT(497), + [1342] = {.count = 1, .reusable = true}, SHIFT(498), + [1344] = {.count = 1, .reusable = false}, SHIFT(499), + [1346] = {.count = 1, .reusable = false}, SHIFT(500), + [1348] = {.count = 1, .reusable = false}, SHIFT(501), + [1350] = {.count = 1, .reusable = false}, SHIFT(502), + [1352] = {.count = 1, .reusable = false}, SHIFT(503), + [1354] = {.count = 1, .reusable = false}, SHIFT(504), + [1356] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 3), + [1358] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 3), + [1360] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1362] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1364] = {.count = 1, .reusable = false}, SHIFT(506), + [1366] = {.count = 1, .reusable = false}, SHIFT(507), + [1368] = {.count = 1, .reusable = false}, SHIFT(508), + [1370] = {.count = 1, .reusable = false}, SHIFT(509), + [1372] = {.count = 1, .reusable = true}, SHIFT(511), + [1374] = {.count = 1, .reusable = true}, SHIFT(512), + [1376] = {.count = 1, .reusable = true}, SHIFT(513), + [1378] = {.count = 1, .reusable = false}, SHIFT(513), + [1380] = {.count = 1, .reusable = true}, SHIFT(515), + [1382] = {.count = 1, .reusable = true}, SHIFT(516), + [1384] = {.count = 1, .reusable = false}, SHIFT(516), + [1386] = {.count = 1, .reusable = true}, SHIFT(517), + [1388] = {.count = 1, .reusable = true}, SHIFT(518), + [1390] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), + [1392] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), + [1394] = {.count = 1, .reusable = true}, SHIFT(520), + [1396] = {.count = 1, .reusable = false}, SHIFT(520), + [1398] = {.count = 1, .reusable = true}, SHIFT(521), + [1400] = {.count = 1, .reusable = false}, SHIFT(521), + [1402] = {.count = 1, .reusable = true}, SHIFT(522), + [1404] = {.count = 1, .reusable = false}, SHIFT(522), + [1406] = {.count = 1, .reusable = true}, SHIFT(523), + [1408] = {.count = 1, .reusable = false}, SHIFT(523), + [1410] = {.count = 1, .reusable = true}, SHIFT(524), + [1412] = {.count = 1, .reusable = false}, SHIFT(524), + [1414] = {.count = 1, .reusable = true}, SHIFT(525), + [1416] = {.count = 1, .reusable = false}, SHIFT(525), + [1418] = {.count = 1, .reusable = true}, SHIFT(526), + [1420] = {.count = 1, .reusable = false}, SHIFT(526), + [1422] = {.count = 1, .reusable = true}, SHIFT(527), + [1424] = {.count = 1, .reusable = false}, SHIFT(527), + [1426] = {.count = 1, .reusable = true}, SHIFT(528), + [1428] = {.count = 1, .reusable = false}, SHIFT(528), + [1430] = {.count = 1, .reusable = true}, SHIFT(529), + [1432] = {.count = 1, .reusable = false}, SHIFT(529), + [1434] = {.count = 1, .reusable = true}, SHIFT(530), + [1436] = {.count = 1, .reusable = false}, SHIFT(530), + [1438] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 3), + [1440] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 3), + [1442] = {.count = 1, .reusable = true}, SHIFT(532), + [1444] = {.count = 1, .reusable = true}, REDUCE(sym_char_literal, 3), + [1446] = {.count = 1, .reusable = false}, REDUCE(sym_char_literal, 3), + [1448] = {.count = 1, .reusable = true}, REDUCE(sym_string_literal, 3), + [1450] = {.count = 1, .reusable = false}, REDUCE(sym_string_literal, 3), + [1452] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_literal_repeat1, 2), + [1454] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(296), + [1457] = {.count = 1, .reusable = true}, SHIFT(533), + [1459] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 4), + [1461] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 4), + [1463] = {.count = 1, .reusable = true}, SHIFT(535), + [1465] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1), + [1467] = {.count = 1, .reusable = false}, SHIFT(536), + [1469] = {.count = 1, .reusable = true}, SHIFT(538), + [1471] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), + [1473] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), + [1475] = {.count = 1, .reusable = true}, SHIFT(540), + [1477] = {.count = 1, .reusable = true}, SHIFT(541), + [1479] = {.count = 1, .reusable = true}, SHIFT(542), + [1481] = {.count = 1, .reusable = false}, SHIFT(542), + [1483] = {.count = 1, .reusable = true}, SHIFT(544), + [1485] = {.count = 1, .reusable = false}, SHIFT(544), + [1487] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [1489] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [1491] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), + [1493] = {.count = 1, .reusable = true}, SHIFT(546), + [1495] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [1497] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), + [1499] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2), + [1501] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2), + [1503] = {.count = 1, .reusable = true}, SHIFT(548), + [1505] = {.count = 1, .reusable = true}, SHIFT(549), + [1507] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), + [1509] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), + [1511] = {.count = 1, .reusable = true}, SHIFT(552), + [1513] = {.count = 1, .reusable = true}, SHIFT(553), + [1515] = {.count = 1, .reusable = false}, SHIFT(553), + [1517] = {.count = 1, .reusable = false}, SHIFT(554), + [1519] = {.count = 1, .reusable = true}, SHIFT(555), + [1521] = {.count = 1, .reusable = false}, SHIFT(556), + [1523] = {.count = 1, .reusable = true}, SHIFT(557), + [1525] = {.count = 1, .reusable = true}, SHIFT(556), + [1527] = {.count = 1, .reusable = false}, SHIFT(558), + [1529] = {.count = 1, .reusable = true}, SHIFT(559), + [1531] = {.count = 1, .reusable = true}, SHIFT(560), + [1533] = {.count = 1, .reusable = false}, SHIFT(561), + [1535] = {.count = 1, .reusable = false}, SHIFT(562), + [1537] = {.count = 1, .reusable = true}, SHIFT(563), + [1539] = {.count = 1, .reusable = false}, SHIFT(564), + [1541] = {.count = 1, .reusable = true}, SHIFT(564), + [1543] = {.count = 1, .reusable = false}, SHIFT(565), + [1545] = {.count = 1, .reusable = false}, SHIFT(566), + [1547] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), + [1549] = {.count = 1, .reusable = true}, SHIFT(569), + [1551] = {.count = 1, .reusable = true}, SHIFT(570), + [1553] = {.count = 1, .reusable = false}, SHIFT(570), + [1555] = {.count = 1, .reusable = false}, SHIFT(571), + [1557] = {.count = 1, .reusable = false}, SHIFT(572), + [1559] = {.count = 1, .reusable = true}, SHIFT(573), + [1561] = {.count = 1, .reusable = true}, SHIFT(574), + [1563] = {.count = 1, .reusable = true}, SHIFT(572), + [1565] = {.count = 1, .reusable = false}, SHIFT(575), + [1567] = {.count = 1, .reusable = true}, SHIFT(576), + [1569] = {.count = 1, .reusable = true}, SHIFT(577), + [1571] = {.count = 1, .reusable = false}, SHIFT(578), + [1573] = {.count = 1, .reusable = false}, SHIFT(579), + [1575] = {.count = 1, .reusable = true}, SHIFT(580), + [1577] = {.count = 1, .reusable = false}, SHIFT(581), + [1579] = {.count = 1, .reusable = true}, SHIFT(581), + [1581] = {.count = 1, .reusable = false}, SHIFT(582), + [1583] = {.count = 1, .reusable = false}, SHIFT(583), + [1585] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), + [1587] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), + [1589] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), + [1591] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), + [1593] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), + [1595] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), + [1597] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), + [1599] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), + [1601] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), + [1603] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), + [1605] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 5), + [1607] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 5), + [1609] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1611] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [1613] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(32), + [1616] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), + [1618] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), + [1620] = {.count = 1, .reusable = true}, SHIFT(585), + [1622] = {.count = 1, .reusable = true}, SHIFT(586), + [1624] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), + [1626] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 4), + [1628] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 4), + [1630] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4), + [1632] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4), + [1634] = {.count = 1, .reusable = true}, SHIFT(588), + [1636] = {.count = 1, .reusable = false}, SHIFT(589), + [1638] = {.count = 1, .reusable = true}, SHIFT(590), + [1640] = {.count = 1, .reusable = false}, SHIFT(591), + [1642] = {.count = 1, .reusable = false}, SHIFT(592), + [1644] = {.count = 1, .reusable = false}, SHIFT(594), + [1646] = {.count = 1, .reusable = false}, SHIFT(597), + [1648] = {.count = 1, .reusable = true}, SHIFT(600), + [1650] = {.count = 1, .reusable = true}, SHIFT(601), + [1652] = {.count = 1, .reusable = true}, SHIFT(602), + [1654] = {.count = 1, .reusable = false}, SHIFT(603), + [1656] = {.count = 1, .reusable = true}, SHIFT(604), + [1658] = {.count = 1, .reusable = false}, SHIFT(605), + [1660] = {.count = 1, .reusable = false}, SHIFT(606), + [1662] = {.count = 1, .reusable = false}, SHIFT(607), + [1664] = {.count = 1, .reusable = true}, SHIFT(610), + [1666] = {.count = 1, .reusable = true}, SHIFT(616), + [1668] = {.count = 1, .reusable = true}, SHIFT(617), + [1670] = {.count = 1, .reusable = true}, SHIFT(618), + [1672] = {.count = 1, .reusable = false}, SHIFT(618), + [1674] = {.count = 1, .reusable = true}, SHIFT(619), + [1676] = {.count = 1, .reusable = true}, SHIFT(620), + [1678] = {.count = 1, .reusable = true}, SHIFT(621), + [1680] = {.count = 1, .reusable = true}, SHIFT(622), + [1682] = {.count = 1, .reusable = true}, SHIFT(623), + [1684] = {.count = 1, .reusable = true}, SHIFT(624), + [1686] = {.count = 1, .reusable = true}, SHIFT(626), + [1688] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2), + [1690] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2), + [1692] = {.count = 1, .reusable = true}, SHIFT(630), + [1694] = {.count = 1, .reusable = false}, SHIFT(632), + [1696] = {.count = 1, .reusable = true}, SHIFT(633), + [1698] = {.count = 1, .reusable = true}, SHIFT(636), + [1700] = {.count = 1, .reusable = false}, SHIFT(637), + [1702] = {.count = 1, .reusable = false}, SHIFT(638), + [1704] = {.count = 1, .reusable = false}, SHIFT(639), + [1706] = {.count = 1, .reusable = false}, SHIFT(640), + [1708] = {.count = 1, .reusable = true}, SHIFT(642), + [1710] = {.count = 1, .reusable = false}, SHIFT(644), + [1712] = {.count = 1, .reusable = true}, SHIFT(646), + [1714] = {.count = 1, .reusable = true}, SHIFT(647), + [1716] = {.count = 1, .reusable = true}, SHIFT(648), + [1718] = {.count = 1, .reusable = false}, SHIFT(648), + [1720] = {.count = 1, .reusable = true}, SHIFT(649), + [1722] = {.count = 1, .reusable = true}, SHIFT(650), + [1724] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4), + [1726] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4), + [1728] = {.count = 1, .reusable = true}, SHIFT(652), + [1730] = {.count = 1, .reusable = true}, SHIFT(655), + [1732] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(159), + [1735] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(160), + [1738] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(161), + [1741] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [1743] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(163), + [1746] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(166), + [1749] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(167), + [1752] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(168), + [1755] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(169), + [1758] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(170), + [1761] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(171), + [1764] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(172), + [1767] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(173), + [1770] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(174), + [1773] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(175), + [1776] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(176), + [1779] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(177), + [1782] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(178), + [1785] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(179), + [1788] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(183), + [1791] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(183), + [1794] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(180), + [1797] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4), + [1799] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4), + [1801] = {.count = 1, .reusable = true}, SHIFT(656), + [1803] = {.count = 1, .reusable = true}, SHIFT(658), + [1805] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1), + [1807] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), + [1809] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), + [1811] = {.count = 1, .reusable = true}, SHIFT(660), + [1813] = {.count = 1, .reusable = true}, SHIFT(661), + [1815] = {.count = 1, .reusable = true}, SHIFT(662), + [1817] = {.count = 1, .reusable = false}, SHIFT(662), + [1819] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), + [1821] = {.count = 1, .reusable = true}, SHIFT(664), + [1823] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), + [1825] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), + [1827] = {.count = 1, .reusable = true}, SHIFT(665), + [1829] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(420), + [1832] = {.count = 1, .reusable = false}, SHIFT(669), + [1834] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 3), + [1836] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 3), + [1838] = {.count = 1, .reusable = true}, SHIFT(670), + [1840] = {.count = 1, .reusable = false}, SHIFT(671), + [1842] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 1), + [1844] = {.count = 1, .reusable = false}, SHIFT(672), + [1846] = {.count = 1, .reusable = false}, SHIFT(675), + [1848] = {.count = 1, .reusable = true}, SHIFT(676), + [1850] = {.count = 1, .reusable = true}, SHIFT(677), + [1852] = {.count = 1, .reusable = false}, SHIFT(676), + [1854] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3), + [1856] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3), + [1858] = {.count = 1, .reusable = true}, SHIFT(680), + [1860] = {.count = 1, .reusable = false}, SHIFT(680), + [1862] = {.count = 1, .reusable = true}, SHIFT(684), + [1864] = {.count = 1, .reusable = true}, SHIFT(685), + [1866] = {.count = 1, .reusable = false}, SHIFT(686), + [1868] = {.count = 1, .reusable = true}, SHIFT(687), + [1870] = {.count = 1, .reusable = true}, SHIFT(688), + [1872] = {.count = 1, .reusable = false}, SHIFT(688), + [1874] = {.count = 1, .reusable = true}, SHIFT(689), + [1876] = {.count = 1, .reusable = true}, SHIFT(690), + [1878] = {.count = 1, .reusable = true}, SHIFT(691), + [1880] = {.count = 1, .reusable = true}, SHIFT(692), + [1882] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2), + [1884] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), + [1886] = {.count = 1, .reusable = true}, SHIFT(694), + [1888] = {.count = 1, .reusable = true}, SHIFT(695), + [1890] = {.count = 1, .reusable = true}, SHIFT(696), + [1892] = {.count = 1, .reusable = true}, SHIFT(698), + [1894] = {.count = 1, .reusable = false}, SHIFT(700), + [1896] = {.count = 1, .reusable = false}, SHIFT(701), + [1898] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [1900] = {.count = 1, .reusable = true}, SHIFT(704), + [1902] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), + [1904] = {.count = 1, .reusable = true}, SHIFT(705), + [1906] = {.count = 1, .reusable = true}, SHIFT(706), + [1908] = {.count = 1, .reusable = false}, SHIFT(706), + [1910] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), + [1912] = {.count = 1, .reusable = true}, SHIFT(709), + [1914] = {.count = 1, .reusable = true}, SHIFT(710), + [1916] = {.count = 1, .reusable = true}, SHIFT(711), + [1918] = {.count = 1, .reusable = true}, SHIFT(712), + [1920] = {.count = 1, .reusable = true}, SHIFT(713), + [1922] = {.count = 1, .reusable = true}, SHIFT(714), + [1924] = {.count = 1, .reusable = true}, SHIFT(715), + [1926] = {.count = 1, .reusable = true}, SHIFT(716), + [1928] = {.count = 1, .reusable = false}, SHIFT(717), + [1930] = {.count = 1, .reusable = true}, SHIFT(717), + [1932] = {.count = 1, .reusable = false}, SHIFT(718), + [1934] = {.count = 1, .reusable = true}, SHIFT(719), + [1936] = {.count = 1, .reusable = true}, SHIFT(720), + [1938] = {.count = 1, .reusable = false}, SHIFT(720), + [1940] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), + [1942] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), + [1944] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), + [1946] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), + [1948] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), + [1950] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), + [1952] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), + [1954] = {.count = 1, .reusable = true}, SHIFT(724), + [1956] = {.count = 1, .reusable = false}, SHIFT(724), + [1958] = {.count = 1, .reusable = true}, SHIFT(725), + [1960] = {.count = 1, .reusable = true}, SHIFT(727), + [1962] = {.count = 1, .reusable = true}, SHIFT(729), + [1964] = {.count = 1, .reusable = true}, SHIFT(730), + [1966] = {.count = 1, .reusable = true}, SHIFT(731), + [1968] = {.count = 1, .reusable = true}, SHIFT(734), + [1970] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), + [1972] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), + [1974] = {.count = 1, .reusable = true}, SHIFT(737), + [1976] = {.count = 1, .reusable = false}, SHIFT(485), + [1978] = {.count = 1, .reusable = true}, SHIFT(741), + [1980] = {.count = 1, .reusable = false}, SHIFT(741), + [1982] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 6), + [1984] = {.count = 1, .reusable = true}, SHIFT(742), + [1986] = {.count = 1, .reusable = true}, SHIFT(743), + [1988] = {.count = 1, .reusable = true}, SHIFT(744), + [1990] = {.count = 1, .reusable = true}, SHIFT(745), + [1992] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), + [1994] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), + [1996] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(244), + [1999] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(245), + [2002] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(13), + [2005] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2007] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(14), + [2010] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(251), + [2013] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(248), + [2016] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(15), + [2019] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(16), + [2022] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(17), + [2025] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(50), + [2028] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(491), + [2031] = {.count = 1, .reusable = true}, SHIFT(751), + [2033] = {.count = 1, .reusable = true}, SHIFT(752), + [2035] = {.count = 1, .reusable = false}, SHIFT(752), + [2037] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 2), + [2039] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 2), + [2041] = {.count = 1, .reusable = true}, SHIFT(755), + [2043] = {.count = 1, .reusable = false}, SHIFT(755), + [2045] = {.count = 1, .reusable = true}, SHIFT(756), + [2047] = {.count = 1, .reusable = true}, SHIFT(758), + [2049] = {.count = 1, .reusable = true}, SHIFT(759), + [2051] = {.count = 1, .reusable = true}, SHIFT(760), + [2053] = {.count = 1, .reusable = true}, SHIFT(764), + [2055] = {.count = 1, .reusable = true}, SHIFT(765), + [2057] = {.count = 1, .reusable = true}, SHIFT(766), + [2059] = {.count = 1, .reusable = true}, SHIFT(767), + [2061] = {.count = 1, .reusable = true}, SHIFT(768), + [2063] = {.count = 1, .reusable = false}, SHIFT(768), + [2065] = {.count = 1, .reusable = true}, SHIFT(769), + [2067] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 4), + [2069] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 4), + [2071] = {.count = 1, .reusable = true}, SHIFT(770), + [2073] = {.count = 1, .reusable = true}, SHIFT(771), + [2075] = {.count = 1, .reusable = false}, SHIFT(771), + [2077] = {.count = 1, .reusable = true}, SHIFT(772), + [2079] = {.count = 1, .reusable = true}, SHIFT(773), + [2081] = {.count = 1, .reusable = false}, SHIFT(773), + [2083] = {.count = 1, .reusable = true}, SHIFT(774), + [2085] = {.count = 1, .reusable = true}, SHIFT(775), + [2087] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), + [2089] = {.count = 1, .reusable = false}, SHIFT(12), + [2091] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), + [2093] = {.count = 1, .reusable = false}, SHIFT(27), + [2095] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), + [2097] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1), + [2099] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3, .dynamic_precedence = -10), + [2101] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1), + [2103] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), + [2105] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), + [2107] = {.count = 1, .reusable = true}, SHIFT(776), + [2109] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), + [2111] = {.count = 1, .reusable = true}, SHIFT(777), + [2113] = {.count = 1, .reusable = true}, SHIFT(778), + [2115] = {.count = 1, .reusable = false}, SHIFT(778), + [2117] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), + [2119] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), + [2121] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), + [2123] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(303), + [2126] = {.count = 1, .reusable = true}, SHIFT(779), + [2128] = {.count = 1, .reusable = false}, SHIFT(779), + [2130] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3), + [2132] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3), + [2134] = {.count = 1, .reusable = true}, SHIFT(780), + [2136] = {.count = 1, .reusable = true}, SHIFT(782), + [2138] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), + [2140] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), + [2142] = {.count = 1, .reusable = true}, SHIFT(784), + [2144] = {.count = 1, .reusable = false}, SHIFT(784), + [2146] = {.count = 1, .reusable = true}, SHIFT(785), + [2148] = {.count = 1, .reusable = false}, SHIFT(785), + [2150] = {.count = 1, .reusable = true}, SHIFT(786), + [2152] = {.count = 1, .reusable = false}, SHIFT(786), + [2154] = {.count = 1, .reusable = true}, SHIFT(787), + [2156] = {.count = 1, .reusable = false}, SHIFT(787), + [2158] = {.count = 1, .reusable = true}, SHIFT(788), + [2160] = {.count = 1, .reusable = false}, SHIFT(788), + [2162] = {.count = 1, .reusable = true}, SHIFT(789), + [2164] = {.count = 1, .reusable = false}, SHIFT(789), + [2166] = {.count = 1, .reusable = true}, SHIFT(790), + [2168] = {.count = 1, .reusable = false}, SHIFT(790), + [2170] = {.count = 1, .reusable = true}, SHIFT(791), + [2172] = {.count = 1, .reusable = false}, SHIFT(791), + [2174] = {.count = 1, .reusable = true}, SHIFT(792), + [2176] = {.count = 1, .reusable = false}, SHIFT(792), + [2178] = {.count = 1, .reusable = true}, SHIFT(793), + [2180] = {.count = 1, .reusable = false}, SHIFT(793), + [2182] = {.count = 1, .reusable = true}, SHIFT(794), + [2184] = {.count = 1, .reusable = false}, SHIFT(794), + [2186] = {.count = 1, .reusable = true}, SHIFT(796), + [2188] = {.count = 1, .reusable = true}, SHIFT(798), + [2190] = {.count = 1, .reusable = false}, SHIFT(798), + [2192] = {.count = 1, .reusable = true}, SHIFT(799), + [2194] = {.count = 1, .reusable = false}, SHIFT(799), + [2196] = {.count = 1, .reusable = true}, SHIFT(800), + [2198] = {.count = 1, .reusable = false}, SHIFT(800), + [2200] = {.count = 1, .reusable = true}, SHIFT(801), + [2202] = {.count = 1, .reusable = false}, SHIFT(801), + [2204] = {.count = 1, .reusable = true}, SHIFT(802), + [2206] = {.count = 1, .reusable = false}, SHIFT(802), + [2208] = {.count = 1, .reusable = true}, SHIFT(803), + [2210] = {.count = 1, .reusable = false}, SHIFT(803), + [2212] = {.count = 1, .reusable = true}, SHIFT(804), + [2214] = {.count = 1, .reusable = false}, SHIFT(804), + [2216] = {.count = 1, .reusable = true}, SHIFT(805), + [2218] = {.count = 1, .reusable = false}, SHIFT(805), + [2220] = {.count = 1, .reusable = true}, SHIFT(806), + [2222] = {.count = 1, .reusable = false}, SHIFT(806), + [2224] = {.count = 1, .reusable = true}, SHIFT(807), + [2226] = {.count = 1, .reusable = false}, SHIFT(807), + [2228] = {.count = 1, .reusable = true}, SHIFT(808), + [2230] = {.count = 1, .reusable = false}, SHIFT(808), + [2232] = {.count = 1, .reusable = true}, SHIFT(809), + [2234] = {.count = 1, .reusable = false}, SHIFT(809), + [2236] = {.count = 1, .reusable = true}, SHIFT(811), + [2238] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), + [2240] = {.count = 1, .reusable = true}, SHIFT(812), + [2242] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5), + [2244] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5), + [2246] = {.count = 1, .reusable = false}, SHIFT(814), + [2248] = {.count = 1, .reusable = true}, SHIFT(815), + [2250] = {.count = 1, .reusable = false}, SHIFT(816), + [2252] = {.count = 1, .reusable = false}, SHIFT(817), + [2254] = {.count = 1, .reusable = true}, SHIFT(818), + [2256] = {.count = 1, .reusable = false}, SHIFT(818), + [2258] = {.count = 1, .reusable = true}, SHIFT(820), + [2260] = {.count = 1, .reusable = false}, SHIFT(820), + [2262] = {.count = 1, .reusable = false}, SHIFT(822), + [2264] = {.count = 1, .reusable = true}, SHIFT(823), + [2266] = {.count = 1, .reusable = false}, SHIFT(824), + [2268] = {.count = 1, .reusable = false}, SHIFT(825), + [2270] = {.count = 1, .reusable = false}, SHIFT(827), + [2272] = {.count = 1, .reusable = false}, SHIFT(830), + [2274] = {.count = 1, .reusable = true}, SHIFT(833), + [2276] = {.count = 1, .reusable = false}, SHIFT(835), + [2278] = {.count = 1, .reusable = true}, SHIFT(836), + [2280] = {.count = 1, .reusable = true}, SHIFT(839), + [2282] = {.count = 1, .reusable = false}, SHIFT(840), + [2284] = {.count = 1, .reusable = false}, SHIFT(841), + [2286] = {.count = 1, .reusable = false}, SHIFT(842), + [2288] = {.count = 1, .reusable = false}, SHIFT(843), + [2290] = {.count = 1, .reusable = true}, SHIFT(845), + [2292] = {.count = 1, .reusable = false}, SHIFT(847), + [2294] = {.count = 1, .reusable = true}, SHIFT(849), + [2296] = {.count = 1, .reusable = true}, SHIFT(850), + [2298] = {.count = 1, .reusable = true}, SHIFT(851), + [2300] = {.count = 1, .reusable = false}, SHIFT(851), + [2302] = {.count = 1, .reusable = true}, SHIFT(852), + [2304] = {.count = 1, .reusable = true}, SHIFT(853), + [2306] = {.count = 1, .reusable = true}, SHIFT(855), + [2308] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(357), + [2311] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(358), + [2314] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(359), + [2317] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(360), + [2320] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(361), + [2323] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(362), + [2326] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(363), + [2329] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(364), + [2332] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(365), + [2335] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(366), + [2338] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(367), + [2341] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(368), + [2344] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(369), + [2347] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(370), + [2350] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(371), + [2353] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(372), + [2356] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(373), + [2359] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(374), + [2362] = {.count = 2, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(377), + [2365] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(377), + [2368] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(375), + [2371] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3), + [2373] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3), + [2375] = {.count = 1, .reusable = true}, SHIFT(859), + [2377] = {.count = 1, .reusable = true}, SHIFT(861), + [2379] = {.count = 1, .reusable = true}, SHIFT(865), + [2381] = {.count = 1, .reusable = true}, SHIFT(866), + [2383] = {.count = 1, .reusable = false}, SHIFT(867), + [2385] = {.count = 1, .reusable = true}, SHIFT(868), + [2387] = {.count = 1, .reusable = true}, SHIFT(870), + [2389] = {.count = 1, .reusable = true}, SHIFT(872), + [2391] = {.count = 1, .reusable = true}, SHIFT(873), + [2393] = {.count = 1, .reusable = false}, SHIFT(873), + [2395] = {.count = 1, .reusable = true}, SHIFT(874), + [2397] = {.count = 1, .reusable = true}, SHIFT(875), + [2399] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5), + [2401] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5), + [2403] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5), + [2405] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5), + [2407] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3, .dynamic_precedence = -10), + [2409] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1), + [2411] = {.count = 1, .reusable = true}, SHIFT(876), + [2413] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), + [2415] = {.count = 1, .reusable = true}, SHIFT(877), + [2417] = {.count = 1, .reusable = true}, SHIFT(878), + [2419] = {.count = 1, .reusable = false}, SHIFT(878), + [2421] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), + [2423] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), + [2425] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), + [2427] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), + [2429] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(58), + [2432] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(59), + [2435] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(60), + [2438] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(61), + [2441] = {.count = 1, .reusable = false}, SHIFT(879), + [2443] = {.count = 1, .reusable = false}, SHIFT(882), + [2445] = {.count = 1, .reusable = false}, SHIFT(885), + [2447] = {.count = 1, .reusable = true}, SHIFT(886), + [2449] = {.count = 1, .reusable = true}, SHIFT(887), + [2451] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 2), + [2453] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 2), + [2455] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4), + [2457] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4), + [2459] = {.count = 1, .reusable = true}, SHIFT(891), + [2461] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(159), + [2464] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(160), + [2467] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(421), + [2470] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [2472] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(423), + [2475] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(166), + [2478] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(167), + [2481] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(168), + [2484] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(170), + [2487] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(171), + [2490] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(172), + [2493] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(173), + [2496] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(174), + [2499] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(175), + [2502] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(176), + [2505] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(177), + [2508] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(178), + [2511] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(179), + [2514] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(183), + [2517] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(183), + [2520] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(180), + [2523] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4), + [2525] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4), + [2527] = {.count = 1, .reusable = true}, SHIFT(892), + [2529] = {.count = 1, .reusable = true}, SHIFT(894), + [2531] = {.count = 1, .reusable = true}, SHIFT(895), + [2533] = {.count = 1, .reusable = false}, SHIFT(895), + [2535] = {.count = 1, .reusable = true}, SHIFT(896), + [2537] = {.count = 1, .reusable = true}, SHIFT(897), + [2539] = {.count = 1, .reusable = false}, SHIFT(897), + [2541] = {.count = 1, .reusable = true}, SHIFT(898), + [2543] = {.count = 1, .reusable = true}, SHIFT(899), + [2545] = {.count = 1, .reusable = false}, SHIFT(899), + [2547] = {.count = 1, .reusable = false}, SHIFT(65), + [2549] = {.count = 1, .reusable = false}, SHIFT(66), + [2551] = {.count = 1, .reusable = true}, SHIFT(900), + [2553] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3), + [2555] = {.count = 1, .reusable = true}, SHIFT(901), + [2557] = {.count = 1, .reusable = true}, SHIFT(903), + [2559] = {.count = 1, .reusable = false}, SHIFT(904), + [2561] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), + [2563] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), + [2565] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(701), + [2568] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), + [2570] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(14), + [2573] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), + [2575] = {.count = 1, .reusable = true}, SHIFT(908), + [2577] = {.count = 1, .reusable = true}, SHIFT(909), + [2579] = {.count = 1, .reusable = true}, SHIFT(910), + [2581] = {.count = 1, .reusable = false}, SHIFT(910), + [2583] = {.count = 1, .reusable = true}, SHIFT(911), + [2585] = {.count = 1, .reusable = false}, SHIFT(911), + [2587] = {.count = 1, .reusable = true}, SHIFT(912), + [2589] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), + [2591] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), + [2593] = {.count = 1, .reusable = true}, SHIFT(914), + [2595] = {.count = 1, .reusable = false}, SHIFT(914), + [2597] = {.count = 1, .reusable = true}, SHIFT(915), + [2599] = {.count = 1, .reusable = true}, SHIFT(916), + [2601] = {.count = 1, .reusable = false}, SHIFT(916), + [2603] = {.count = 1, .reusable = true}, SHIFT(917), + [2605] = {.count = 1, .reusable = true}, SHIFT(918), + [2607] = {.count = 1, .reusable = false}, SHIFT(919), + [2609] = {.count = 1, .reusable = false}, SHIFT(920), + [2611] = {.count = 1, .reusable = true}, SHIFT(921), + [2613] = {.count = 1, .reusable = true}, SHIFT(920), + [2615] = {.count = 1, .reusable = false}, SHIFT(922), + [2617] = {.count = 1, .reusable = true}, SHIFT(923), + [2619] = {.count = 1, .reusable = true}, SHIFT(924), + [2621] = {.count = 1, .reusable = false}, SHIFT(925), + [2623] = {.count = 1, .reusable = false}, SHIFT(926), + [2625] = {.count = 1, .reusable = true}, SHIFT(927), + [2627] = {.count = 1, .reusable = false}, SHIFT(928), + [2629] = {.count = 1, .reusable = true}, SHIFT(928), + [2631] = {.count = 1, .reusable = false}, SHIFT(929), + [2633] = {.count = 1, .reusable = false}, SHIFT(930), + [2635] = {.count = 1, .reusable = true}, SHIFT(933), + [2637] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), + [2639] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), + [2641] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), + [2643] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [2645] = {.count = 1, .reusable = true}, SHIFT(935), + [2647] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(936), + [2650] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), + [2652] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3), + [2654] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2656] = {.count = 1, .reusable = false}, SHIFT(938), + [2658] = {.count = 1, .reusable = true}, SHIFT(939), + [2660] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), + [2662] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3), + [2664] = {.count = 1, .reusable = true}, SHIFT(942), + [2666] = {.count = 1, .reusable = true}, SHIFT(945), + [2668] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1), + [2670] = {.count = 1, .reusable = true}, SHIFT(947), + [2672] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), + [2674] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), + [2676] = {.count = 1, .reusable = true}, SHIFT(949), + [2678] = {.count = 1, .reusable = true}, SHIFT(950), + [2680] = {.count = 1, .reusable = true}, SHIFT(951), + [2682] = {.count = 1, .reusable = false}, SHIFT(951), + [2684] = {.count = 1, .reusable = true}, SHIFT(953), + [2686] = {.count = 1, .reusable = false}, SHIFT(953), + [2688] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), + [2690] = {.count = 1, .reusable = true}, SHIFT(954), + [2692] = {.count = 1, .reusable = false}, SHIFT(956), + [2694] = {.count = 1, .reusable = true}, SHIFT(957), + [2696] = {.count = 1, .reusable = true}, SHIFT(958), + [2698] = {.count = 1, .reusable = false}, SHIFT(958), + [2700] = {.count = 1, .reusable = true}, SHIFT(959), + [2702] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [2704] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [2706] = {.count = 1, .reusable = false}, SHIFT(960), + [2708] = {.count = 1, .reusable = false}, SHIFT(961), + [2710] = {.count = 1, .reusable = false}, SHIFT(962), + [2712] = {.count = 1, .reusable = false}, SHIFT(963), + [2714] = {.count = 1, .reusable = true}, SHIFT(965), + [2716] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 2), + [2718] = {.count = 1, .reusable = false}, SHIFT(966), + [2720] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 2), + [2722] = {.count = 1, .reusable = false}, SHIFT(967), + [2724] = {.count = 1, .reusable = false}, SHIFT(968), + [2726] = {.count = 1, .reusable = false}, SHIFT(969), + [2728] = {.count = 1, .reusable = true}, SHIFT(971), + [2730] = {.count = 1, .reusable = true}, SHIFT(972), + [2732] = {.count = 1, .reusable = false}, SHIFT(972), + [2734] = {.count = 1, .reusable = true}, REDUCE(sym_switch_body, 3), + [2736] = {.count = 1, .reusable = false}, REDUCE(sym_switch_body, 3), + [2738] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(7), + [2741] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(10), + [2744] = {.count = 1, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), + [2746] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(11), + [2749] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(12), + [2752] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(499), + [2755] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(19), + [2758] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(500), + [2761] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(501), + [2764] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(502), + [2767] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(21), + [2770] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(503), + [2773] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(23), + [2776] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(24), + [2779] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(25), + [2782] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(26), + [2785] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(27), + [2788] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(28), + [2791] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(29), + [2794] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(29), + [2797] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(30), + [2800] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(37), + [2803] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(31), + [2806] = {.count = 2, .reusable = true}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(32), + [2809] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(37), + [2812] = {.count = 2, .reusable = false}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(504), + [2815] = {.count = 1, .reusable = true}, SHIFT(974), + [2817] = {.count = 1, .reusable = true}, SHIFT(975), + [2819] = {.count = 1, .reusable = false}, SHIFT(975), + [2821] = {.count = 1, .reusable = true}, SHIFT(976), + [2823] = {.count = 1, .reusable = true}, SHIFT(977), + [2825] = {.count = 1, .reusable = false}, SHIFT(977), + [2827] = {.count = 1, .reusable = true}, SHIFT(978), + [2829] = {.count = 1, .reusable = true}, SHIFT(979), + [2831] = {.count = 1, .reusable = false}, SHIFT(979), + [2833] = {.count = 1, .reusable = true}, SHIFT(981), + [2835] = {.count = 1, .reusable = true}, SHIFT(983), + [2837] = {.count = 1, .reusable = false}, SHIFT(983), + [2839] = {.count = 1, .reusable = true}, SHIFT(984), + [2841] = {.count = 1, .reusable = false}, SHIFT(101), + [2843] = {.count = 1, .reusable = false}, SHIFT(102), + [2845] = {.count = 1, .reusable = true}, SHIFT(985), + [2847] = {.count = 1, .reusable = false}, SHIFT(985), + [2849] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), + [2851] = {.count = 1, .reusable = true}, SHIFT(986), + [2853] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [2855] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4), + [2857] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4), + [2859] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(548), + [2862] = {.count = 1, .reusable = true}, SHIFT(987), + [2864] = {.count = 1, .reusable = true}, SHIFT(988), + [2866] = {.count = 1, .reusable = true}, SHIFT(989), + [2868] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), + [2870] = {.count = 1, .reusable = true}, SHIFT(990), + [2872] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [2874] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), + [2876] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(585), + [2879] = {.count = 1, .reusable = true}, SHIFT(991), + [2881] = {.count = 1, .reusable = true}, SHIFT(992), + [2883] = {.count = 1, .reusable = true}, SHIFT(993), + [2885] = {.count = 1, .reusable = false}, SHIFT(994), + [2887] = {.count = 1, .reusable = true}, SHIFT(995), + [2889] = {.count = 1, .reusable = false}, SHIFT(996), + [2891] = {.count = 1, .reusable = false}, SHIFT(997), + [2893] = {.count = 1, .reusable = true}, SHIFT(998), + [2895] = {.count = 1, .reusable = false}, SHIFT(998), + [2897] = {.count = 1, .reusable = true}, SHIFT(1000), + [2899] = {.count = 1, .reusable = false}, SHIFT(1000), + [2901] = {.count = 1, .reusable = true}, SHIFT(1002), + [2903] = {.count = 1, .reusable = true}, SHIFT(1004), + [2905] = {.count = 1, .reusable = true}, SHIFT(1008), + [2907] = {.count = 1, .reusable = true}, SHIFT(1009), + [2909] = {.count = 1, .reusable = false}, SHIFT(1010), + [2911] = {.count = 1, .reusable = true}, SHIFT(1011), + [2913] = {.count = 1, .reusable = true}, SHIFT(1013), + [2915] = {.count = 1, .reusable = true}, SHIFT(1015), + [2917] = {.count = 1, .reusable = true}, SHIFT(1016), + [2919] = {.count = 1, .reusable = false}, SHIFT(1016), + [2921] = {.count = 1, .reusable = true}, SHIFT(1017), + [2923] = {.count = 1, .reusable = true}, SHIFT(1018), + [2925] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4), + [2927] = {.count = 1, .reusable = true}, SHIFT(1019), + [2929] = {.count = 1, .reusable = true}, SHIFT(1020), + [2931] = {.count = 1, .reusable = true}, SHIFT(1022), + [2933] = {.count = 1, .reusable = true}, SHIFT(1023), + [2935] = {.count = 1, .reusable = false}, SHIFT(1023), + [2937] = {.count = 1, .reusable = true}, SHIFT(1025), + [2939] = {.count = 1, .reusable = true}, SHIFT(1026), + [2941] = {.count = 1, .reusable = false}, SHIFT(1026), + [2943] = {.count = 1, .reusable = true}, SHIFT(1028), + [2945] = {.count = 1, .reusable = true}, SHIFT(1029), + [2947] = {.count = 1, .reusable = false}, SHIFT(1029), + [2949] = {.count = 1, .reusable = true}, SHIFT(1030), + [2951] = {.count = 1, .reusable = true}, SHIFT(1031), + [2953] = {.count = 1, .reusable = false}, SHIFT(1031), + [2955] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), + [2957] = {.count = 1, .reusable = true}, SHIFT(1032), + [2959] = {.count = 1, .reusable = true}, SHIFT(1033), + [2961] = {.count = 1, .reusable = false}, SHIFT(1033), + [2963] = {.count = 1, .reusable = true}, SHIFT(1035), + [2965] = {.count = 1, .reusable = false}, SHIFT(1035), + [2967] = {.count = 1, .reusable = false}, SHIFT(1037), + [2969] = {.count = 1, .reusable = false}, SHIFT(1040), + [2971] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(357), + [2974] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(358), + [2977] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(671), + [2980] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(672), + [2983] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(361), + [2986] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(362), + [2989] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(363), + [2992] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(365), + [2995] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(366), + [2998] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(367), + [3001] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(368), + [3004] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(369), + [3007] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(370), + [3010] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(371), + [3013] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(372), + [3016] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(373), + [3019] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(374), + [3022] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(377), + [3025] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(377), + [3028] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(375), + [3031] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3), + [3033] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 3), + [3035] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5), + [3037] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5), + [3039] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5), + [3041] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5), + [3043] = {.count = 1, .reusable = false}, SHIFT(1044), + [3045] = {.count = 1, .reusable = true}, SHIFT(1045), + [3047] = {.count = 1, .reusable = true}, SHIFT(1046), + [3049] = {.count = 1, .reusable = false}, SHIFT(1046), + [3051] = {.count = 1, .reusable = true}, SHIFT(1047), + [3053] = {.count = 1, .reusable = true}, SHIFT(1048), + [3055] = {.count = 1, .reusable = true}, SHIFT(1050), + [3057] = {.count = 1, .reusable = false}, SHIFT(1050), + [3059] = {.count = 1, .reusable = true}, SHIFT(1051), + [3061] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [3063] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4), + [3065] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(691), + [3068] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [3071] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(119), + [3075] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), + [3077] = {.count = 1, .reusable = true}, SHIFT(1054), + [3079] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), + [3081] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), + [3083] = {.count = 1, .reusable = true}, SHIFT(1055), + [3085] = {.count = 1, .reusable = true}, SHIFT(1056), + [3087] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 7), + [3089] = {.count = 1, .reusable = true}, SHIFT(1058), + [3091] = {.count = 1, .reusable = true}, SHIFT(1059), + [3093] = {.count = 1, .reusable = false}, SHIFT(1059), + [3095] = {.count = 1, .reusable = true}, SHIFT(1061), + [3097] = {.count = 1, .reusable = false}, SHIFT(1061), + [3099] = {.count = 1, .reusable = true}, SHIFT(1062), + [3101] = {.count = 1, .reusable = false}, SHIFT(1062), + [3103] = {.count = 1, .reusable = true}, SHIFT(1063), + [3105] = {.count = 1, .reusable = false}, SHIFT(1063), + [3107] = {.count = 1, .reusable = true}, SHIFT(1064), + [3109] = {.count = 1, .reusable = false}, SHIFT(1064), + [3111] = {.count = 1, .reusable = true}, SHIFT(1065), + [3113] = {.count = 1, .reusable = false}, SHIFT(1065), + [3115] = {.count = 1, .reusable = true}, SHIFT(1066), + [3117] = {.count = 1, .reusable = false}, SHIFT(1066), + [3119] = {.count = 1, .reusable = true}, SHIFT(1067), + [3121] = {.count = 1, .reusable = false}, SHIFT(1067), + [3123] = {.count = 1, .reusable = true}, SHIFT(1068), + [3125] = {.count = 1, .reusable = false}, SHIFT(1068), + [3127] = {.count = 1, .reusable = true}, SHIFT(1069), + [3129] = {.count = 1, .reusable = false}, SHIFT(1069), + [3131] = {.count = 1, .reusable = true}, SHIFT(1070), + [3133] = {.count = 1, .reusable = false}, SHIFT(1070), + [3135] = {.count = 1, .reusable = true}, SHIFT(1071), + [3137] = {.count = 1, .reusable = false}, SHIFT(1071), + [3139] = {.count = 1, .reusable = true}, SHIFT(1072), + [3141] = {.count = 1, .reusable = true}, SHIFT(1075), + [3143] = {.count = 1, .reusable = false}, SHIFT(1075), + [3145] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(714), + [3148] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [3150] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(719), + [3153] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), + [3155] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), + [3157] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [3159] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2), + [3161] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), + [3163] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4), + [3165] = {.count = 1, .reusable = true}, SHIFT(1080), + [3167] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), + [3169] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4), + [3171] = {.count = 1, .reusable = true}, SHIFT(1081), + [3173] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3, .dynamic_precedence = -10), + [3175] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1), + [3177] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), + [3179] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), + [3181] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), + [3183] = {.count = 1, .reusable = true}, SHIFT(1082), + [3185] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), + [3187] = {.count = 1, .reusable = true}, SHIFT(1083), + [3189] = {.count = 1, .reusable = true}, SHIFT(1084), + [3191] = {.count = 1, .reusable = false}, SHIFT(1084), + [3193] = {.count = 1, .reusable = true}, SHIFT(1085), + [3195] = {.count = 1, .reusable = true}, SHIFT(1086), + [3197] = {.count = 1, .reusable = false}, SHIFT(1086), + [3199] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(742), + [3202] = {.count = 1, .reusable = true}, SHIFT(1087), + [3204] = {.count = 1, .reusable = true}, SHIFT(1088), + [3206] = {.count = 1, .reusable = false}, SHIFT(1088), + [3208] = {.count = 1, .reusable = true}, SHIFT(1089), + [3210] = {.count = 1, .reusable = true}, SHIFT(1090), + [3212] = {.count = 1, .reusable = false}, SHIFT(1090), + [3214] = {.count = 1, .reusable = true}, SHIFT(1093), + [3216] = {.count = 1, .reusable = true}, SHIFT(1094), + [3218] = {.count = 1, .reusable = false}, SHIFT(1095), + [3220] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), + [3222] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), + [3224] = {.count = 1, .reusable = true}, SHIFT(1099), + [3226] = {.count = 1, .reusable = true}, SHIFT(1100), + [3228] = {.count = 1, .reusable = true}, SHIFT(1102), + [3230] = {.count = 1, .reusable = true}, SHIFT(1103), + [3232] = {.count = 1, .reusable = false}, SHIFT(1103), + [3234] = {.count = 1, .reusable = true}, SHIFT(1104), + [3236] = {.count = 1, .reusable = true}, SHIFT(1105), + [3238] = {.count = 1, .reusable = true}, SHIFT(1106), + [3240] = {.count = 1, .reusable = true}, SHIFT(1107), + [3242] = {.count = 1, .reusable = false}, SHIFT(1107), + [3244] = {.count = 1, .reusable = true}, SHIFT(1108), + [3246] = {.count = 1, .reusable = true}, SHIFT(1109), + [3248] = {.count = 1, .reusable = true}, SHIFT(1111), + [3250] = {.count = 1, .reusable = false}, SHIFT(1111), + [3252] = {.count = 1, .reusable = true}, SHIFT(1112), + [3254] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [3256] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [3258] = {.count = 1, .reusable = true}, SHIFT(1114), + [3260] = {.count = 1, .reusable = true}, SHIFT(1116), + [3262] = {.count = 1, .reusable = false}, SHIFT(1116), + [3264] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), + [3266] = {.count = 1, .reusable = false}, SHIFT(318), + [3268] = {.count = 1, .reusable = false}, SHIFT(319), + [3270] = {.count = 1, .reusable = true}, SHIFT(1117), + [3272] = {.count = 1, .reusable = false}, SHIFT(1117), + [3274] = {.count = 1, .reusable = false}, SHIFT(327), + [3276] = {.count = 1, .reusable = false}, SHIFT(328), + [3278] = {.count = 1, .reusable = true}, SHIFT(1118), + [3280] = {.count = 1, .reusable = false}, SHIFT(1118), + [3282] = {.count = 1, .reusable = true}, SHIFT(1119), + [3284] = {.count = 1, .reusable = true}, SHIFT(1120), + [3286] = {.count = 1, .reusable = true}, SHIFT(1121), + [3288] = {.count = 1, .reusable = true}, SHIFT(1122), + [3290] = {.count = 1, .reusable = true}, SHIFT(1123), + [3292] = {.count = 1, .reusable = true}, SHIFT(1125), + [3294] = {.count = 1, .reusable = true}, SHIFT(1126), + [3296] = {.count = 1, .reusable = false}, SHIFT(1126), + [3298] = {.count = 1, .reusable = true}, SHIFT(1128), + [3300] = {.count = 1, .reusable = true}, SHIFT(1129), + [3302] = {.count = 1, .reusable = false}, SHIFT(1129), + [3304] = {.count = 1, .reusable = true}, SHIFT(1131), + [3306] = {.count = 1, .reusable = true}, SHIFT(1132), + [3308] = {.count = 1, .reusable = false}, SHIFT(1132), + [3310] = {.count = 1, .reusable = true}, SHIFT(1133), + [3312] = {.count = 1, .reusable = true}, SHIFT(1134), + [3314] = {.count = 1, .reusable = false}, SHIFT(1134), + [3316] = {.count = 1, .reusable = false}, SHIFT(1135), + [3318] = {.count = 1, .reusable = true}, SHIFT(1136), + [3320] = {.count = 1, .reusable = true}, SHIFT(1137), + [3322] = {.count = 1, .reusable = false}, SHIFT(1137), + [3324] = {.count = 1, .reusable = true}, SHIFT(1138), + [3326] = {.count = 1, .reusable = true}, SHIFT(1139), + [3328] = {.count = 1, .reusable = true}, SHIFT(1141), + [3330] = {.count = 1, .reusable = true}, SHIFT(1143), + [3332] = {.count = 1, .reusable = false}, SHIFT(1143), + [3334] = {.count = 1, .reusable = true}, SHIFT(1144), + [3336] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), + [3338] = {.count = 1, .reusable = true}, SHIFT(1145), + [3340] = {.count = 1, .reusable = true}, SHIFT(1146), + [3342] = {.count = 1, .reusable = true}, SHIFT(1147), + [3344] = {.count = 1, .reusable = false}, SHIFT(1147), + [3346] = {.count = 1, .reusable = true}, SHIFT(1149), + [3348] = {.count = 1, .reusable = false}, SHIFT(1149), + [3350] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4), + [3352] = {.count = 1, .reusable = true}, SHIFT(1151), + [3354] = {.count = 1, .reusable = true}, SHIFT(1152), + [3356] = {.count = 1, .reusable = false}, SHIFT(1152), + [3358] = {.count = 1, .reusable = true}, SHIFT(1153), + [3360] = {.count = 1, .reusable = true}, SHIFT(1154), + [3362] = {.count = 1, .reusable = false}, SHIFT(1154), + [3364] = {.count = 1, .reusable = true}, SHIFT(1155), + [3366] = {.count = 1, .reusable = true}, SHIFT(1157), + [3368] = {.count = 1, .reusable = false}, SHIFT(1157), + [3370] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), + [3372] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), + [3374] = {.count = 1, .reusable = true}, SHIFT(1159), + [3376] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), + [3378] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), + [3380] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [3382] = {.count = 1, .reusable = true}, SHIFT(1160), + [3384] = {.count = 1, .reusable = true}, SHIFT(1161), + [3386] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1162), + [3389] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), + [3391] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3), + [3393] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), + [3395] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5), + [3397] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), + [3399] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5), + [3401] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), + [3403] = {.count = 1, .reusable = true}, SHIFT(1164), + [3405] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), + [3407] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), + [3409] = {.count = 1, .reusable = true}, SHIFT(1165), + [3411] = {.count = 1, .reusable = true}, SHIFT(1166), + [3413] = {.count = 1, .reusable = true}, SHIFT(1168), + [3415] = {.count = 1, .reusable = false}, SHIFT(1168), + [3417] = {.count = 1, .reusable = true}, SHIFT(1169), + [3419] = {.count = 1, .reusable = true}, SHIFT(1171), + [3421] = {.count = 1, .reusable = true}, SHIFT(1172), + [3423] = {.count = 1, .reusable = false}, SHIFT(1172), + [3425] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), + [3427] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), + [3429] = {.count = 1, .reusable = false}, SHIFT(1173), + [3431] = {.count = 1, .reusable = false}, SHIFT(1174), + [3433] = {.count = 1, .reusable = false}, SHIFT(1175), + [3435] = {.count = 1, .reusable = false}, SHIFT(1176), + [3437] = {.count = 1, .reusable = false}, SHIFT(1178), + [3439] = {.count = 1, .reusable = true}, SHIFT(1179), + [3441] = {.count = 1, .reusable = true}, SHIFT(1180), + [3443] = {.count = 1, .reusable = false}, SHIFT(1180), + [3445] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7), + [3448] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(8), + [3451] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(13), + [3454] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(10), + [3457] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3459] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(11), + [3462] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(12), + [3465] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(14), + [3468] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(202), + [3471] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(200), + [3474] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(15), + [3477] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(16), + [3480] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(17), + [3483] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(966), + [3486] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(19), + [3489] = {.count = 1, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3491] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(967), + [3494] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(21), + [3497] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(968), + [3500] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(23), + [3503] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(24), + [3506] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(25), + [3509] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), + [3512] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(27), + [3515] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), + [3518] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), + [3521] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), + [3524] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), + [3527] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(37), + [3530] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), + [3533] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(32), + [3536] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(37), + [3539] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(969), + [3542] = {.count = 1, .reusable = true}, SHIFT(1181), + [3544] = {.count = 1, .reusable = true}, SHIFT(1182), + [3546] = {.count = 1, .reusable = false}, SHIFT(1182), + [3548] = {.count = 1, .reusable = true}, SHIFT(1183), + [3550] = {.count = 1, .reusable = true}, SHIFT(1184), + [3552] = {.count = 1, .reusable = false}, SHIFT(1184), + [3554] = {.count = 1, .reusable = true}, SHIFT(1185), + [3556] = {.count = 1, .reusable = true}, SHIFT(1186), + [3558] = {.count = 1, .reusable = false}, SHIFT(1186), + [3560] = {.count = 1, .reusable = true}, SHIFT(1187), + [3562] = {.count = 1, .reusable = true}, SHIFT(1188), + [3564] = {.count = 1, .reusable = false}, SHIFT(1188), + [3566] = {.count = 1, .reusable = true}, SHIFT(1189), + [3568] = {.count = 1, .reusable = true}, SHIFT(1191), + [3570] = {.count = 1, .reusable = false}, SHIFT(1191), + [3572] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), + [3574] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), + [3576] = {.count = 1, .reusable = true}, SHIFT(1193), + [3578] = {.count = 1, .reusable = false}, SHIFT(1195), + [3580] = {.count = 1, .reusable = true}, SHIFT(1196), + [3582] = {.count = 1, .reusable = true}, SHIFT(1197), + [3584] = {.count = 1, .reusable = false}, SHIFT(1197), + [3586] = {.count = 1, .reusable = true}, SHIFT(1198), + [3588] = {.count = 1, .reusable = true}, SHIFT(1199), + [3590] = {.count = 1, .reusable = true}, SHIFT(1201), + [3592] = {.count = 1, .reusable = true}, SHIFT(1203), + [3594] = {.count = 1, .reusable = false}, SHIFT(1203), + [3596] = {.count = 1, .reusable = true}, SHIFT(1204), + [3598] = {.count = 1, .reusable = true}, SHIFT(1205), + [3600] = {.count = 1, .reusable = true}, SHIFT(1206), + [3602] = {.count = 1, .reusable = false}, SHIFT(1206), + [3604] = {.count = 1, .reusable = true}, SHIFT(1207), + [3606] = {.count = 1, .reusable = true}, SHIFT(1208), + [3608] = {.count = 1, .reusable = false}, SHIFT(1208), + [3610] = {.count = 1, .reusable = true}, SHIFT(1210), + [3612] = {.count = 1, .reusable = true}, SHIFT(1212), + [3614] = {.count = 1, .reusable = false}, SHIFT(1212), + [3616] = {.count = 1, .reusable = true}, SHIFT(1213), + [3618] = {.count = 1, .reusable = true}, SHIFT(1214), + [3620] = {.count = 1, .reusable = true}, SHIFT(1215), + [3622] = {.count = 1, .reusable = true}, SHIFT(1217), + [3624] = {.count = 1, .reusable = false}, SHIFT(1217), + [3626] = {.count = 1, .reusable = true}, SHIFT(1218), + [3628] = {.count = 1, .reusable = true}, SHIFT(1219), + [3630] = {.count = 1, .reusable = false}, SHIFT(713), + [3632] = {.count = 1, .reusable = false}, SHIFT(715), + [3634] = {.count = 1, .reusable = true}, SHIFT(1221), + [3636] = {.count = 1, .reusable = false}, SHIFT(1221), + [3638] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), + [3640] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), + [3642] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4), + [3644] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), + [3646] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 6), + [3648] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 6), + [3650] = {.count = 1, .reusable = true}, SHIFT(1222), + [3652] = {.count = 1, .reusable = true}, SHIFT(1224), + [3654] = {.count = 1, .reusable = false}, SHIFT(1224), + [3656] = {.count = 1, .reusable = false}, SHIFT(1225), + [3658] = {.count = 1, .reusable = true}, SHIFT(1226), + [3660] = {.count = 1, .reusable = true}, SHIFT(1227), + [3662] = {.count = 1, .reusable = false}, SHIFT(1227), + [3664] = {.count = 1, .reusable = true}, SHIFT(1228), + [3666] = {.count = 1, .reusable = true}, SHIFT(1231), + [3668] = {.count = 1, .reusable = true}, SHIFT(1232), + [3670] = {.count = 1, .reusable = false}, SHIFT(1233), + [3672] = {.count = 1, .reusable = true}, SHIFT(1234), + [3674] = {.count = 1, .reusable = true}, SHIFT(1235), + [3676] = {.count = 1, .reusable = false}, SHIFT(1235), + [3678] = {.count = 1, .reusable = true}, SHIFT(1236), + [3680] = {.count = 1, .reusable = true}, SHIFT(1237), + [3682] = {.count = 1, .reusable = true}, SHIFT(1239), + [3684] = {.count = 1, .reusable = false}, SHIFT(1239), + [3686] = {.count = 1, .reusable = true}, SHIFT(1240), + [3688] = {.count = 1, .reusable = true}, SHIFT(1241), + [3690] = {.count = 1, .reusable = true}, SHIFT(1243), + [3692] = {.count = 1, .reusable = false}, SHIFT(1243), + [3694] = {.count = 1, .reusable = true}, SHIFT(1244), + [3696] = {.count = 1, .reusable = true}, SHIFT(1245), + [3698] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), + [3700] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), + [3702] = {.count = 1, .reusable = true}, SHIFT(1248), + [3704] = {.count = 1, .reusable = true}, SHIFT(1249), + [3706] = {.count = 1, .reusable = true}, SHIFT(1250), + [3708] = {.count = 1, .reusable = false}, SHIFT(1250), + [3710] = {.count = 1, .reusable = true}, SHIFT(1251), + [3712] = {.count = 1, .reusable = true}, SHIFT(1252), + [3714] = {.count = 1, .reusable = false}, SHIFT(1252), + [3716] = {.count = 1, .reusable = true}, SHIFT(1254), + [3718] = {.count = 1, .reusable = true}, SHIFT(1256), + [3720] = {.count = 1, .reusable = false}, SHIFT(1256), + [3722] = {.count = 1, .reusable = true}, SHIFT(1257), + [3724] = {.count = 1, .reusable = true}, SHIFT(1259), + [3726] = {.count = 1, .reusable = false}, SHIFT(1259), + [3728] = {.count = 1, .reusable = true}, SHIFT(1260), + [3730] = {.count = 1, .reusable = true}, SHIFT(1262), + [3732] = {.count = 1, .reusable = true}, SHIFT(1264), + [3734] = {.count = 1, .reusable = true}, SHIFT(1266), + [3736] = {.count = 1, .reusable = false}, SHIFT(1266), + [3738] = {.count = 1, .reusable = true}, SHIFT(1267), + [3740] = {.count = 1, .reusable = true}, SHIFT(1268), + [3742] = {.count = 1, .reusable = true}, SHIFT(1270), + [3744] = {.count = 1, .reusable = true}, SHIFT(1271), + [3746] = {.count = 1, .reusable = false}, SHIFT(1271), + [3748] = {.count = 1, .reusable = true}, SHIFT(1272), + [3750] = {.count = 1, .reusable = true}, SHIFT(1273), + [3752] = {.count = 1, .reusable = false}, SHIFT(1273), + [3754] = {.count = 1, .reusable = true}, SHIFT(1275), + [3756] = {.count = 1, .reusable = true}, SHIFT(1276), + [3758] = {.count = 1, .reusable = false}, SHIFT(1276), + [3760] = {.count = 1, .reusable = true}, SHIFT(1277), + [3762] = {.count = 1, .reusable = true}, SHIFT(1278), + [3764] = {.count = 1, .reusable = false}, SHIFT(1278), + [3766] = {.count = 1, .reusable = true}, SHIFT(1279), + [3768] = {.count = 1, .reusable = true}, SHIFT(1280), + [3770] = {.count = 1, .reusable = false}, SHIFT(1280), + [3772] = {.count = 1, .reusable = true}, SHIFT(1281), + [3774] = {.count = 1, .reusable = true}, SHIFT(1283), + [3776] = {.count = 1, .reusable = false}, SHIFT(1283), + [3778] = {.count = 1, .reusable = true}, SHIFT(1284), + [3780] = {.count = 1, .reusable = true}, SHIFT(1286), + [3782] = {.count = 1, .reusable = false}, SHIFT(1286), + [3784] = {.count = 1, .reusable = true}, SHIFT(1287), + [3786] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), + [3788] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), + [3790] = {.count = 1, .reusable = true}, SHIFT(1289), + [3792] = {.count = 1, .reusable = true}, SHIFT(1291), + [3794] = {.count = 1, .reusable = false}, SHIFT(1291), + [3796] = {.count = 1, .reusable = true}, SHIFT(1292), + [3798] = {.count = 1, .reusable = true}, SHIFT(1294), + [3800] = {.count = 1, .reusable = true}, SHIFT(1296), + [3802] = {.count = 1, .reusable = true}, SHIFT(1298), + [3804] = {.count = 1, .reusable = false}, SHIFT(1298), + [3806] = {.count = 1, .reusable = true}, SHIFT(1300), + [3808] = {.count = 1, .reusable = true}, SHIFT(1301), + [3810] = {.count = 1, .reusable = true}, SHIFT(1303), + [3812] = {.count = 1, .reusable = true}, SHIFT(1304), + [3814] = {.count = 1, .reusable = true}, SHIFT(1306), + [3816] = {.count = 1, .reusable = false}, SHIFT(1306), + [3818] = {.count = 1, .reusable = true}, SHIFT(1307), + [3820] = {.count = 1, .reusable = false}, SHIFT(1308), + [3822] = {.count = 1, .reusable = true}, SHIFT(1309), + [3824] = {.count = 1, .reusable = true}, SHIFT(1310), + [3826] = {.count = 1, .reusable = false}, SHIFT(1310), + [3828] = {.count = 1, .reusable = true}, SHIFT(1311), + [3830] = {.count = 1, .reusable = true}, SHIFT(1312), + [3832] = {.count = 1, .reusable = true}, SHIFT(1314), + [3834] = {.count = 1, .reusable = false}, SHIFT(1314), + [3836] = {.count = 1, .reusable = true}, SHIFT(1315), + [3838] = {.count = 1, .reusable = true}, SHIFT(1316), + [3840] = {.count = 1, .reusable = true}, SHIFT(1318), + [3842] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), + [3844] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), + [3846] = {.count = 1, .reusable = true}, SHIFT(1320), + [3848] = {.count = 1, .reusable = true}, SHIFT(1322), + [3850] = {.count = 1, .reusable = false}, SHIFT(1322), + [3852] = {.count = 1, .reusable = true}, SHIFT(1324), + [3854] = {.count = 1, .reusable = true}, SHIFT(1325), + [3856] = {.count = 1, .reusable = true}, SHIFT(1328), + [3858] = {.count = 1, .reusable = true}, SHIFT(1329), + [3860] = {.count = 1, .reusable = true}, SHIFT(1331), + [3862] = {.count = 1, .reusable = false}, SHIFT(1331), + [3864] = {.count = 1, .reusable = true}, SHIFT(1332), + [3866] = {.count = 1, .reusable = true}, SHIFT(1333), + [3868] = {.count = 1, .reusable = false}, SHIFT(1333), + [3870] = {.count = 1, .reusable = true}, SHIFT(1334), + [3872] = {.count = 1, .reusable = true}, SHIFT(1335), + [3874] = {.count = 1, .reusable = false}, SHIFT(1335), + [3876] = {.count = 1, .reusable = true}, SHIFT(1336), + [3878] = {.count = 1, .reusable = true}, SHIFT(1338), + [3880] = {.count = 1, .reusable = false}, SHIFT(1338), + [3882] = {.count = 1, .reusable = true}, SHIFT(1339), + [3884] = {.count = 1, .reusable = true}, SHIFT(1340), + [3886] = {.count = 1, .reusable = true}, SHIFT(1341), + [3888] = {.count = 1, .reusable = true}, SHIFT(1344), + [3890] = {.count = 1, .reusable = true}, SHIFT(1345), + [3892] = {.count = 1, .reusable = true}, SHIFT(1347), + [3894] = {.count = 1, .reusable = true}, SHIFT(1349), + [3896] = {.count = 1, .reusable = false}, SHIFT(1349), + [3898] = {.count = 1, .reusable = true}, SHIFT(1350), + [3900] = {.count = 1, .reusable = true}, SHIFT(1351), + [3902] = {.count = 1, .reusable = true}, SHIFT(1353), + [3904] = {.count = 1, .reusable = true}, SHIFT(1354), + [3906] = {.count = 1, .reusable = true}, SHIFT(1355), + [3908] = {.count = 1, .reusable = true}, SHIFT(1357), + [3910] = {.count = 1, .reusable = false}, SHIFT(1357), + [3912] = {.count = 1, .reusable = true}, SHIFT(1358), + [3914] = {.count = 1, .reusable = true}, SHIFT(1359), + [3916] = {.count = 1, .reusable = true}, SHIFT(1361), }; #ifdef _WIN32